@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

:root {
    --forest:       #1e2d3d;
    --moss:         #2d4a63;
    --teal:         #3d6e8a;
    --seafoam:      #7aafc4;
    --orange:       #7a9e9a;
    --orange-light: #9bbcb8;
    --cream:        #f7f3ed;
    --sand:         #ede4d4;
    --stone:        #6e6860;
    --charcoal:     #1a1e24;
    --white:        #fdfaf6;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', system-ui, sans-serif;

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 22px;

    --shadow-sm: 0 2px 8px rgba(27,58,45,.08);
    --shadow-md: 0 8px 32px rgba(27,58,45,.12);
    --shadow-lg: 0 20px 60px rgba(27,58,45,.18);

    --transition: all 0.25s ease;
    --nav-h: 72px;
    --fade-distance: 20px;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

h1, h3 {
    font-family: var(--font-display);
    color: var(--forest);
    line-height: 1.2;
}

h2 {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem);  font-weight: 300; }
h3 { font-size: 1.3rem; font-weight: 400; }
h4 { font-size: 0.85rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--forest); font-family: var(--font-body); }

p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--stone);
}

.color-diff      { color: var(--orange-light); }
.txt-color-diff  { font-style: italic; color: var(--cream); }
.font-light      { font-weight: 300; font-size: 0.78rem; letter-spacing: .12em; font-family: var(--font-body); text-transform: uppercase; }
.font-light-medium { font-weight: 300; font-size: 0.92rem; font-family: var(--font-body); color: var(--stone); }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--orange);
}
.eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}

.eyebrow-2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--moss);
}
.eyebrow-2::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--moss);
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--orange);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background-color: var(--moss);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: var(--forest);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1.5px solid var(--moss);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.btn-ghost:hover {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
    transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.section-sub {
    font-size: 1rem;
    color: var(--stone);
}

nav {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(1.5rem, 5vw, 3.5rem);
    background-color: rgba(247, 243, 237, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 90, 66, .12);
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.logo-box {
    flex-shrink: 0;
    justify-self: start;
}

.links-box {
    justify-self: center;
}

.nav-cta-box {
    justify-self: end;
    display: flex;
    align-items: center;
}

.nav-cta-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--forest);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
}
.logo-link:hover { opacity: 0.85; }

.logo-svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.logo-img {
    width: 55px;
    height: 55px;
}

.brand-name { white-space: nowrap; }

.links-box ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.links-box ul li a {
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: var(--font-body);
    transition: color 0.2s;
    position: relative;
}

.links-box ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.25s ease;
}

.links-box ul li a:hover { color: var(--teal); }
.links-box ul li a:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
    justify-self: end;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--forest);
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(27,58,45,.35);
    z-index: 90;
    backdrop-filter: blur(3px);
}
.nav-overlay.visible { display: block; }

.section-hero {
    min-height: calc(95vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106,171,152,.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-inner-2 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: center;
    justify-content: space-around;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.hero-sub {
    font-size: 1.05rem;
    max-width: 480px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    max-width: 380px;
    width: 100%;
    overflow: hidden;
}

.hero-card-leaf {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.leaf-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(106,171,152,.12) 0%, transparent 70%);
    top: -60px;
    right: -60px;
}
.leaf-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(224,92,26,.07) 0%, transparent 70%);
    bottom: -40px;
    left: -40px;
}

.hero-quote {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--forest);
    line-height: 1.2;
}

.hero-quote p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--stone);
    line-height: 1.75;
}

.hero-card-link {
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--teal);
    letter-spacing: .04em;
    transition: color 0.2s;
}
.hero-card-link:hover { color: var(--orange); }

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: clamp(1.5rem, 6vw, 5rem);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--stone);
    font-size: 0.75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--stone);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%   { left: -100%; }
    50%  { left: 0; }
    100% { left: 100%; }
}

.section-strip {
    background-color: var(--forest);
    padding: 0;
    position: relative;
}

.section-strip::before {
    content: '';
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-strip .strip-wave {
    display: block;
    width: 100%;
    height: 48px;
    margin-bottom: -2px;
    margin-top: -1px;
    backface-visibility: hidden;
}

.strip-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.2rem 2.5rem;
    gap: 0.4rem;
    flex: 1;
    min-width: 160px;
}

.strip-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--orange-light);
    line-height: 1;
}

.strip-plus {
    font-size: 1.2rem;
    vertical-align: super;
}

.strip-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, .6);
}

.strip-divider {
    width: 1px;
    background: rgba(255,255,255,.1);
    align-self: stretch;
    margin: 1.2rem 0;
}

.section-about {
    background-color: var(--cream);
    padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 6vw, 5rem);
}

.box-3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: clamp(2rem, 5vw, 5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.box-3-in {
    flex: 1;
}

.img-box {
    background-color: var(--sand);
    padding: 40px;
    border-top-left-radius: 22px;
    border-bottom-right-radius: 22px;
    position: relative;
    display: inline-block;
}

.profile-img {
    display: block;
    max-width: 600px;
    width: 100%;
    height: 560px;
    border-radius: 4px;
}

.about-badge {
    position: absolute;
    top: 0.2rem;
    left: -1.5rem;
    background: var(--forest);
    color: var(--cream);
    padding: 1.2rem 1.6rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.font-medium-large {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--orange-light);
    margin-bottom: 0.25rem;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-in {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

@media (max-width: 900px) {
    .box-3 {
        flex-direction: column;
        align-items: center;
    }
    .img-box {
        max-width: 380px;
        width: 100%;
        padding: 24px;
        margin-bottom: 1.5rem;
    }
}

.about-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
}

.about-image,
.about-text {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.about-img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
    display: block;
}

.about-text {
    padding: 60px;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--teal);
}

.about-text p {
    margin-bottom: 16px;
}

.section-services {
    padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 6vw, 5rem);
    background: var(--forest);
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}


.service-card a.card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(58, 122, 104, .2);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(106,171,152,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--forest);
}

.services-cta {
    text-align: center;
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.services-cta p {
    font-size: 1rem;
    color: var(--stone);
}

.section-approach {
    padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 6vw, 5rem);
    background: var(--forest);
    color: var(--cream);
}

.section-approach h2,
.section-approach h4 {
    color: var(--cream);
}

.section-approach .eyebrow-2 {
    color: var(--seafoam);
}
.section-approach .eyebrow-2::before {
    background: var(--seafoam);
}

.section-approach .txt-color-diff {
    color: var(--seafoam);
}

.section-approach p {
    color: rgba(245,240,230,.75);
}

.section-approach .hero-actions {
    justify-content: center;
}

.approach-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-img {
        height: 380px;
    }

.approach-text {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    max-width: 600px;
}

.approach-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    border-top: 1px solid rgba(245,240,230,.12);
    padding-top: 1.8rem;
}

.pillar {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
}

.pillar-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--orange-light);
    opacity: 0.6;
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
}

.pillar h4 {
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.approach-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.butterfly-large {
    width: 160px;
    height: 160px;
    animation: flutter 4s ease-in-out infinite;
}

@keyframes flutter {
    0%, 100% { transform: scaleX(1); }
    25%       { transform: scaleX(.92) translateY(-4px); }
    50%       { transform: scaleX(1)   translateY(-6px); }
    75%       { transform: scaleX(.92) translateY(-4px); }
}


.faq-hero {
    background-color: var(--white);
    padding: 120px 5% 72px;
    border-bottom: 1px solid var(--forest);
}

.faq-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.faq-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--teal);
    margin: 0 0 1rem;
    line-height: 1.15;
}

.faq-hero h1 .txt-color-diff {
    color: var(--forest);
}

.faq-hero-sub {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--stone);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 1.8rem;
}

.iacp-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border: 1.5px solid var(--teal);
    border-radius: 100px;
    color: var(--forest);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    white-space: nowrap;
}

.iacp-badge svg {
    flex-shrink: 0;
}

.iacp-badge:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.section-faq {
    padding: 72px 5% 96px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.faq-inner {
    max-width: 780px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(45,90,66,.1);
}

.faq-item {
    border-bottom: 1px solid #e5e0d8;
    background: var(--white);
}

.faq-item:first-child {
    border-top: 1px solid #e5e0d8;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d4a47;
    line-height: 1.4;
    transition: background 0.2s;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--forest);
    padding: 10px;
}


.faq-question:hover {
    background: rgba(106,171,152,.06);
    color: #7a9e9a;
}

.faq-question[aria-expanded="true"] {
    background: rgba(106,171,152,.08);
}

.faq-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #7a9e9a;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    background: var(--white);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding-top:10px;
    padding-bottom: 0;
    padding-left: 10px;
    transition: padding-bottom 0.35s ease;
}

.faq-item.open .faq-answer-inner {
    padding-bottom: 1.6rem;
}

.faq-answer-inner,
.faq-answer-inner p,
.faq-answer-inner li,
.faq-answer-inner span {
    color: #3d3d3d;
    font-family: var(--font-body, sans-serif);
    font-size: 1rem;
    line-height: 1.75;
}

.faq-answer-inner p {
    margin: 0 0 0.75rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner strong {
    color: #2d4a47;
    font-weight: 600;
}

.fee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 1rem;
}

.fee-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 1rem 1.2rem;
    border: 1px solid #e5e0d8;
    border-radius: 10px;
    background: #f7f3ed;
}

.fee-amount {
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: #2d4a47;
    line-height: 1;
}

.fee-label {
    font-size: 0.875rem;
    color: #3d3d3d;
    line-height: 1.4;
}

.fee-label em {
    font-style: normal;
    opacity: 0.8;
}

.fee-note {
    font-size: 0.9rem;
    color: #3d3d3d;
    border-left: 3px solid #7a9e9a;
    padding-left: 0.85rem;
    margin: 0;
    line-height: 1.65;
}

.cancel-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
}

.cancel-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e5e0d8;
    font-size: 0.9rem;
    color: #3d3d3d;
}

.cancel-list li:last-child {
    border-bottom: none;
}

.cancel-when {
    color: #3d3d3d;
}

.cancel-charge {
    font-weight: 600;
    color: #2d4a47;
    text-align: right;
}

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding: 2rem 2.4rem;
    background: #f7f3ed;
    border: 1px solid #e5e0d8;
    border-radius: 14px;
}

.faq-cta p {
    margin: 0;
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d4a47;
}

.section-contact {
    padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 6vw, 5rem);
    background: var(--sand);
}

.contact-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 640px;
    margin: 0 auto;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.contact-detail a,
.contact-detail span {
    font-size: 0.92rem;
    color: var(--stone);
    font-family: var(--font-body);
    font-weight: 300;
}
.contact-detail a:hover { color: var(--teal); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--forest);
    font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid rgba(45,90,66,.18);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    box-sizing: border-box;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(61,110,138,.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-note {
    font-size: 0.8rem;
    color: var(--stone);
    text-align: center;
    opacity: .8;
}

.contact-page {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 6vw, 5rem);
    background: var(--cream);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 620px;
}

.contact-card-header {
    margin-bottom: 2rem;
}

.contact-card-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 300;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.contact-card-header h1 span {
    color: var(--orange);
    font-style: italic;
}

.contact-card-header p {
    font-size: 0.95rem;
    color: var(--stone);
    line-height: 1.7;
}

.c-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.c-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.c-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.c-form .form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--forest);
    font-family: var(--font-body);
}

.c-form .form-group input,
.c-form .form-group select,
.c-form .form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid rgba(30, 45, 61, .18);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.c-form .form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.c-form .form-group input:focus,
.c-form .form-group select:focus,
.c-form .form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(61,110,138,.1);
}

.c-form .form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.c-form .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.4rem;
}

.c-form .submit-btn:hover {
    background: var(--moss);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.c-form .submit-btn:disabled {
    background: var(--orange-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-status {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-family: var(--font-body);
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(106,171,152,.12);
    color: var(--forest);
    border: 1px solid rgba(106,171,152,.4);
}

.form-status.error {
    display: block;
    background: rgba(192,57,43,.07);
    color: #a93226;
    border: 1px solid rgba(192,57,43,.2);
}

.privacy-note {
    font-size: 0.78rem;
    color: var(--stone);
    text-align: center;
    opacity: .75;
    font-family: var(--font-body);
    font-weight: 300;
}

.contact-hero {
    min-height: auto;
    padding-top: clamp(3.5rem, 7vh, 5.5rem);
    padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
}

.contact-address-block p {
    font-size: 0.96rem;
    line-height: 1.9;
    color: var(--stone);
    font-style: normal;
}

.card-info-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.card-info-row p {
    font-size: 0.88rem;
    color: var(--stone);
    margin: 0;
}
.card-icon {
    color: var(--teal);
    flex-shrink: 0;
}

.map-contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: stretch;
    background-color: rgba(106,171,152,.1);
    padding: clamp(1rem, 4vw, 40px);
    border-radius: 22px;
}

.map-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.map-info-col .service-card {
    gap: 0.6rem;
    padding: 1.5rem 1.6rem;
}
.map-info-col .service-card address {
    font-style: normal;
}

.map-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(0px, 2vw, 40px);
}

.map-embed-wrap {
    width: 100%;
    flex: 1;
    min-height: 300px;
    height: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(45,90,66,.1);
}

.issues-section {
    background: var(--white);
}

.issues-wrapper {
    position: relative;
    padding: 12px;
    background: rgba(106,171,152,.3);
}

.issues-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 6px 40px;
    white-space: nowrap;
    justify-content: center;
}

.issues-scroll::-webkit-scrollbar {
    display: none;
}

.issue-pill {
    flex: 0 0 auto;
    padding: 6px 12px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1.5px solid #3a7a68;
    color: #3a7a68;
    font-family: var(--font-body);
    font-size: 0.85rem;
    white-space: nowrap;
    transition: var(--transition);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #3a7a68;
    background: #ffffff;
    color: #3a7a68;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

.scroll-btn.left {
    left: 6px;
    display: none;
}

.scroll-btn.right {
    right: 6px;
}

footer {
    background: var(--charcoal);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem clamp(1.5rem, 6vw, 5rem);
    border-bottom: 1px solid rgba(245,240,230,.08);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
}

.footer-logo-link {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-link:hover { opacity: 0.8; }

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(245,240,230,.55);
    line-height: 1.7;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col h4 {
    color: var(--orange-light);
    font-size: 0.75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col ul li a,
.footer-links-col ul li span {
    font-size: 0.88rem;
    color: rgba(245,240,230,.5);
    font-family: var(--font-body);
    font-weight: 300;
    transition: color 0.2s;
    word-break: break-word;
}
.footer-links-col ul li a:hover { color: var(--seafoam); }

.footer-bottom {
    padding: 1.5rem clamp(1.5rem, 6vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245,240,230,.3);
}
.footer-bottom a { color: var(--teal); }
.footer-bottom a:hover { color: var(--seafoam); }

:root {
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.97) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes lineDraw {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.fade-up-slow   { animation: fadeUp  1.4s var(--ease-luxury) forwards; }
.fade-up-slower { animation: fadeUp  1.8s var(--ease-luxury) forwards; }
.fade-in        { animation: fadeIn  1.2s var(--ease-soft)   forwards; }

@media (prefers-reduced-motion: reduce) {
    [data-animate="fade-up"],
    [data-animate="fade-in"],
    [data-animate="scale-up"] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    [data-animate="reveal"] {
        clip-path: none !important;
        transition: none !important;
    }
}

@media (max-width: 1024px) and (min-width: 701px) {
    .brand-name { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { display: none; }
    .hero-scroll-hint { display: none; }
    .section-hero { min-height: auto; padding-top: 4rem; padding-bottom: 4rem; }

    .about-inner { grid-template-columns: 1fr; }
    .about-image-col { position: static; max-width: 400px; margin: 0 auto; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .approach-inner { grid-template-columns: 1fr; gap: 3rem; }
    .approach-visual { display: none; }

    .contact-inner { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }

    .strip-divider { display: none; }

    .map-contact-grid { grid-template-columns: 1fr; }
    .map-info-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .map-embed-wrap { height: 360px; }
}

@media (max-width: 900px) {
    nav { grid-template-columns: 1fr auto; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-hero {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .about-badge {
        top: 0rem;
        left: -0.5rem;
        padding: 0.7rem 1rem;
    }

    .hero-scroll-hint { display: none; }

    .hamburger { display: flex; }
    .nav-cta-box { display: none; }

    .links-box {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100dvh;
        background: var(--white);
        padding: calc(var(--nav-h) + 2rem) 2.5rem 3rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.35s cubic-bezier(.4,0,.2,1);
        z-index: 100;
        overflow-y: auto;
        justify-self: unset;
    }

    .links-box.open { right: 0; }

    .links-box ul { flex-direction: column; align-items: flex-start; gap: 0; }
    .links-box ul li { width: 100%; border-bottom: 1px solid rgba(45,90,66,.08); }
    .links-box ul li a { display: block; padding: 1rem 0; font-size: 0.9rem; }

    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }

    .strip-inner { flex-direction: column; }
    .strip-divider { display: none; }
    .strip-item { padding: 1.4rem; }

    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }

    .about-split {
        flex-direction: column;
        min-height: auto;
    }

    .about-image,
    .about-text {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .about-image {
        height: 260px;
        padding: 0;
    }
    .about-img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: top;
    }
    .about-text {
        padding: 1.5rem;
    }

    .map-contact-grid {
        grid-template-columns: 1fr;
    }
    .map-info-col {
        display: flex;
        flex-direction: column;
    }
    .map-embed-wrap { height: 260px; }

    .c-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .faq-hero { padding: 100px 5% 56px; }
    .faq-question { font-size: 0.97rem; padding: 1.2rem 0; }
    .fee-grid { grid-template-columns: 1fr; }
    .cancel-list li { flex-direction: column; align-items: flex-start; gap: 2px; }
    .cancel-charge { text-align: left; }
    .faq-cta { flex-direction: column; text-align: center; padding: 1.6rem; }
    .iacp-badge { font-size: 0.75rem; padding: 8px 14px; white-space: normal; text-align: center; }
    .profile-img {
        height: 280px;
    }
}