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

:root {
    --cream:    #f5f0e8;
    --warm:     #ede5d5;
    --sage:     #7a9e8e;
    --sage-dk:  #4e7264;
    --terracotta: #b87059;
    --bark:     #3a2e28;
    --mist:     #c9d8d2;
    --text:     #2e2620;
    --text-mid: #6b5e55;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
.header-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.4rem 5vw;
    background: rgba(245,240,232,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(122,158,142,0.2);
    animation: fadeDown .8s ease both;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--bark);
    text-decoration: none;
}

.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-mid);
    transition: color .25s;
}
.nav-links a:hover { color: var(--sage-dk); }

.nav-right {
    display:flex;
    align-items:center;
    gap:1rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    border: 1px solid rgba(122,158,142,.4);
    border-radius: 2px;
    overflow: hidden;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
}

.lang-switcher a {
    padding: .35rem .75rem;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text-mid);
    background: transparent;
    transition: background .2s, color .2s;
    line-height: 1;
}

.lang-switcher a:hover {
    background: rgba(122,158,142,.12);
    color: var(--sage-dk);
}

.lang-switcher a.active {
    background: var(--sage-dk);
    color: #fff;
    cursor: default;
    pointer-events: none;
}

.lang-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(122,158,142,.4);
    flex-shrink: 0;
}

/* ─── HERO ────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12vh 6vw 12vh 8vw;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sage-dk);
    margin-bottom: 1.6rem;
    animation: fadeUp .9s .3s ease both;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    line-height: 1.08;
    color: var(--bark);
    margin-bottom: 1.8rem;
    animation: fadeUp .9s .45s ease both;
}

h1 em {
    font-style: italic;
    color: var(--sage-dk);
}

.hero-tagline {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 3rem;
    animation: fadeUp .9s .6s ease both;
}

.hero-cta {
    display: flex; gap: 1.2rem; flex-wrap: wrap;
    animation: fadeUp .9s .75s ease both;
}

.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .9rem 2rem;
    border-radius: 2px;
    transition: all .28s ease;
}

.btn-primary {
    background: var(--sage-dk);
    color: #fff;
    border: 1.5px solid var(--sage-dk);
}
.btn-primary:hover { background: var(--bark); border-color: var(--bark); }

.btn-outline {
    background: transparent;
    color: var(--bark);
    border: 1.5px solid var(--bark);
}
.btn-outline:hover { background: var(--bark); color: var(--cream); }

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(122,158,142,.28) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(184,112,89,.14) 0%, transparent 70%);
    animation: pulseGrad 8s ease-in-out infinite alternate;
}

.hero-shape {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72%;
    aspect-ratio: 3/4;
    border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
    background: linear-gradient(135deg, var(--mist) 0%, var(--warm) 100%);
    animation: morphBlob 10s ease-in-out infinite alternate, fadeIn 1.2s ease both;
}

.hero-initials {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(6rem, 12vw, 13rem);
    font-weight: 300;
    color: rgba(78,114,100,.18);
    letter-spacing: -.02em;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    animation: fadeIn 1.5s .5s ease both;
}

/* ─── SECTION COMMON ──────────────────────────────────── */
section { padding: 8rem 8vw; }

.section-label {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.15;
    color: var(--bark);
    margin-bottom: 2rem;
}

h2 em { font-style: italic; color: var(--sage-dk); }

/* ─── ABOUT ───────────────────────────────────────────── */
#about {
    background: var(--warm);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6vw;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.about-text p strong {
    font-weight: 500;
    color: var(--text);
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.pillar {
    display: flex; align-items: flex-start; gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    background: var(--cream);
    border-radius: 4px;
    border-left: 3px solid var(--sage);
    transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateX(6px); box-shadow: -4px 4px 16px rgba(0,0,0,.06); }

.pillar-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: .1rem;
}

.pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: .35rem;
}

.pillar p {
    font-size: .88rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ─── SERVICES ────────────────────────────────────────── */
#services { background: var(--cream); }

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    margin-bottom: 4rem;
    align-items: end;
}

.services-intro p {
    font-size: .98rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.85;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.service-card {
    padding: 2.4rem 2rem;
    border: 1px solid rgba(122,158,142,.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mist) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover { border-color: var(--sage); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.service-card:hover::before { opacity: 1; }

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(122,158,142,.25);
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--bark);
    margin-bottom: .7rem;
    position: relative;
}

.service-card p {
    font-size: .88rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.75;
    position: relative;
}

/* ─── APPROACH ────────────────────────────────────────── */
#approach {
    background: var(--sage-dk);
    color: var(--cream);
    text-align: center;
    padding: 8rem 12vw;
}

#approach .section-label { color: var(--mist); }
#approach h2 { color: var(--cream); margin-bottom: 1.4rem; }
#approach h2 em { color: var(--mist); }

.approach-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(245,240,232,.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.approach-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.step {
    display: flex; flex-direction: column; align-items: center;
    gap: .7rem;
    max-width: 180px;
}

.step-dot {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(245,240,232,.15);
    border: 1.5px solid rgba(245,240,232,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}

.step span {
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .06em;
    color: rgba(245,240,232,.85);
    text-align: center;
}

/* ─── CONTACT ─────────────────────────────────────────── */
#contact {
    background: var(--warm);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6vw;
    align-items: start;
}

.contact-text p {
    font-size: .98rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 2.4rem;
}

.contact-details {
    display: flex; flex-direction: column; gap: 1.2rem;
}

.contact-item {
    display: flex; align-items: center; gap: 1.2rem;
}

.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(122,158,142,.3);
}

.contact-item-info { display: flex; flex-direction: column; gap: .15rem; }

.contact-item-label {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--sage-dk);
}

.contact-item-value {
    font-size: .97rem;
    font-weight: 400;
    color: var(--bark);
    text-decoration: none;
    transition: color .2s;
}
a.contact-item-value:hover { color: var(--terracotta); }

/* Contact Form */
.contact-form {
    background: var(--cream);
    padding: 2.8rem;
    border-radius: 4px;
    border: 1px solid rgba(122,158,142,.25);
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 1.8rem;
}

.contact-form .required-field{
    color: var(--terracotta);
}

.form-row { margin-bottom: 1.3rem; }

.form-row label {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: .5rem;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: .85rem 1.1rem;
    font-family: 'Jost', sans-serif;
    font-size: .92rem;
    font-weight: 300;
    color: var(--text);
    background: var(--warm);
    border: 1px solid rgba(122,158,142,.35);
    border-radius: 2px;
    outline: none;
    transition: border-color .25s;
    appearance: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--sage-dk);
}

.form-row textarea { resize: vertical; min-height: 110px; }

.form-submit {
    width: 100%;
    padding: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--sage-dk);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background .25s;
    margin-top: .4rem;
}
.form-submit:hover { background: var(--bark); }

.form-note {
    font-size: .75rem;
    color: var(--text-mid);
    margin-top: .8rem;
    line-height: 1.55;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
    background: var(--bark);
    color: rgba(245,240,232,.6);
    padding: 2.8rem 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(245,240,232,.9);
    letter-spacing: .06em;
}

footer p { font-size: .78rem; font-weight: 300; }

footer nav a {
    font-size: .75rem;
    font-weight: 400;
    color: rgba(245,240,232,.5);
    text-decoration: none;
    margin-left: 1.8rem;
    letter-spacing: .08em;
    transition: color .2s;
}
footer nav a:hover { color: rgba(245,240,232,.9); }

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes morphBlob {
    0%   { border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%; }
    33%  { border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%; }
    66%  { border-radius: 45% 55% 55% 45% / 45% 50% 50% 55%; }
    100% { border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%; }
}
@keyframes pulseGrad {
    0%   { opacity: .7; }
    100% { opacity: 1; }
}

/* ─── SCROLL FADE IN ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    #hero          { grid-template-columns: 1fr; }
    .hero-right    { display: none; }
    #about         { grid-template-columns: 1fr; }
    #contact       { grid-template-columns: 1fr; }
    .services-intro { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .nav-links     { display: none; }
}

@media (max-width: 600px) {
    section { padding: 5rem 6vw; }
    .services-grid { grid-template-columns: 1fr; }
    .approach-steps { gap: 1.8rem; }
}