/* ══════════════════════════════════════════════════════════════════════════
   Zori Begić Theme — theme.css  v3.0
   Design: Concept 4 (Circle of L) — Beige dominant, green accent only
   Logo: dark forest green figure-in-tree mark
   GrL'Ca Live Editor compatible
   ══════════════════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ────────────────────────────────────────────────────────── */
:root {
    /* ─ Core palette ─ */
    --beige:       #F5EFE6;      /* main background */
    --beige-mid:   #EDE5D8;      /* section alternation */
    --beige-deep:  #E0D5C4;      /* cards, trust bar */
    --beige-dark:  #C8B89A;      /* borders, dividers */
    --green:       #1E4028;      /* logo green — accent only */
    --green-btn:   #2D5438;      /* button bg */
    --green-hover: #1A3520;      /* button hover */
    --green-line:  #3D6644;      /* decorative lines, dots */
    --green-light: #E8F0E4;      /* very pale green tint for pills */
    --text-dark:   #2A1F14;      /* primary text */
    --text-mid:    #6B5A48;      /* body text */
    --text-light:  #9A8A78;      /* muted / labels */
    --white:       #FFFFFF;

    /* ─ GLE color key aliases ─ */
    --clr-green:  var(--green);
    --clr-cream:  var(--beige);
    --clr-sand:   var(--beige-mid);
    --clr-brown:  var(--beige-dark);
    --clr-muted:  var(--text-mid);
    --p:   var(--green-btn);
    --s:   var(--green-hover);
    --a:   var(--green-line);
    --d:   var(--text-dark);
    --bg:  var(--beige);
    --t:   var(--text-dark);
    --l:   var(--beige-mid);

    /* ─ Typography ─ */
    --font-serif: 'Cormorant', 'Fraunces', Georgia, serif;
    --font-body:  'Mulish', 'Inter', system-ui, sans-serif;

    /* ─ Shape ─ */
    --radius-sm:  6px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  80px;

    /* ─ Shadow ─ */
    --shadow-card:  0 2px 12px rgba(42,31,20,.08);
    --shadow-popup: 0 8px 36px rgba(42,31,20,.14);

    /* ─ Layout ─ */
    --max-w:  1180px;
    --gutter: 56px;
}


/* ── Universal section content wrapper — same width as nav ───────────────── */
.section-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
}
/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--beige);
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
em { font-style: italic; color: var(--green); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── LANGUAGE BAR ─────────────────────────────────────────────────────────── */
.lang-bar {
    background: var(--beige-deep);
    padding: 7px var(--gutter);
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--beige-dark);
    width: 100%;
}
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-switcher a,
.lang-btn {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-mid); text-decoration: none; background: none;
    border: none; padding: 3px 8px; font-family: var(--font-body);
    font-weight: 400; cursor: pointer; transition: color .2s;
}
.lang-switcher a:hover, .lang-btn:hover { color: var(--text-dark); }
.lang-switcher a.current-lang,
.lang-btn.active { color: var(--green); border-bottom: 1px solid var(--green); }
.lang-sep { color: var(--beige-dark); font-size: 10px; }
.lang-switcher ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.lang-switcher li { display: inline; }
.lang-switcher li.current-lang a { color: var(--green); border-bottom: 1px solid var(--green); }

/* ── SITE HEADER / NAV ────────────────────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--beige-deep);
    position: sticky; top: 0; z-index: 200;
    transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(42,31,20,.08); }
.site-header.is-scrolled .nav-inner { height: 64px; }
.site-header.is-scrolled .logo-img { width: 38px; height: 38px; }
.site-header.is-scrolled .logo-text { font-size: 18px; }
.nav-inner {
    width: 100%;
    padding: 0 var(--gutter); height: 80px;
    display: flex; align-items: center; gap: 24px;
    transition: height .3s;
}
/* Logo: image mark + name */
.site-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.logo-img {
    width: 58px; height: 58px;
    object-fit: contain;
    flex-shrink: 0;
    transition: width .3s, height .3s;
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 22px; font-weight: 400;
    color: var(--text-dark); letter-spacing: .3px;
    line-height: 1.2;
    transition: font-size .3s;
}
.logo-text small {
    display: block; font-size: 10px; font-weight: 400;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-light); font-family: var(--font-body);
    margin-top: 1px;
}
/* Nav links */
.primary-nav { flex: 1; min-width: 0; }
.nav-menu { display: flex; gap: 24px; list-style: none; justify-content: center; }
.nav-menu a {
    font-size: 13px; color: var(--green);
    text-decoration: none; font-weight: 400; letter-spacing: .2px;
    transition: color .2s; padding: 4px 0; position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--green-line);
    transition: width .25s;
}
.nav-menu a:hover { color: var(--text-dark); }
.nav-menu a:hover::after { width: 100%; }
/* CTA button — green accent */
.nav-cta {
    background: var(--green-btn); color: var(--white);
    font-size: 12px; font-weight: 500;
    padding: 10px 22px; border-radius: 24px;
    text-decoration: none; letter-spacing: .3px;
    white-space: nowrap; flex-shrink: 0;
    transition: background .2s;
}
.nav-cta:hover { background: var(--green-hover); }
/* Mobile toggle */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 4px; margin-left: auto;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text-dark); border-radius: 2px; transition: all .25s;
}

/* ── SHARED HELPERS ───────────────────────────────────────────────────────── */
.section-header { text-align: center; max-width: var(--max-w); margin: 0 auto 52px; }
.section-eyebrow {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--green-line); font-weight: 500; display: block; margin-bottom: 14px;
}
.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 42px); font-weight: 400;
    color: var(--text-dark); line-height: 1.15; margin-bottom: 14px;
}
.section-heading em { font-style: italic; color: var(--green); }
.section-heading.light { color: var(--white); }
.section-heading.light em { color: var(--beige-deep); }
.section-sub {
    font-size: 16px; color: var(--green);
    font-weight: 300; line-height: 1.8;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
/* Primary — green filled */
.btn-primary {
    display: inline-block;
    background: var(--green-btn); color: var(--white);
    font-size: 13px; font-weight: 500;
    padding: 14px 32px; border-radius: 28px;
    text-decoration: none; letter-spacing: .3px;
    transition: background .2s;
    border: 2px solid transparent;
}
.btn-primary:hover { background: var(--green-hover); }
/* Secondary — beige outlined with green border */
.btn-secondary {
    display: inline-block;
    background: transparent; color: var(--green-btn);
    font-size: 13px; font-weight: 500;
    padding: 13px 30px; border-radius: 28px;
    text-decoration: none; letter-spacing: .3px;
    border: 2px solid var(--green-btn);
    transition: all .2s;
}
.btn-secondary:hover { background: var(--green-btn); color: var(--white); }
/* Text link */
.text-link {
    font-size: 13px; color: var(--green); font-weight: 500;
    text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
    border-bottom: 1px solid rgba(30,64,40,.3); padding-bottom: 2px;
    transition: border-color .2s;
}
.text-link:hover { border-color: var(--green); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero-outer { background: var(--beige); }
.hero {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    min-height: 600px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.hero-text {
    background: var(--beige);
    padding: 80px var(--gutter);
    display: flex; flex-direction: column; justify-content: center;
}
.hero-welcome {
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-light); font-weight: 400; margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
}
/* Green accent line in welcome */
.hero-welcome-line {
    display: inline-block; width: 28px; height: 1px;
    background: var(--green-line); flex-shrink: 0;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.8vw, 46px); font-weight: 400;
    line-height: 1.1; color: var(--text-dark); margin-bottom: 10px;
}
.hero-title em { font-style: italic; color: var(--green); }
.hero-tagline {
    font-family: var(--font-serif);
    font-size: 19px; font-style: italic; font-weight: 300;
    color: var(--text-light); line-height: 1.5; margin-bottom: 22px;
}
.hero-sub {
    font-size: 16px; line-height: 1.85; color: var(--green);
    font-weight: 300; max-width: 440px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
/* Hero right — warm beige gradient + photo placeholder */
.hero-visual { overflow: hidden; background: var(--beige-mid); }
.hero-photo {
    width: 100%; height: 100%;
    background: linear-gradient(155deg, var(--beige-deep) 0%, var(--beige-dark) 60%, #A89070 100%);
    background-size: cover; background-position: center top;
    display: flex; align-items: flex-end; padding: 44px; position: relative;
}
/* Stat card — green accent border */
.hero-stat-card {
    position: absolute; top: 40px; left: -20px;
    background: var(--white); padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-popup);
    border-left: 3px solid var(--green-line);
}
.stat-num {
    font-family: var(--font-serif); font-size: 40px; font-weight: 400;
    color: var(--green); line-height: 1; display: block;
}
.stat-lbl { font-size: 11px; color: var(--green); font-weight: 300; line-height: 1.4; }
.hero-photo-name {
    font-family: var(--font-serif); font-size: 14px; font-style: italic;
    font-weight: 300; color: rgba(42,31,20,.6); line-height: 1.5;
}

/* ── MISSION CARD ─────────────────────────────────────────────────────────── */
/* Beige-dark background with green left-rule — no full dark green */
.mission { background: var(--beige-mid); padding: 64px var(--gutter); }
.mission-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 3px 1fr; gap: 48px; align-items: start;
}
/* Green accent rule */
.mission-rule { background: var(--green-line); min-height: 80px; }
.mission-quote {
    font-family: var(--font-serif); font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 400; font-style: italic;
    color: var(--text-dark); line-height: 1.45; margin-bottom: 16px;
}
.mission-body p {
    font-size: 16px; line-height: 1.9; color: var(--green);
    font-weight: 300; max-width: 720px;
}

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar {
    background: var(--beige-deep);
    border-top: 1px solid var(--beige-dark); border-bottom: 1px solid var(--beige-dark);
}
.trust-bar-inner {
    display: flex; justify-content: center; flex-wrap: wrap;
}
.trust-item {
    padding: 18px 36px; border-right: 1px solid var(--beige-dark);
    display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
/* Green dot accent */
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-line); flex-shrink: 0; }
.trust-item span:last-child { font-size: 13px; color: var(--green); font-weight: 400; letter-spacing: .3px; }

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about { padding: 96px var(--gutter); background: var(--beige); }
.about-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start;
}
.portrait-wrap { position: relative; }
.portrait-img {
    width: 100%; height: 480px; object-fit: cover;
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 20px;
    background: linear-gradient(150deg, var(--beige-deep) 0%, var(--beige-dark) 100%);
}
.portrait-deco {
    position: absolute; bottom: -16px; right: -16px;
    width: 100px; height: 100px;
    border: 1px solid var(--green-line); border-radius: var(--radius-md); z-index: -1;
}
.cred-badge {
    position: absolute; top: 28px; right: -24px;
    background: var(--white); padding: 14px 18px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-popup);
    font-size: 13px; color: var(--green); font-weight: 400; line-height: 1.7;
    border-top: 2px solid var(--green-line);
}
.about-heading {
    font-family: var(--font-serif); font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 400; line-height: 1.15; color: var(--text-dark); margin-bottom: 20px;
}
.about-heading em { font-style: italic; color: var(--green); }
.about-body { font-size: 15px; line-height: 1.95; color: var(--green); font-weight: 300; margin-bottom: 12px; }
.cred-list { margin: 20px 0 28px; }
.cred-list li {
    font-size: 15px; color: var(--green); font-weight: 300;
    padding: 8px 0; border-bottom: 1px solid var(--beige-deep);
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
/* Green checkmark */
.cred-check { color: var(--green-line); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

/* ── WHO IT'S FOR ─────────────────────────────────────────────────────────── */
.who { padding: 88px var(--gutter); background: var(--beige-mid); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
.who-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 28px; border: 1px solid var(--beige-deep);
    transition: border-color .2s; transition: box-shadow .2s;
}
.who-card:hover { box-shadow: var(--shadow-card); }
/* Green accent dash */
.who-card-dash { width: 28px; height: 2px; background: var(--green-line); margin-bottom: 16px; border-radius: 1px; }
.who-card p { font-size: 15px; line-height: 1.8; color: var(--green); font-weight: 300; }

/* ── SERVICES ─────────────────────────────────────────────────────────────── */
.services { padding: 96px var(--gutter); background: var(--beige); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin: 48px auto 0; }
.svc-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 52px 44px; border: 1px solid var(--beige-deep);
    position: relative; overflow: hidden; transition: box-shadow .2s;
}
.svc-card:hover { box-shadow: var(--shadow-card); }
/* Green top accent line */
.svc-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 2px; background: var(--green-line);
}
.svc-pill {
    display: inline-block; background: var(--green-light); color: var(--green);
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 10px; margin-bottom: 20px; font-weight: 500;
}
.svc-title {
    font-family: var(--font-serif); font-size: 26px; font-weight: 400;
    color: var(--text-dark); margin-bottom: 14px; line-height: 1.2;
}
.svc-body { font-size: 15px; line-height: 1.9; color: var(--green); font-weight: 300; margin-bottom: 20px; }
.svc-body p { margin-bottom: 10px; }
.svc-body p:last-child { margin-bottom: 0; }
.svc-link {
    font-size: 12px; color: var(--green); text-decoration: none;
    font-weight: 500; letter-spacing: .3px; display: inline-flex; align-items: center; gap: 4px;
    border-bottom: 1px solid rgba(30,64,40,.3); padding-bottom: 2px;
}
.svc-link:hover { border-color: var(--green); }

/* ── BENEFITS ─────────────────────────────────────────────────────────────── */
.benefits { padding: 88px var(--gutter); background: var(--beige-mid); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: var(--max-w); margin: 48px auto 0; }
.benefit-item {
    background: var(--white); border-radius: var(--radius-md);
    padding: 24px 20px; border: 1px solid var(--beige-deep);
}
.benefit-num {
    font-family: var(--font-serif); font-size: 28px; font-weight: 400;
    color: var(--beige-dark); line-height: 1; margin-bottom: 8px; display: block;
}
.benefit-text { font-size: 15px; color: var(--green); font-weight: 300; line-height: 1.65; }

/* ── PACKAGES ─────────────────────────────────────────────────────────────── */
/* Packages section — deeper beige, green accents on cards */
.packages { padding: 96px var(--gutter); background: var(--beige-deep); }
.packages .section-heading { color: var(--text-dark); }
.packages .section-sub { color: var(--green); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 48px auto 0; }
.pkg-card {
    background: var(--white); border: 1px solid var(--beige-dark);
    border-radius: var(--radius-lg); padding: 40px 32px;
    transition: box-shadow .2s;
}
.pkg-card:hover { box-shadow: var(--shadow-card); }
.pkg-card--featured {
    border: 2px solid var(--green-btn);
    box-shadow: 0 4px 24px rgba(30,64,40,.12);
}
.pkg-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--green-line); font-weight: 500; display: block; margin-bottom: 6px;
}
.pkg-name { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--text-dark); margin-bottom: 4px; line-height: 1.2; }
.pkg-name-sub { font-size: 12px; color: var(--text-light); font-weight: 300; margin-bottom: 20px; display: block; }
.pkg-price { font-family: var(--font-serif); font-size: 42px; font-weight: 400; color: var(--green); line-height: 1; margin-bottom: 4px; }
.pkg-price-note { font-size: 11px; color: var(--text-light); font-weight: 300; margin-bottom: 24px; display: block; }
.pkg-divider { border: none; border-top: 1px solid var(--beige-deep); margin-bottom: 20px; }
.pkg-features { margin-bottom: 28px; }
.pkg-features li { font-size: 15px; color: var(--green); font-weight: 300; padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; border-bottom: 1px solid var(--beige-mid); }
.pkg-features li:last-child { border-bottom: none; }
.pkg-check { color: var(--green-line); flex-shrink: 0; margin-top: 2px; }
.pkg-btn {
    display: block; text-align: center;
    background: var(--beige-mid); color: var(--text-dark);
    font-size: 12px; padding: 13px 20px; text-decoration: none;
    border-radius: var(--radius-md); letter-spacing: .3px;
    border: 1px solid var(--beige-dark); transition: all .2s;
    font-weight: 500;
}
.pkg-btn:hover { background: var(--beige-deep); }
.pkg-btn--featured { background: var(--green-btn); color: var(--white); border-color: var(--green-btn); }
.pkg-btn--featured:hover { background: var(--green-hover); border-color: var(--green-hover); }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.how-it-works { padding: 96px var(--gutter); background: var(--beige-mid); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 920px; margin: 48px auto 0; }
.how-step {
    background: var(--white); border: 1px solid var(--beige-deep);
    padding: 44px 32px; border-radius: var(--radius-lg);
    transition: box-shadow .2s;
}
.how-step:hover { box-shadow: var(--shadow-card); }
.how-step-num {
    font-family: var(--font-serif); font-size: 48px; font-weight: 400;
    color: var(--beige-dark); line-height: 1; margin-bottom: 20px;
}
.how-step-title { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--text-dark); margin-bottom: 10px; }
.how-step-body { font-size: 15px; line-height: 1.85; color: var(--green); font-weight: 300; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-section { padding: 88px var(--gutter); background: var(--beige); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--beige-deep); }
.faq-q {
    width: 100%; background: none; border: none; text-align: left;
    padding: 20px 0; font-family: var(--font-serif);
    font-size: 18px; font-weight: 400; color: var(--text-dark);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    cursor: pointer; line-height: 1.4; transition: color .2s;
}
.faq-q:hover { color: var(--green); }
/* Green + symbol */
.faq-arrow { color: var(--green-line); font-size: 20px; flex-shrink: 0; transition: transform .25s; }
.faq-item.is-open .faq-arrow { transform: rotate(45deg); }
.faq-a { font-size: 15px; line-height: 1.9; color: var(--green); font-weight: 300; padding: 0 0 20px; }
.faq-a[hidden] { display: none; }

/* ── CTA / CONTACT ────────────────────────────────────────────────────────── */
.cta-section {
    padding: 88px var(--gutter);
    background: var(--beige-mid); text-align: center;
    max-width: 700px; margin: 0 auto;
}
/* Green circle accent */
.cta-circle {
    width: 140px; height: 140px;
    margin: 0 auto 28px;
    display: flex; align-items: center; justify-content: center;
}
/* Logo mark inside CTA circle */
.cta-circle img { width: 140px; height: 140px; object-fit: contain; }
.cta-heading {
    font-family: var(--font-serif); font-size: clamp(34px, 4.5vw, 44px);
    font-weight: 400; color: var(--text-dark); line-height: 1.15; margin-bottom: 18px;
}
.cta-heading em { font-style: italic; color: var(--green); }
.cta-sub { font-size: 16px; color: var(--green); font-weight: 300; line-height: 1.8; margin-bottom: 36px; }
.cta-note { font-size: 12px; color: var(--text-light); font-weight: 300; margin-top: 14px; letter-spacing: .3px; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--text-dark); padding: 44px var(--gutter) 24px; }
.footer-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
    padding-bottom: 24px; border-bottom: 1px solid rgba(245,239,230,.08);
}
.footer-logo { display: flex; align-items: center; }
.footer-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: .85;
    transition: opacity .2s;
    filter: brightness(0) invert(1);
}
.footer-center { text-align: center; font-size: 12px; color: rgba(245,239,230,.4); font-weight: 300; line-height: 1.7; }
.footer-center a { color: rgba(245,239,230,.5); text-decoration: none; }
.footer-center a:hover { color: var(--beige); }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; }
.footer-links a { font-size: 11px; color: rgba(245,239,230,.3); text-decoration: none; letter-spacing: .3px; }
.footer-links a:hover { color: rgba(245,239,230,.7); }

/* ── GrL'Ca credit strip ──────────────────────────────────────────────────── */
.footer-credit { padding-top: 18px; text-align: center; }
.footer-credit-text { font-size: 11px; color: rgba(245,239,230,.25); font-weight: 300; font-family: var(--font-body); letter-spacing: .3px; }
.footer-credit-link { color: rgba(245,239,230,.4); text-decoration: none; font-weight: 400; transition: color .2s; }
.footer-credit-link:hover { color: rgba(245,239,230,.8); }
.footer-cookie-link { display: block; text-align: center; margin-top: 8px; font-size: 10px; color: rgba(245,239,230,.18); text-decoration: none; letter-spacing: .3px; transition: color .2s; }
.footer-cookie-link:hover { color: rgba(245,239,230,.5); }

/* ── PAGE CONTENT (static pages) ─────────────────────────────────────────── */
.page-content { max-width: 820px; margin: 0 auto; padding: 80px var(--gutter); }
.page-title { font-family: var(--font-serif); font-size: 40px; font-weight: 400; margin-bottom: 32px; color: var(--text-dark); }
.entry-content p { margin-bottom: 16px; line-height: 1.85; color: var(--green); }
.entry-content h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 400; margin: 32px 0 12px; color: var(--text-dark); }

/* ── GLE EDITOR HIGHLIGHTS ────────────────────────────────────────────────── */
body.gle-editing [data-gle]:not([data-gle-type="image"]) {
    outline: 1px dashed rgba(30,64,40,.3); outline-offset: 2px; border-radius: 2px; cursor: text;
}
body.gle-editing [data-gle]:not([data-gle-type="image"]):hover,
body.gle-editing [data-gle]:not([data-gle-type="image"]):focus {
    outline: 2px solid var(--green-line); outline-offset: 3px; background: rgba(30,64,40,.04);
}
body.gle-editing [data-gle-type="image"],
body.gle-editing [data-gle-bg] { cursor: pointer; position: relative; }
body.gle-editing [data-gle-type="image"]::after,
body.gle-editing .gle-bg-zone::after {
    content: '📷 Click to change'; position: absolute; inset: 0;
    background: rgba(30,64,40,.25); display: flex; align-items: center; justify-content: center;
    color: white; font-size: 13px; font-weight: 500; font-family: var(--font-body);
    border: 2px dashed rgba(255,255,255,.6); border-radius: 4px;
    opacity: 0; transition: opacity .2s; pointer-events: none;
}
body.gle-editing [data-gle-type="image"]:hover::after,
body.gle-editing .gle-bg-zone:hover::after { opacity: 1; }

/* ══════════════════════════════════════════════════════════════════════════
   INNER PAGE STYLES
   ══════════════════════════════════════════════════════════════════════════ */
.inner-hero { background: var(--beige-mid); padding: 80px var(--gutter) 72px; border-bottom: 1px solid var(--beige-deep); }
.inner-hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; }
.inner-hero-title { font-family: var(--font-serif); font-size: clamp(34px, 5vw, 52px); font-weight: 400; line-height: 1.1; color: var(--text-dark); margin-bottom: 16px; }
.inner-hero-title em { font-style: italic; color: var(--green); }
.inner-hero-sub { font-size: 17px; line-height: 1.8; color: var(--green); font-weight: 300; max-width: 520px; }

/* About page */
.about-page-intro { padding: 96px var(--gutter); background: var(--beige); }
.about-page-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.portrait-img--tall { height: 560px; }
.about-page-h2 { font-family: var(--font-serif); font-size: clamp(24px, 2.8vw, 34px); font-weight: 400; color: var(--text-dark); line-height: 1.2; margin-bottom: 20px; }
.about-page-body { font-size: 15px; line-height: 1.95; color: var(--green); font-weight: 300; margin-bottom: 14px; }
.about-page-body p { margin-bottom: 0; }

/* Qualifications */
.qualifications { padding: 88px var(--gutter); background: var(--beige-mid); }
.qual-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.qual-heading { font-family: var(--font-serif); font-size: clamp(24px, 2.8vw, 34px); font-weight: 400; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.qual-heading em { font-style: italic; color: var(--green); }
.qual-body { font-size: 15px; line-height: 1.85; color: var(--green); font-weight: 300; }
.qual-cards { display: flex; flex-direction: column; gap: 10px; }
.qual-card { background: var(--white); border: 1px solid var(--beige-deep); padding: 22px 26px; display: flex; gap: 20px; align-items: flex-start; border-radius: var(--radius-sm); border-left: 3px solid var(--green-line); }
.qual-card-num { font-family: var(--font-serif); font-size: 26px; font-weight: 400; color: var(--beige-dark); line-height: 1; flex-shrink: 0; width: 32px; }
.qual-card-title { font-family: var(--font-serif); font-size: 17px; font-weight: 400; color: var(--text-dark); margin-bottom: 4px; }
.qual-card-desc { font-size: 15px; line-height: 1.7; color: var(--green); font-weight: 300; }

/* Approach */
.approach { padding: 88px var(--gutter); background: var(--beige); }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--max-w); margin: 48px auto 0; }
.approach-card { background: var(--white); border: 1px solid var(--beige-deep); border-radius: var(--radius-md); padding: 30px 24px; }
.approach-num { font-family: var(--font-serif); font-size: 36px; font-weight: 400; color: var(--beige-dark); line-height: 1; margin-bottom: 14px; display: block; }
.approach-title { font-family: var(--font-serif); font-size: 17px; font-weight: 400; color: var(--text-dark); margin-bottom: 8px; }
.approach-desc { font-size: 15px; line-height: 1.75; color: var(--green); font-weight: 300; }

/* Services detail */
.service-detail { padding: 96px var(--gutter); background: var(--beige); }
.service-detail--reversed { background: var(--beige-mid); }
.service-detail-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.service-detail--reversed .service-detail-inner { direction: rtl; }
.service-detail--reversed .service-detail-text, .service-detail--reversed .service-detail-image { direction: ltr; }
.service-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 20px; background: linear-gradient(150deg, var(--beige-deep) 0%, var(--beige-dark) 100%); }
.service-detail-h2 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 36px); font-weight: 400; color: var(--text-dark); line-height: 1.15; margin: 16px 0 20px; }
.service-detail-h2 em { font-style: italic; color: var(--green); }
.service-detail-body { font-size: 15px; line-height: 1.95; color: var(--green); font-weight: 300; margin-bottom: 14px; }
.service-detail-body p { margin-bottom: 10px; }
.for-whom { margin: 24px 0; }
.for-whom-title { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--text-dark); margin-bottom: 12px; }
.for-whom-list li { font-size: 15px; color: var(--green); font-weight: 300; padding: 7px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; border-bottom: 1px solid var(--beige-deep); }
.for-whom-list li::before { content: '—'; color: var(--green-line); flex-shrink: 0; }
.course-details-box { background: var(--green-light); border: 1px solid rgba(30,64,40,.15); border-radius: var(--radius-md); padding: 24px 28px; margin: 24px 0 28px; }
.course-detail-item { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(30,64,40,.08); }
.course-detail-item:last-child { border-bottom: none; }
.course-detail-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--green); font-weight: 500; min-width: 100px; padding-top: 1px; }
.course-detail-val { font-size: 15px; color: var(--text-dark); font-weight: 300; line-height: 1.5; }
.section-divider { height: 1px; background: var(--beige-deep); max-width: var(--max-w); margin: 0 auto; }

/* FAQ page */
.faq-section--page { padding-top: 64px; }
.faq-list--large { max-width: 820px; }
.faq-list--large .faq-q { font-size: 20px; padding: 22px 0; }
.faq-list--large .faq-a { font-size: 15px; }

/* Contact page */
.contact-section { padding: 80px var(--gutter); background: var(--beige); }
.contact-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info-heading { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--text-dark); margin-bottom: 16px; }
.contact-info-body { font-size: 15px; line-height: 1.9; color: var(--green); font-weight: 300; margin-bottom: 32px; }
.contact-details { list-style: none; margin-bottom: 32px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--beige-deep); }
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-icon { font-size: 17px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.contact-detail-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); font-weight: 500; display: block; margin-bottom: 3px; }
.contact-detail-val { font-size: 15px; color: var(--text-dark); font-weight: 400; text-decoration: none; display: block; }
.contact-detail-val:hover { color: var(--green); }
.contact-note { background: var(--green-light); border-radius: var(--radius-md); padding: 16px 20px; font-size: 14px; color: var(--green); font-weight: 300; line-height: 1.6; border-left: 3px solid var(--green-line); }
.contact-note strong { color: var(--text-dark); font-weight: 500; }
.contact-form-heading { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--text-dark); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); font-weight: 500; }
.form-input, .form-textarea {
    font-family: var(--font-body); font-size: 15px; font-weight: 300; color: var(--text-dark);
    background: var(--white); border: 1px solid var(--beige-dark); border-radius: var(--radius-sm);
    padding: 12px 16px; transition: border-color .2s; outline: none; resize: vertical;
}
.form-input:focus, .form-textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,64,40,.07); }
.form-row--privacy { flex-direction: row; align-items: flex-start; gap: 12px; }
.form-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--green); font-weight: 300; line-height: 1.5; cursor: pointer; }
.form-checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--green); width: 16px; height: 16px; }
.form-checkbox-label a { color: var(--green); }
.form-submit { align-self: flex-start; }
.form-note { font-size: 12px; color: var(--text-light); font-weight: 300; margin-top: 4px; }
/* CF7 overrides */
.wpcf7-form .wpcf7-text, .wpcf7-form .wpcf7-textarea, .wpcf7-form .wpcf7-email { width: 100%; font-family: var(--font-body); font-size: 15px; font-weight: 300; color: var(--text-dark); background: var(--white); border: 1px solid var(--beige-dark); border-radius: var(--radius-sm); padding: 12px 16px; transition: border-color .2s; outline: none; }
.wpcf7-form .wpcf7-text:focus, .wpcf7-form .wpcf7-textarea:focus, .wpcf7-form .wpcf7-email:focus { border-color: var(--green); }
.wpcf7-form .wpcf7-submit { background: var(--green-btn) !important; color: var(--white) !important; font-family: var(--font-body); font-size: 13px; font-weight: 500; padding: 14px 32px; border: none; border-radius: 28px; cursor: pointer; transition: background .2s; }
.wpcf7-form .wpcf7-submit:hover { background: var(--green-hover) !important; }

/* ══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════════════════════════════════ */
.legal-page { background: var(--beige); padding: 72px var(--gutter) 96px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-title { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 42px); font-weight: 400; color: var(--text-dark); margin-bottom: 8px; line-height: 1.1; }
.legal-updated { font-size: 12px; color: var(--text-light); font-weight: 300; margin-bottom: 56px; letter-spacing: .3px; }
.legal-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--beige-deep); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--text-dark); margin-bottom: 16px; line-height: 1.3; }
.legal-section h3 { font-size: 15px; font-weight: 500; color: var(--text-dark); margin: 20px 0 8px; letter-spacing: .2px; }
.legal-section p { font-size: 15px; line-height: 1.85; color: var(--green); font-weight: 300; margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: disc; padding-left: 24px; margin-bottom: 12px; }
.legal-section ul li { font-size: 15px; line-height: 1.8; color: var(--green); font-weight: 300; padding: 2px 0; }
.legal-section address { font-style: normal; font-size: 15px; line-height: 1.9; color: var(--green); font-weight: 300; }
.legal-section a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-section a:hover { color: var(--green-hover); }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.legal-table th { background: var(--beige-mid); padding: 10px 14px; text-align: left; font-weight: 500; color: var(--text-dark); border: 1px solid var(--beige-deep); font-size: 12px; letter-spacing: .3px; }
.legal-table td { padding: 10px 14px; color: var(--green); font-weight: 300; border: 1px solid var(--beige-deep); vertical-align: top; line-height: 1.6; }
.legal-table tr:nth-child(even) td { background: rgba(224,213,196,.25); }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root { --gutter: 40px; }
    .nav-inner { gap: 16px; }
    .nav-menu { gap: 16px; }
    .nav-cta { padding: 9px 16px; font-size: 11px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: 360px; }
    .hero-stat-card { top: 20px; left: 20px; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-page-inner, .qual-inner, .service-detail-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .service-detail--reversed .service-detail-inner { direction: ltr; }
    .cred-badge { position: static; margin-top: 16px; display: inline-block; }
    .portrait-wrap { max-width: 440px; }
    .portrait-img { height: 380px; }
    .portrait-img--tall { height: 380px; }
    .who-grid { grid-template-columns: 1fr; gap: 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
    .footer-links { justify-content: center; }
    .trust-bar { overflow-x: auto; justify-content: flex-start; flex-wrap: nowrap; }
    .trust-item { flex-shrink: 0; padding: 16px 24px; }
    .mission-inner { grid-template-columns: 1fr; gap: 24px; }
    .mission-rule { display: none; }
}
@media (max-width: 768px) {
    :root { --gutter: 24px; }
    .primary-nav { display: none; }
    .primary-nav.is-open { display: block; }
    .nav-menu { flex-direction: column; gap: 0; padding: 16px 0; }
    .nav-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--beige-deep); }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .site-header .nav-inner { flex-wrap: wrap; height: auto; padding: 14px var(--gutter); }
    .primary-nav { width: 100%; order: 3; background: var(--white); border-top: 1px solid var(--beige-deep); margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter); }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .service-img { height: 300px; }
}
@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 34px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HOMEPAGE TEASERS
   ══════════════════════════════════════════════════════════════════════════ */

/* Shared teaser layout */
.hp-teaser { padding: 88px var(--gutter); }
.hp-teaser--alt { background: var(--beige-mid); }
.hp-teaser-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.hp-teaser-inner--centered {
    display: block;
}

/* About teaser portrait */
.hp-portrait {
    width: 100%;
    height: 420px;
    max-width: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 20px;
    display: block;
}

.hp-teaser-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.hp-teaser--process {
    background: var(--text-dark);
    padding: 88px var(--gutter);
}
.hp-teaser--process .how-step {
    background: rgba(245,239,230,.06);
    border-color: rgba(245,239,230,.1);
}
.hp-teaser--process .how-step-num { color: rgba(245,239,230,.2); }
.hp-teaser--process .how-step-title { color: rgba(245,239,230,.9); }
.hp-teaser--process .how-step-body { color: rgba(245,239,230,.55); }

/* btn-white — for use on dark backgrounds */
.btn-white {
    display: inline-block;
    background: transparent;
    color: var(--beige);
    font-size: 13px; font-weight: 500;
    padding: 13px 30px;
    border-radius: 28px;
    text-decoration: none;
    letter-spacing: .3px;
    border: 2px solid rgba(245,239,230,.5);
    transition: all .2s;
}
.btn-white:hover {
    background: var(--beige);
    color: var(--text-dark);
    border-color: var(--beige);
}

/* Contact teaser */
.hp-teaser--contact {
    background: var(--beige-mid);
    text-align: center;
}
.hp-teaser--contact .cta-section {
    padding: 0;
    background: none;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════════════
   PROCESS PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.process-intro { padding: 80px var(--gutter); background: var(--beige); }
.process-intro-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 72px;
    align-items: start;
}
.process-lead p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--green);
    font-weight: 300;
    margin-bottom: 16px;
}
.process-lead p:last-child { margin-bottom: 0; }
.process-portrait-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 20px;
}

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — approach section
   ══════════════════════════════════════════════════════════════════════════ */
.about-approach { padding: 88px var(--gutter); background: var(--beige-mid); }
.about-approach-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: start;
}
.about-approach-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 20px;
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.contact-portrait-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-md);
}

/* Form notice (success / error) */
.form-notice {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.5;
}
.form-notice--ok {
    background: #EBF5E8;
    color: #2D5438;
    border: 1px solid #C2DDB8;
}
.form-notice--err {
    background: #FDECEA;
    color: #7A2020;
    border: 1px solid #F5C6C0;
}
.form-notice a { color: inherit; font-weight: 500; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — homepage teasers
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hp-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
    .hp-portrait { height: 380px; }
    .about-approach-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-approach-img { height: 340px; }
    .process-intro-inner { grid-template-columns: 1fr; gap: 48px; }
    .process-portrait-img { height: 300px; max-width: 420px; }
}
@media (max-width: 768px) {
    .hp-teaser { padding: 64px var(--gutter); }
    .hp-portrait { height: 300px; }
}

/* For-whom intro paragraph */
.for-whom-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--green);
    font-weight: 300;
    margin-bottom: 16px;
    font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   Classy, fluid — nothing bounces, nothing spins.
   Elements fade up gently as they enter the viewport.
   JS adds .is-visible when IntersectionObserver fires.
   prefers-reduced-motion: all animations disabled.
   ══════════════════════════════════════════════════════════════════════════ */

/* Base hidden state — applied by JS after page load so no FOUC */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .7s cubic-bezier(.22,.68,0,1.0),
        transform .7s cubic-bezier(.22,.68,0,1.0);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children — each sibling delayed slightly */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .6s cubic-bezier(.22,.68,0,1.0),
        transform .6s cubic-bezier(.22,.68,0,1.0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s;    opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s;  opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s;  opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s;  opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s;  opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s;  opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .48s;  opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .56s;  opacity:1; transform:translateY(0); }

/* Slide from left (portrait images) */
.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition:
        opacity .75s cubic-bezier(.22,.68,0,1.0),
        transform .75s cubic-bezier(.22,.68,0,1.0);
}
.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right (text blocks beside images) */
.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition:
        opacity .75s cubic-bezier(.22,.68,0,1.0),
        transform .75s cubic-bezier(.22,.68,0,1.0);
}
.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in — for logo/CTA circle */
.reveal-scale {
    opacity: 0;
    transform: scale(.88);
    transition:
        opacity .6s cubic-bezier(.22,.68,0,1.0),
        transform .6s cubic-bezier(.22,.68,0,1.0);
}
.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Hero text — faster, no delay (above fold) */
.hero-text .hero-welcome  { opacity:0; transform:translateY(14px); transition: opacity .55s .1s ease, transform .55s .1s ease; }
.hero-text .hero-title    { opacity:0; transform:translateY(16px); transition: opacity .6s  .22s ease, transform .6s .22s ease; }
.hero-text .hero-sub      { opacity:0; transform:translateY(14px); transition: opacity .6s  .38s ease, transform .6s .38s ease; }
.hero-text .hero-actions  { opacity:0; transform:translateY(12px); transition: opacity .55s .52s ease, transform .55s .52s ease; }
.hero-loaded .hero-text .hero-welcome,
.hero-loaded .hero-text .hero-title,
.hero-loaded .hero-text .hero-sub,
.hero-loaded .hero-text .hero-actions { opacity:1; transform:translateY(0); }

/* Smooth hover lift on cards */
.svc-card,
.benefit-item,
.how-step,
.pkg-card,
.qual-card,
.who-card,
.faq-item {
    transition:
        box-shadow .28s ease,
        transform .28s ease,
        border-color .28s ease;
}
.svc-card:hover,
.benefit-item:hover,
.how-step:hover,
.who-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(42,31,20,.10); }
.pkg-card:hover  { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(42,31,20,.12); }
.qual-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(42,31,20,.09); }

/* Nav link underline glide */
.nav-menu a::after { transition: width .3s cubic-bezier(.4,0,.2,1); }

/* Button press feel */
.btn-primary:active,
.btn-secondary:active,
.nav-cta:active { transform: scale(.97); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > *, .reveal-left, .reveal-right, .reveal-scale,
    .hero-text .hero-welcome, .hero-text .hero-title,
    .hero-text .hero-sub, .hero-text .hero-actions {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   NEWSLETTER SIGNUP — plugin overrides + section layouts
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Plugin element overrides — match theme palette exactly ────────────── */
.grlca-nl-signup { max-width: 100%; margin: 0; }
.grlca-nl-signup__inner {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.grlca-nl-signup__title { display: none; } /* heading handled by theme */
.grlca-nl-signup__form { gap: 10px; }
.grlca-nl-signup__email,
.grlca-nl-signup__name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
}
.grlca-nl-signup__email:focus,
.grlca-nl-signup__name:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(30,64,40,.07);
}
.grlca-nl-signup__email::placeholder,
.grlca-nl-signup__name::placeholder { color: var(--text-light); }
.grlca-nl-signup__btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    background: var(--green-btn);
    color: var(--white);
    border: none;
    border-radius: 28px;
    padding: 14px 32px;
    cursor: pointer;
    letter-spacing: .3px;
    transition: background .2s, transform .15s;
    width: 100%;
}
.grlca-nl-signup__btn:hover  { background: var(--green-hover); transform: translateY(-1px); }
.grlca-nl-signup__btn:active { transform: translateY(0); }
.grlca-nl-signup__msg {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
}
.grlca-nl-signup__msg--success { background: #EBF5E8; color: #2D5438; border: 1px solid #C4D9BF; }
.grlca-nl-signup__msg--error   { background: #FDECEA; color: #7A2020; border: 1px solid #F5C6C0; }
.grlca-nl-signup__msg--pending { background: #FEF8EC; color: #8A5A0A; border: 1px solid #F0DDA8; }

/* ── Banner variant — two-column layout ────────────────────────────────── */
.nl-banner {
    background: var(--beige-deep);
    padding: 80px var(--gutter);
    border-top: 1px solid var(--beige-dark);
    border-bottom: 1px solid var(--beige-dark);
}
.nl-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.nl-banner-heading {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 12px 0 16px;
}
.nl-banner-heading em { font-style: italic; color: var(--green); }
.nl-banner-sub {
    font-size: 15px;
    line-height: 1.85;
    color: var(--green);
    font-weight: 300;
}

/* ── Inline variant — centred card ─────────────────────────────────────── */
.nl-inline {
    background: var(--beige-mid);
    padding: 80px var(--gutter);
}
.nl-inline-inner { text-align: center; }
.nl-inline-heading {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 12px 0 16px;
}
.nl-inline-heading em { font-style: italic; color: var(--green); }
.nl-inline-sub {
    font-size: 16px;
    line-height: 1.85;
    color: var(--green);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 36px;
}
.nl-inline-form {
    max-width: 420px;
    margin: 0 auto;
}
/* Inline form: side-by-side on wider screens */
@media (min-width: 600px) {
    .nl-inline .grlca-nl-signup__form {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .nl-inline .grlca-nl-signup__name  { flex: 1 1 180px; }
    .nl-inline .grlca-nl-signup__email { flex: 1 1 180px; }
    .nl-inline .grlca-nl-signup__btn   { width: auto; flex-shrink: 0; }
}

/* ── Minimal variant ─────────────────────────────────────────────────────── */
.nl-minimal { padding: 32px 0 0; }
.nl-minimal-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nl-banner-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.booking-section {
    padding: 60px 0 100px;
    background: var(--beige);
}

.booking-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
}

/* ── Info strip ─────────────────────────────────────────────────────────── */
.booking-intro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--beige-deep);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.booking-intro-item {
    background: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.booking-intro-icon {
    font-size: 18px;
    color: var(--green);
    margin-top: 2px;
    flex-shrink: 0;
}

.booking-intro-item strong {
    display: block;
    font-size: 11px;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.booking-intro-item span {
    font-size: 14px;
    color: var(--green);
    font-weight: 300;
    line-height: 1.4;
}

/* ── Calendar container ─────────────────────────────────────────────────── */
.booking-calendar-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 24px rgba(30,64,40,.06);
}

/* ── Calendly embed ─────────────────────────────────────────────────────── */
.calendly-inline-widget {
    border-radius: 12px;
    overflow: hidden;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .booking-intro {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-calendar-wrap {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .booking-intro {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR — sits inside hero-text, below the buttons
   ═══════════════════════════════════════════════════════════════════════════ */

.ze-announcement {
    margin-top: 48px;
    padding: 24px 28px;
    border: 1px solid var(--green-line);
    border-radius: 12px;
    background: transparent;
}

.ze-announcement-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--green);
    line-height: 1.25;
    margin: 0 0 6px;
    letter-spacing: -.2px;
}

.ze-announcement-date {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--green-line);
    margin: 0 0 10px;
}

.ze-announcement-body {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--green);
    line-height: 1.7;
    margin: 0;
    max-width: 380px;
}

.ze-announcement-link {
    text-decoration: none;
    display: block;
}

.ze-announcement-link:hover .ze-announcement-title {
    text-decoration: underline;
    text-decoration-color: var(--green-line);
}

.ze-announcement-link:hover .ze-announcement-body {
    color: var(--green-btn);
}
