/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --cream:        #F7F3EC;
    --cream-alt:    #EDE8DC;
    --forest:       #1E3320;
    --forest-mid:   #2A4530;
    --sage:         #6B9471;
    --sage-light:   #A5C4A0;
    --sage-pale:    #DFF0DA;
    --clay:         #B56B45;
    --clay-light:   #C8855E;
    --text:         #1C241C;
    --text-mid:     #4A5C4D;
    --text-muted:   #7A8A7C;
    --text-light:   #F7F3EC;

    /* Cormorant for the brand name logo — delicate, elevated */
    --font-logo:    'Cormorant', Georgia, serif;
    /* Fraunces for display headings — warm, organic, editorial */
    --font-display: 'Fraunces', Georgia, serif;
    /* Lora for body — graceful, readable */
    --font-body:    'Lora', Georgia, serif;

    --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain texture for depth */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* =============================================
   SCROLL CONTAINER & SNAP SECTIONS
   ============================================= */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.snap-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 7rem 0 4rem;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1.3rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(247, 243, 236, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 148, 113, 0.1);
    z-index: 1000;
    transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

/* Logo — Cormorant italic: elegant, distinctive, personal */
.logo a {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--forest);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.logo a:hover { color: var(--sage); }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    transition: color 0.3s ease;
    padding-bottom: 4px;
    position: relative;
    display: inline-block;
}

.nav-links a:hover { color: var(--text); }

.nav-cta { color: var(--clay) !important; font-weight: 500 !important; }

.nav-indicator {
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sage);
    transition: all 0.4s var(--ease-out);
    border-radius: 1px;
    pointer-events: none;
}

/* Hamburger — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.hamburger.open span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}
.hamburger.open span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* =============================================
   MOBILE NAVIGATION
   ============================================= */
.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--cream);
    z-index: 1005;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2.5rem 3rem;
    border-left: 1px solid rgba(107, 148, 113, 0.12);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(107, 148, 113, 0.1);
}

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    padding: 1.1rem 0;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--sage);
    padding-left: 0.5rem;
}

.mobile-link-cta {
    color: var(--clay) !important;
}

.mobile-nav-foot {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(30, 51, 32, 0.35);
    backdrop-filter: blur(2px);
    z-index: 1003;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.5rem;
    background: var(--clay);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 20px rgba(181, 107, 69, 0.22);
}

.btn-primary:hover {
    background: var(--clay-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(181, 107, 69, 0.32);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.5rem;
    border: 1.5px solid var(--forest);
    color: var(--forest);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.4s var(--ease-out);
    margin-top: 2rem;
}

.btn-outline:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 51, 32, 0.2);
}

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.2rem;
    display: block;
}

.section-eyebrow.light { color: var(--sage-light); }

.section-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.5px;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.section-title.light { color: var(--cream); }

.section-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 620px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
}

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

.body-text.light { color: rgba(247, 243, 236, 0.72); }

.center-text { text-align: center; }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}

.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 1.3s var(--ease-out) 0.12s, transform 1.3s var(--ease-out) 0.12s;
}

.reveal-right.active { opacity: 1; transform: translateX(0); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background:
        radial-gradient(ellipse 85% 90% at 18% 55%, rgba(107, 148, 113, 0.1) 0%, transparent 58%),
        radial-gradient(ellipse 55% 65% at 88% 18%, rgba(200, 169, 110, 0.07) 0%, transparent 60%),
        var(--cream);
    align-items: stretch;
}

.hero-grid {
    display: grid;
    grid-template-columns: 54% 46%;
    width: 100%;
    min-height: 100vh;
}

/* Text column */
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 3rem 6rem 7%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 6.5rem;
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -2.5px;
    color: var(--forest);
    margin-bottom: 2.5rem;
}

.hero-title em { font-style: italic; font-weight: 300; }

.hero-body {
    font-size: 1.1rem;
    line-height: 1.78;
    color: var(--text-mid);
    max-width: 440px;
    margin-bottom: 2.8rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-email {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(122, 138, 124, 0.35);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-email:hover { color: var(--clay); border-color: var(--clay); }

/* Portrait column — contained, framed, not stretched */
.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 6% 5rem 2%;
}

/* Decorative offset frame */
.portrait-frame {
    position: relative;
    width: min(88%, 400px);
}

.portrait-frame::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
    border: 1.5px solid rgba(107, 148, 113, 0.45);
    border-radius: 22px;
    z-index: 0;
    pointer-events: none;
}

.hero-portrait {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    box-shadow: 0 28px 65px rgba(30, 51, 32, 0.18);
    display: block;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
}

.cue-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--sage), transparent);
    animation: dropLine 2.8s var(--ease-out) infinite;
    transform-origin: top center;
}

.cue-text {
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

@keyframes dropLine {
    0%   { transform: scaleY(0); opacity: 0; }
    25%  { transform: scaleY(1); opacity: 1; }
    75%  { transform: scaleY(1); opacity: 0.5; }
    100% { transform: scaleY(0); opacity: 0; }
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */
.philosophy-section { background: var(--cream); }

.philosophy-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.section-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(30, 51, 32, 0.13);
}

.ph-text { padding-right: 1rem; }

.quote-block {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--forest-mid);
    padding: 2rem 2rem 2rem 2.2rem;
    border-left: 3px solid var(--sage);
    background: rgba(107, 148, 113, 0.05);
    border-radius: 0 10px 10px 0;
    margin-bottom: 2rem;
}

/* =============================================
   SUPPORT PILLARS SECTION
   ============================================= */
.support-section { background: var(--cream-alt); }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
    text-align: left;
}

.pillar-card {
    background:
        linear-gradient(var(--cream), var(--cream)) padding-box,
        linear-gradient(135deg, rgba(107, 148, 113, 0.28), rgba(181, 107, 69, 0.12)) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.5s var(--spring), box-shadow 0.4s var(--ease-out);
}

.pillar-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px rgba(30, 51, 32, 0.1);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest), var(--sage));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(30, 51, 32, 0.18);
}

.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.pillar-card p {
    font-size: 0.93rem;
    line-height: 1.82;
    color: var(--text-mid);
}

/* =============================================
   SURVIVORS / FEATURE CARDS
   ============================================= */
.survivors-section { background: var(--cream); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
    text-align: left;
}

.feature-card {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(107, 148, 113, 0.22), rgba(107, 148, 113, 0.05)) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(30, 51, 32, 0.04);
    transition: transform 0.5s var(--spring), box-shadow 0.4s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 22px 55px rgba(30, 51, 32, 0.1);
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: var(--sage-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    margin-bottom: 1.8rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.feature-card p { font-size: 0.93rem; line-height: 1.82; color: var(--text-mid); }

/* =============================================
   ABOUT SECTION (DARK)
   ============================================= */
.about-section { background: var(--forest); }

.about-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.about-portrait {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* =============================================
   TECHNIQUES SECTION — all cards identical
   ============================================= */
.techniques-section { background: var(--cream-alt); }

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
    text-align: left;
}

.tech-card {
    background: #D8EDD4;   /* single unified sage-mint for all three */
    border-radius: 20px;
    padding: 2.8rem 2.4rem;
    transition: transform 0.5s var(--spring), box-shadow 0.4s var(--ease-out);
}

.tech-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px rgba(30, 51, 32, 0.12);
}

.tech-symbol {
    font-size: 1.8rem;
    color: var(--forest-mid);
    margin-bottom: 1.4rem;
    opacity: 0.6;
}

.tech-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.tech-card p { font-size: 0.93rem; line-height: 1.82; color: var(--text-mid); }

/* =============================================
   CONTACT / BOOKING — all fee cards identical
   ============================================= */
.contact-section {
    background: var(--cream);
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 7% 3rem;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* All three fee cards share the same style — no dark featured variant */
.fee-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(107, 148, 113, 0.16);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 51, 32, 0.04);
    transition: transform 0.4s var(--spring), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.fee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(30, 51, 32, 0.1);
    border-color: rgba(107, 148, 113, 0.3);
}

.fee-currency {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.fee-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.fee-per { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.2rem; }

.fee-rule {
    width: 48%;
    border: none;
    border-top: 1px solid rgba(107, 148, 113, 0.18);
    margin-bottom: 1.2rem;
}

.fee-note { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    border-top: 1px solid rgba(107, 148, 113, 0.1);
    padding: 1.8rem 7% 1.4rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 1.4rem;
}

.footer-brand {
    font-family: var(--font-logo);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--forest);
    margin-bottom: 0.2rem;
}

.footer-tagline { font-size: 0.8rem; color: var(--text-muted); }

.social-row { display: flex; gap: 0.7rem; }

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(107, 148, 113, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    background: transparent;
    transition: all 0.3s var(--ease-out);
}

.social-btn:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 51, 32, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(107, 148, 113, 0.08);
    padding-top: 1.1rem;
    font-size: 0.76rem;
    color: var(--text-muted);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a { color: var(--text-muted); transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--forest); }

/* =============================================
   RESPONSIVE — TABLET (≤1200px)
   ============================================= */
@media (max-width: 1200px) {
    .hero-title    { font-size: 5.2rem; }
    .section-title { font-size: 3.2rem; }
}

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
    .site-header  { padding: 1rem 4%; }

    /* Hero: stack, show portrait as a panel below text */
    .hero-grid    { grid-template-columns: 1fr; min-height: auto; }

    .hero-text {
        padding: 9rem 7% 3rem;
        order: 1;
    }

    .hero-media {
        order: 2;
        padding: 0 7% 5rem;
        justify-content: flex-start;
    }

    .portrait-frame {
        width: min(360px, 80%);
    }

    .hero-portrait { height: 420px; }

    .philosophy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .section-img     { height: 320px; }

    .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
    .about-portrait { max-width: 100%; height: 340px; }

    .pillars-grid,
    .cards-grid,
    .techniques-grid { grid-template-columns: repeat(2, 1fr); }

    .fees-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav */
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
    body        { overflow: hidden; } /* keep scroll-container in control */

    /* Remove snap on mobile for natural scrolling */
    .scroll-container {
        scroll-snap-type: none;
    }
    .snap-section {
        min-height: auto;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        padding: 0 0 2rem;
    }

    /* Hero mobile */
    .hero-title   { font-size: 3.8rem; letter-spacing: -1.5px; }
    .hero-text    { padding: 8rem 5% 2.5rem; }
    .hero-body    { font-size: 1rem; max-width: 100%; }
    .hero-media   {
        order: 2;
        padding: 0 5% 4rem;
        justify-content: center;
    }
    .portrait-frame { width: 100%; }
    .portrait-frame::before {
        top: -10px; left: -10px; right: 10px; bottom: 10px;
    }
    .hero-portrait { height: 380px; }
    .hero-actions  { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .hero-title    { font-size: 3.6rem; }
    .scroll-cue    { display: none; }

    /* Section titles */
    .section-title { font-size: 2.6rem; }
    .section-lead  { font-size: 1rem; margin-bottom: 2.5rem; }

    /* Content wrappers */
    .content-wrapper { padding: 5rem 0 3rem; }

    /* Cards: single column */
    .pillars-grid,
    .cards-grid,
    .techniques-grid { grid-template-columns: 1fr; gap: 1.2rem; }

    /* Fees: single column on mobile */
    .fees-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 340px; }

    /* Contact content */
    .contact-content { padding: 5rem 5% 2rem; }

    /* Philosophy */
    .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section-img     { height: 260px; }
    .quote-block     { font-size: 1.2rem; }

    /* About */
    .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-portrait { max-width: 100%; height: 300px; }

    /* Footer */
    .footer-inner  { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 0.7rem; text-align: center; padding-bottom: 1.2rem; }

    /* Buttons */
    .btn-primary,
    .btn-outline { width: 100%; justify-content: center; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤430px)
   ============================================= */
@media (max-width: 430px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .hero-text { padding: 7rem 5% 2rem; }
    .tech-card, .pillar-card, .feature-card { padding: 2rem 1.8rem; }
    .fee-card { padding: 1.8rem 1.2rem; }
    .fee-amount { font-size: 2.5rem; }
}

/* =============================================
   RESPONSIVE — SHORT SCREENS
   ============================================= */
@media (max-height: 700px) {
    .snap-section  { min-height: auto; padding: 5rem 0 2rem; }
    .hero-title    { font-size: 3.5rem; }
    .section-title { font-size: 2.4rem; }
}
