@import url('https://fonts.googleapis.com/css2?family=Lora:wght@300;400;500;600;700&EB+Garamond:wght@300;400;500;600;700&&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

:root {
    --primary-teal: #0C7870;
    --deep-teal: #004248;
    --sage-gray: #94A3A3;
    --charcoal: #4C5859;
    --light-gray: #BEBEBE;
    --warm-white: #fdfcfa;
    --cream: #f5f5f0;
    
    --font-logo: 'Aptos', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'EB Garamond', serif;
    --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--deep-teal);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--deep-teal);
    text-decoration: none;
}

.logo:hover {
    color: inherit;
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(12, 120, 112, 0.15);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    color: #111;
    text-decoration: none;
    display: inline-block;
}

.logo span {
    font-weight: 700;
}

nav a {
    margin-left: 2.5rem;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

.language-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
}

.language-toggle a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-toggle a:hover {
    background: var(--cream);
    color: var(--primary-teal);
    text-decoration: none;
}

.language-toggle a.active {
    background: var(--primary-teal);
    color: var(--warm-white);
}

.language-toggle .separator {
    color: var(--sage-gray);
    font-weight: 300;
}

nav a:hover {
    color: var(--primary-teal);
}

nav a:hover::after {
    width: 100%;
}

/* Hamburger Button - Hidden on Desktop */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 30px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--deep-teal);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    left: 7.5px;
}

.hamburger span:nth-child(1) {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 14px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    top: 14px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Overlay Background */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 66, 72, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Navigation - Slide from Right */
@media (max-width: 968px) {
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Hide desktop nav, prepare for mobile nav */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--warm-white);
        display: flex !important;  /* Override any display:none */
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 66, 72, 0.15);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        border-left: 3px solid var(--primary-teal);
        overflow-y: auto;
    }

    /* When menu is active, slide in */
    nav.active {
        right: 0 !important;
    }

    /* Navigation Links - Vertical Stack */
    nav a {
        margin: 0 0 2rem 0 !important;
        padding: 1rem 0 !important;
        font-size: 1.1rem !important;
        color: var(--deep-teal) !important;
        border-bottom: 1px solid rgba(12, 120, 112, 0.1);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    /* Remove desktop underline animation */
    nav a::after {
        display: none !important;
    }

    /* Hover effect - indent to the right */
    nav a:hover {
        color: var(--primary-teal) !important;
        padding-left: 1rem !important;
        text-decoration: none;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

footer {
    padding: 2rem 5%;
    background: var(--deep-teal);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 4rem;
}

footer .footer-logo {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

footer .footer-logo span {
    font-weight: 700;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

footer p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important;
    margin: 0 1rem !important;
}

footer a:hover {
    color: var(--warm-white);
}

.hero {
    position: relative;
    margin-top: 0;
    min-height: 600px;
    height: calc(100vh - 120px);
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center center;
    animation: kenBurns 15s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from { 
        transform: scale(1) translate(0, 0); 
    }
    to { 
        transform: scale(1.12) translate(-3%, -2%); 
    }
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0, 66, 72, 0.4), 
        rgba(0, 66, 72, 0.7)
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem 5%;
    text-align: center;
    color: var(--warm-white);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--warm-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 strong {
    font-weight: 600;
    display: block;
    color: var(--warm-white);
}

.hero-content .tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--warm-white);
    color: var(--deep-teal);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid var(--warm-white);
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: transparent;
    color: var(--warm-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--warm-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0)
    );
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Large Screens */
@media (min-height: 1200px) {
    .hero {
        max-height: 900px;
    }
}

/* Tablet (769px - 968px) */
@media (max-width: 968px) and (min-width: 769px) {
    .hero {
        height: 70vh;
        min-height: 550px;
        max-height: 700px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
    }

    .scroll-indicator {
        bottom: 40px;
    }
}

/* In-Between (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .hero {
        height: 65vh;
        min-height: 500px;
        max-height: 650px;
    }

    .hero-content {
        max-width: 90%;
        padding: 1.5rem 5%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .hero-content .tagline {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        bottom: 35px;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    
}

@media (max-width: 480px) {
    .hero {
        height: auto;  
        min-height: 100vh;  
        max-height: none;
        padding-top: 100px;  
        padding-bottom: 0;
        background: var(--deep-teal);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;  
    }


    .hero-visual {
        position: relative;  
        width: 100%;
        height: 300px;  
        flex-shrink: 0;
        order: 1;
        overflow: hidden;
        margin-top: 2rem; 
    }

    .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        animation: none;
    }

    .hero-visual::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 66, 72, 0.2),
            rgba(0, 66, 72, 0.4)
        );
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
        width: 100%;
        padding: 2.5rem 6% 3rem;
        background: transparent;  
        order: 2;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--warm-white);
    }

    .hero-content h1 strong {
        margin-top: 0.25rem;
        color: var(--warm-white);
    }

    .hero-content .tagline {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.95);
    }

    .cta-button {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
        margin-bottom: 2rem;  
    }

    .scroll-indicator {
        display: none;
    }
}

/* Extra Small Mobile (≤ 375px) */
@media (max-width: 375px) {
    .hero {
        min-height: 100vh;
        padding-bottom: 0;
    }

    .hero-visual {
        height: 250px;
        margin-top: 1.5rem;
    }

    .hero-content {
        padding: 2rem 5% 2.5rem;
    }

    .hero-content h1 {
        font-size: 1.65rem;
        margin-bottom: 0.85rem;
    }

    .hero-content .tagline {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
}

.services {
    padding: 6rem 5%;
    background: var(--warm-white);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--charcoal);
    line-height: 1.8;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.service-box {
    padding: 4rem 3rem;
    position: relative;
}

.service-box.advisory {
    background: white;
    border-right: 3px solid var(--primary-teal);
}

.service-box.investing {
    background: var(--cream);
}

.service-label {
    font-size: 0.9rem;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-box h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-box p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-box ul {
    list-style: none;
    margin: 0;
}

.service-box li {
    padding: 0.75rem 0;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(12, 120, 112, 0.15);
    position: relative;
    padding-left: 2rem;  /* Increased from 1.5rem */
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-box li:last-child {
    border-bottom: none;
}

.service-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.75rem;  /* Added to align with first line */
    color: var(--primary-teal);
    font-weight: 600;
    width: 1.5rem;  /* Added fixed width */
    text-align: left;  /* Added */
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-box.advisory {
        border-right: none;
        border-bottom: 3px solid var(--primary-teal);
    }

    .service-box {
        padding: 3rem 2rem;
    }

    .services-intro h2 {
        font-size: 2.5rem;
    }

    .service-box h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 4rem 5%;
    }

    .services-intro {
        margin-bottom: 3rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .services-intro p {
        font-size: 1rem;
    }

    .service-box {
        padding: 2.5rem 1.5rem;
    }

    .service-box h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .service-box p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-box li {
        padding-left: 1.8rem;  /* Slightly more padding on mobile */
        font-size: 0.9rem;
    }

    .service-box li::before {
        left: 0;
        top: 0.6rem;  /* Adjust alignment for smaller font */
        font-size: 0.9rem;  /* Match text size */
    }
}

.differentiation {
    padding: 6rem 5%;
    background: var(--cream);
    border-top: 1px solid rgba(12, 120, 112, 0.2);
    border-bottom: 1px solid rgba(12, 120, 112, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--deep-teal);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.pillar {
    padding: 2.5rem 2rem;
    background: var(--warm-white);
    border-left: 3px solid var(--primary-teal);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(12, 120, 112, 0.05), transparent);
    transition: left 0.6s ease;
}

.pillar:hover::before {
    left: 100%;
}

.pillar:hover {
    transform: translateX(8px);
    box-shadow: -8px 0 25px rgba(0, 66, 72, 0.08);
}

.pillar h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.approach {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

.approach-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
}

.approach-content p {
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.approach-content ul {
    list-style: none;
    margin-top: 2rem;
}

.approach-content li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(12, 120, 112, 0.15);
    color: var(--charcoal);
    font-size: 0.95rem;
    position: relative;
    padding-left: 2rem;
}

.approach-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 600;
}

.investment-note {
    padding: 4rem 5%;
    background: var(--deep-teal);
    color: var(--warm-white);
    margin: 4rem 0;
}

.investment-note-content {
    max-width: 1200px;
    margin: 0 auto;
}

.investment-note h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--sage-gray);
    margin-bottom: 2rem;
}

.investment-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.investment-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.investment-principles li {
    list-style: none;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--warm-white);
    border-left: 2px solid var(--sage-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.investment-principles li span {
    font-weight: 700;
}

.contact {
    padding: 6rem 5%;
    background: var(--cream);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
}

.contact p {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-form {
    background: var(--warm-white);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 66, 72, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-teal);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(76, 88, 89, 0.2);
    background: var(--warm-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(12, 120, 112, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--deep-teal);
    color: var(--warm-white);
    border: 2px solid var(--deep-teal);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: transparent;
    color: var(--deep-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 66, 72, 0.15);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background: rgba(12, 120, 112, 0.1);
    color: var(--primary-teal);
    border: 1px solid var(--primary-teal);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.form-notice {
    font-size: 0.85rem !important;
    color: var(--charcoal);
    margin: 0 0 2rem 0 !important;
    padding-left: 0.5rem;
    text-align: left;
}

.form-notice::before {
    content: '*';
    color: #004248;
    margin-right: 0.25rem;
    font-weight: 600;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
    padding-top: 100px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--deep-teal);
    margin-bottom: 3rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-teal);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.7;
}

.info-block {
    background: var(--cream);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-teal);
}

.info-block p {
    margin-bottom: 0.5rem;
}

.info-block p:last-child {
    margin-bottom: 0;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.back-link:hover {
    color: var(--primary-teal);
}

.notice {
    background: rgba(12, 120, 112, 0.05);
    border: 1px solid var(--primary-teal);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.notice p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.notice p:last-child {
    margin-bottom: 0;
}

/* Large Screens */
@media (min-height: 1200px) {
    .hero {
        max-height: 900px;
    }
}

/* Tablet (769px - 968px) */
@media (max-width: 968px) and (min-width: 769px) {
    .hero {
        height: 70vh;
        min-height: 550px;
        max-height: 700px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
    }

    .scroll-indicator {
        bottom: 40px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    nav {
        display: none;
    }
}

/* In-Between (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .hero {
        height: 65vh;
        min-height: 500px;
        max-height: 650px;
    }

    .hero-content {
        max-width: 90%;
        padding: 1.5rem 5%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .hero-content .tagline {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        bottom: 35px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    nav {
        display: none;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding-top: 100px;
        padding-bottom: 4rem;
        background: var(--deep-teal);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow: visible;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
        flex-shrink: 0;
        order: 1;
        overflow: hidden;
        margin-top: 2rem;
        background: var(--deep-teal);
    }

    .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        animation: none;
    }

    .hero-visual::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 66, 72, 0.2),
            rgba(0, 66, 72, 0.4)
        );
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
        width: 100%;
        padding: 2.5rem 6%;
        background: transparent;
        order: 2;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--warm-white);
    }

    .hero-content h1 strong {
        margin-top: 0.25rem;
        color: var(--warm-white);
    }

    .hero-content .tagline {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.95);
    }

    .cta-button {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .scroll-indicator {
        display: none;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    nav {
        display: none;
    }

    header {
        padding: 1.5rem 5%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 3rem 5%;
    }

    .info-block {
        padding: 1.5rem;
    }
}

/* Extra Small Mobile (≤ 375px) */
@media (max-width: 375px) {
    .hero {
        min-height: 100vh;
        padding-bottom: 3rem;
    }

    .hero-visual {
        height: 250px;
        margin-top: 1.5rem;
    }

    .hero-content {
        padding: 2rem 5%;
    }

    .hero-content h1 {
        font-size: 1.65rem;
        margin-bottom: 0.85rem;
    }

    .hero-content .tagline {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}
