/* ============================================================
   Keypers — Stylesheet
   Sections: tokens, base, buttons, header, hero, pain, band,
   services, why, testimonials, faq, contact, footer, responsive
   ============================================================ */

:root {
    --forest: #1C3A2A;
    --forest-dark: #142a1e;
    --olive: #6B7F5E;
    --olive-light: #8a9d7d;
    --cream: #F5F0E8;
    --cream-dark: #ebe3d6;
    --white: #ffffff;
    --text: #20271f;
    --text-muted: #4d5848;
    --shadow-sm: 0 4px 14px rgba(28, 58, 42, 0.08);
    --shadow-md: 0 12px 34px rgba(28, 58, 42, 0.14);
    --radius: 22px;
    --radius-sm: 14px;
    --maxw: 1180px;
    --header-h: 76px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

  body {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, .brand-name {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.3px;
  }

  a { text-decoration: none; color: inherit; }
  img, svg { display: block; }

  .container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
  }

  section { padding: 92px 0; }

  .section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
  /* eyebrow = key-tag: a small fob with a punched hole (brand signature) */
  .section-head .eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--olive);
    background: var(--white);
    padding: 8px 18px 8px 15px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
  }
  .section-head .eyebrow::before {
    content: '';
    width: 11px; height: 11px;
    border-radius: 50%;
    border: 2px solid var(--olive);
    background: var(--cream);
    flex-shrink: 0;
  }
  .section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--forest); }
  .section-head p { margin-top: 14px; color: var(--text-muted); font-size: 1.08rem; }

  /* ---------- Buttons ---------- */
  .btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
    min-height: 52px;
    white-space: nowrap;
  }
  /* elegant light sweep on hover */
  .btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(115deg, transparent 22%, rgba(255,255,255,0.28) 50%, transparent 78%);
    transform: translateX(-120%) skewX(-12deg);
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
  }
  .btn:hover::after { transform: translateX(120%) skewX(-12deg); }
  .btn:active { transform: translateY(0) scale(.97); }
  .btn:focus-visible { outline: 3px solid rgba(107,127,94,0.65); outline-offset: 3px; }
  .btn svg { width: 19px; height: 19px; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
  /* gentle arrow / icon nudge */
  .btn:hover svg { transform: translateX(4px); }
  .btn-primary { background: var(--forest); color: var(--cream); box-shadow: var(--shadow-sm); }
  .btn-primary:hover { background: var(--forest-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .btn-secondary { background: transparent; color: var(--forest); border-color: var(--forest); }
  .btn-secondary:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
  .btn-cream { background: var(--cream); color: var(--forest); }
  .btn-cream:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .hero-actions .btn-cream { background: #EBE3D6; color: #1C3A2A; }
  .hero-actions .btn-cream:hover { background: #f5f0e8; color: #1C3A2A; }
  .btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(245,240,232,.55); }
  .btn-ghost-light:hover { background: rgba(245,240,232,.14); border-color: var(--cream); transform: translateY(-2px); }

  /* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 50;
    background: rgba(245, 240, 232, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s ease, border-color .3s ease, background-color .3s ease;
  }
  header.scrolled { box-shadow: 0 6px 20px rgba(28,58,42,.10); border-color: var(--cream-dark); }
  .nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .brand { display: flex; align-items: center; gap: 11px; }
  .brand-logo { height: 58px; width: auto; display: block; transition: transform .2s ease; }
  .brand:hover .brand-logo { transform: scale(1.04); }
  .brand-mark {
    width: 40px; height: 40px;
    background: var(--olive);
    border-radius: 12px;
    display: grid; place-items: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .brand-mark svg { width: 22px; height: 22px; color: var(--cream); }
  .brand-name { font-size: 1.4rem; color: var(--cream); }

  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a {
    font-weight: 600;
    color: var(--text);
    font-size: 0.98rem;
    position: relative;
    padding: 4px 0;
    transition: color .2s ease;
  }
  .nav-links a::after {
    content: '';
    position: absolute; left: 0; bottom: -3px;
    width: 0; height: 2px; border-radius: 2px;
    background: var(--olive);
    transition: width .25s ease;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-links a:hover::after { width: 100%; }

  .nav-actions { display: flex; align-items: center; gap: 14px; }

  .lang-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 999px;
    padding: 4px;
    box-shadow: var(--shadow-sm);
  }
  .lang-toggle button {
    border: none;
    background: transparent;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 7px 13px;
    border-radius: 999px;
    cursor: pointer;
    min-height: 36px;
    transition: background-color .2s ease, color .2s ease;
  }
  .lang-toggle button.active { background: var(--forest); color: var(--cream); }
  .lang-toggle button:not(.active):hover { color: var(--forest); }

  .nav-cta { display: inline-flex; }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 12px;
    cursor: pointer;
    padding: 0 12px;
    box-shadow: var(--shadow-sm);
  }
  .hamburger span {
    height: 2.5px; width: 100%;
    background: var(--forest);
    border-radius: 3px;
    transition: transform .3s ease, opacity .2s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding-top: calc(var(--header-h) + 90px);
    padding-bottom: 104px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-image:
      linear-gradient(110deg, rgba(20,42,30,0.88) 0%, rgba(20,42,30,0.66) 48%, rgba(28,58,42,0.42) 100%),
      url('../assets/images/hero-med.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .hero-inner { max-width: 720px; }
  .hero-text h1, .hero-text .hero-sub { text-shadow: 0 2px 18px rgba(12,24,16,0.35); }

  /* hero glass proof card */
  .hero-proof {
    position: absolute;
    right: 48px; bottom: 56px;
    width: 322px;
    background: rgba(245,240,232,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 22px 24px;
    z-index: 3;
  }
  .hero-proof-top { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
  .hp-key { width: 44px; height: 44px; border-radius: 13px; background: var(--forest); display: grid; place-items: center; flex-shrink: 0; }
  .hp-key svg { width: 22px; height: 22px; color: var(--cream); }
  .hp-meta strong { display: block; font-family: 'Open Sans', Georgia, serif; font-weight: 600; font-size: 1.25rem; color: var(--forest); line-height: 1.1; }
  .hp-meta span { font-size: 0.78rem; color: var(--text-muted); }
  .hp-metric { margin-top: 16px; }
  .hp-metric-row { display: flex; justify-content: space-between; align-items: baseline; }
  .hp-metric-row span, .hp-split span { font-size: 0.82rem; color: var(--text-muted); }
  .hp-metric-row strong, .hp-split strong { font-family: 'Open Sans', Georgia, serif; font-weight: 600; font-size: 1.4rem; color: var(--forest); }
  .hp-bar { margin-top: 7px; height: 7px; border-radius: 99px; background: rgba(28,58,42,0.13); overflow: hidden; }
  .hp-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--olive), var(--forest)); }
  .hp-split { display: flex; gap: 18px; justify-content: space-between; }
  .hp-split > div { display: flex; flex-direction: column; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--forest);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
  }
  .hero-badge .dot { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--olive); background: var(--white); }
  .hero-kicker {
    color: #c4d3b3;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-shadow: 0 2px 14px rgba(12,24,16,0.4);
  }
  .hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); color: #6B7F5E; font-weight: 700; }
  .hero h1 .accent { color: #6B7F5E; font-weight: 500; }
  .hero-sub { margin-top: 22px; font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 800; line-height: 1.4; color: #EBE3D6; max-width: 660px; }
  .hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
  .hero-stats { margin-top: 48px; display: flex; gap: 36px; flex-wrap: wrap; }
  .hero-stat .num { font-family: 'Open Sans', system-ui, sans-serif; font-size: 1.95rem; font-weight: 700; color: #ebe3d6; }
  .hero-stat .lbl { font-size: 0.9rem; color: #ebe3d6; font-weight: 600; }

  .hero-visual { position: relative; }
  .hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
    aspect-ratio: 4 / 3.4;
  }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 26px;
    position: relative;
    z-index: 2;
  }
  .hero-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
  .hero-card-top .avatar {
    width: 54px; height: 54px; border-radius: 16px;
    background: linear-gradient(140deg, var(--forest), var(--olive));
    display: grid; place-items: center; flex-shrink: 0;
  }
  .hero-card-top .avatar svg { width: 26px; height: 26px; color: var(--cream); }
  .hero-card-top .meta strong { display: block; font-family: 'Open Sans', sans-serif; color: var(--forest); font-size: 1.1rem; }
  .hero-card-top .meta span { font-size: 0.85rem; color: var(--text-muted); }
  .hero-rows { display: flex; flex-direction: column; gap: 14px; }
  .hero-row {
    display: flex; align-items: center; gap: 13px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
  }
  .hero-row .ic {
    width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
    background: rgba(107,127,94,.18);
    display: grid; place-items: center;
  }
  .hero-row .ic svg { width: 20px; height: 20px; color: var(--forest); }
  .hero-row .txt strong { display: block; font-size: 0.95rem; color: var(--text); font-weight: 700; }
  .hero-row .txt span { font-size: 0.82rem; color: var(--text-muted); }
  .hero-row .val { margin-left: auto; font-family: 'Open Sans', sans-serif; color: var(--olive); font-size: 1.05rem; }
  .hero-float {
    position: absolute;
    bottom: -26px; left: -26px;
    background: var(--forest);
    color: var(--cream);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex; align-items: center; gap: 13px;
  }
  .hero-float svg { width: 26px; height: 26px; color: var(--olive-light); flex-shrink: 0; }
  .hero-float .fnum { font-family: 'Open Sans', sans-serif; font-size: 1.35rem; line-height: 1; }
  .hero-float .flbl { font-size: 0.78rem; opacity: .85; }

  /* ---------- Lifestyle band ---------- */
  .band {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image:
      linear-gradient(rgba(20,42,30,0.66), rgba(20,42,30,0.58)),
      url('../assets/images/band.jpg');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
  }
  .band-inner { max-width: 760px; }
  .band-kicker {
    color: #6B7F5E;
    font-weight: 800;
    font-size: 0.86rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .band-line {
    color: var(--cream);
    font-size: clamp(1.8rem, 3.6vw, 2.9rem);
    line-height: 1.25;
    text-shadow: 0 2px 20px rgba(12,24,16,0.35);
  }

  /* ---------- Services ---------- */
  #services { background: var(--white); }
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .service-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 32px 26px;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--cream-dark); }
  .service-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: var(--forest);
    display: grid; place-items: center;
    margin-bottom: 22px;
    transition: background-color .25s ease;
  }
  .service-card:hover .service-icon { background: var(--olive); }
  .service-icon svg { width: 28px; height: 28px; color: var(--cream); }
  .service-card h3 { font-size: 1.28rem; color: var(--forest); margin-bottom: 10px; }
  .service-card p { color: var(--text-muted); font-size: 0.98rem; white-space: pre-line; }

  /* ---------- Pain Points ---------- */
  #pain { background: var(--cream); }
  .pain-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
  .pain-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .pain-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(107,127,94,0.16);
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .pain-icon svg { width: 26px; height: 26px; color: var(--olive); }
  .pain-card p { color: var(--forest); font-size: 1.1rem; font-weight: 700; line-height: 1.5; white-space: pre-line; }
  .pain-answer {
    grid-area: answer;
    align-self: stretch;
    margin-top: 0;
    padding: 2px 0 2px 40px;
    border-left: 1px solid var(--cream-dark);
    border-radius: 0;
    background: none;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.55;
    white-space: pre-line;
  }
  .pa-label {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 5px;
    background: var(--olive);
    color: var(--cream);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px 4px 8px;
    border-radius: 999px;
    margin: 0 0 11px;
  }
  .pa-label::before {
    content: '';
    width: 11px; height: 11px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5F0E8' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .pain-cta {
    margin-top: 40px;
    background: linear-gradient(120deg, var(--forest) 0%, var(--olive) 130%);
    border-radius: var(--radius);
    padding: 42px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
  }
  .pain-cta-text { max-width: 720px; }
  .pain-cta-text h3 { color: var(--cream); font-size: 1.55rem; margin-bottom: 8px; }
  .pain-cta-text p { color: rgba(245,240,232,0.92); font-size: 1.04rem; white-space: pre-line; }
  .pain-cta-btn { flex-shrink: 0; }

  /* ---------- Why ---------- */
  #why { background: var(--cream); }
  .why-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 50px; align-items: center; }
  .why-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
  .why-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 5; }
  .why-content h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--forest); }
  .why-content .why-sub { color: var(--text-muted); margin-top: 12px; font-size: 1.08rem; }
  .why-list { margin-top: 30px; display: flex; flex-direction: column; gap: 24px; }
  .why-item { display: flex; gap: 16px; align-items: flex-start; }
  .why-ic {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 25%, var(--olive-light), var(--forest));
    color: var(--cream);
    display: grid; place-items: center;
  }
  .why-ic svg { width: 24px; height: 24px; }
  .why-item h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 4px; }
  .why-item p { color: var(--text); font-size: 1.06rem; line-height: 1.55; }
  .why-item { align-items: center; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .why-num {
    width: 70px; height: 70px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, var(--olive-light), var(--forest));
    color: var(--cream);
    display: grid; place-items: center;
  }
  .why-num svg { width: 32px; height: 32px; }
  .why-card h3 { font-size: 1.32rem; color: var(--forest); margin-bottom: 12px; }
  .why-card p { color: var(--text-muted); }

  /* ---------- Testimonials ---------- */
  #testimonials { background: var(--white); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .testi-stars { display: flex; gap: 3px; color: #C9A24A; }
  .testi-stars svg { width: 18px; height: 18px; }
  .testi-quote { font-style: italic; color: var(--text); font-size: 1.04rem; line-height: 1.6; flex-grow: 1; margin: 0; }
  .testi-author { display: flex; align-items: center; gap: 13px; }
  .testi-avatar {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    display: grid; place-items: center;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px;
  }
  .testi-author .meta strong { display: block; color: var(--forest); font-size: 1rem; font-weight: 700; }
  .testi-author .meta span { font-size: 0.85rem; color: var(--text-muted); }
  .testi-note { text-align: center; margin-top: 34px; font-size: 0.85rem; color: var(--text-muted); }

  /* ---------- Proof / Portfolio ---------- */
  #proof { background: var(--white); }
  .proof-platforms {
    display: flex; align-items: center; justify-content: center;
    gap: 14px 26px; flex-wrap: wrap;
    margin: 0 auto 50px;
  }
  .proof-platforms .pp-label {
    font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1.8px;
    font-weight: 700; color: var(--olive);
  }
  .proof-platforms .pp-names { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
  .proof-platforms .pp-names span {
    position: relative;
    font-family: 'Open Sans', Georgia, serif; font-weight: 600; font-size: 1.6rem; color: var(--forest);
  }
  .proof-platforms .pp-names span:not(:last-child)::after {
    content: '·'; position: absolute; right: -14px; color: var(--olive-light);
  }
  .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .gallery figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
  .gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
  .gallery figure:hover img { transform: scale(1.06); }
  .gallery figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 30px 18px 16px; color: var(--cream);
    font-weight: 600; font-size: 1rem;
    background: linear-gradient(transparent, rgba(20,42,30,0.85));
  }
  .proof-ig {
    margin-top: 40px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px 34px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 22px; flex-wrap: wrap;
  }
  .proof-ig-left { display: flex; align-items: center; gap: 16px; }
  .proof-ig-ic { width: 54px; height: 54px; border-radius: 16px; background: var(--forest); display: grid; place-items: center; flex-shrink: 0; }
  .proof-ig-ic svg { width: 26px; height: 26px; color: var(--cream); }
  .proof-ig-meta strong { display: block; font-family: 'Open Sans', Georgia, serif; font-weight: 600; font-size: 1.4rem; color: var(--forest); line-height: 1.1; }
  .proof-ig-meta span { font-size: 0.95rem; color: var(--text-muted); }

  /* ---------- FAQ ---------- */
  #faq { background: var(--white); }
  .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
  .faq-item {
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  .faq-item.active { border-color: var(--olive); box-shadow: var(--shadow-sm); }
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 22px 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.06rem;
    color: var(--forest);
    min-height: 56px;
  }
  .faq-q .chev {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--white);
    display: grid; place-items: center;
    transition: transform .3s ease, background-color .25s ease;
  }
  .faq-q .chev svg { width: 17px; height: 17px; color: var(--forest); }
  .faq-item.active .chev { transform: rotate(180deg); background: var(--olive); }
  .faq-item.active .chev svg { color: var(--cream); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .faq-a-inner { padding: 0 24px 22px; color: var(--text-muted); }

  /* ---------- Contact ---------- */
  #contact { background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
  .contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: var(--shadow-sm);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .field { margin-bottom: 20px; }
  .field label { display: block; font-weight: 700; font-size: 0.92rem; color: var(--forest); margin-bottom: 8px; }
  .field input, .field textarea {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  }
  .field textarea { resize: vertical; min-height: 130px; }
  .field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--olive);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(107,127,94,.18);
  }
  .contact-form .btn { width: 100%; margin-top: 4px; }
  .contact-form .btn:disabled { opacity: .65; cursor: not-allowed; }
  /* honeypot — visually hidden, off-screen */
  .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  /* form status message */
  .form-status { margin-top: 14px; font-size: 0.96rem; font-weight: 600; line-height: 1.5; min-height: 1.2em; }
  .form-status.success { color: var(--forest); }
  .form-status.error { color: #b3402e; }

  .contact-info { display: flex; flex-direction: column; gap: 16px; }
  .info-card {
    background: var(--forest);
    color: var(--cream);
    border-radius: var(--radius);
    padding: 32px;
  }
  .info-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
  .info-card > p { opacity: .82; font-size: 0.98rem; margin-bottom: 24px; }
  .info-list { display: flex; flex-direction: column; gap: 8px; }
  .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px;
    border-radius: var(--radius-sm);
    transition: background-color .2s ease;
  }
  .info-item:hover { background: rgba(245,240,232,.10); }
  .info-item .ic {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 13px;
    background: rgba(245,240,232,.12);
    display: grid; place-items: center;
  }
  .info-item .ic svg { width: 21px; height: 21px; color: var(--cream); }
  .info-item .data span { display: block; font-size: 0.78rem; opacity: .7; }
  .info-item .data strong { font-weight: 700; font-size: 1.02rem; word-break: break-word; }

  /* ---------- Footer ---------- */
  footer { background: var(--forest-dark); color: var(--cream); padding: 56px 0 28px; }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(245,240,232,.14);
  }
  .footer-brand .brand-name { color: var(--cream); }
  .footer-brand .brand-mark { background: var(--olive); }
  .footer-logo { height: 54px; width: auto; display: block; transition: transform .2s ease; }
  .footer-brand .brand:hover .footer-logo { transform: scale(1.04); }
  .footer-brand p { margin-top: 16px; opacity: .78; max-width: 320px; font-size: 0.96rem; }
  .footer-socials { display: flex; gap: 12px; margin-top: 22px; }
  .footer-socials a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(245,240,232,.10);
    display: grid; place-items: center;
    transition: background-color .2s ease, transform .2s ease;
  }
  .footer-socials a:hover { background: var(--olive); transform: translateY(-3px); }
  .footer-socials a svg { width: 20px; height: 20px; color: var(--cream); }
  .footer-col h4 { font-family: 'Open Sans', sans-serif; font-size: 1.05rem; margin-bottom: 16px; color: var(--cream); }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .footer-col ul a, .footer-col ul li { opacity: .8; font-size: 0.95rem; transition: opacity .2s ease, color .2s ease; }
  .footer-col ul a:hover { opacity: 1; color: var(--olive-light); }
  .footer-bottom {
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    opacity: .72;
    font-size: 0.88rem;
  }

  /* ---------- Mobile menu panel ---------- */
  .mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-md);
    z-index: 49;
    padding: 18px 24px 26px;
    display: none;
    flex-direction: column;
    gap: 6px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-weight: 700;
    color: var(--forest);
    padding: 14px 8px;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 1.05rem;
  }
  .mobile-menu .btn { margin-top: 14px; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1100px) {
    .hero-proof { display: none; }
  }
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 880px) {
    section { padding: 70px 0; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 460px; }
    .hero-sub { max-width: none; }
    .why-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .why-split { grid-template-columns: 1fr; gap: 30px; }
    .why-media { max-width: 460px; margin: 0 auto; }
    .why-media img { aspect-ratio: 3 / 2; }
    .pain-card { grid-template-columns: 1fr; grid-template-areas: "icon" "question" "answer"; padding: 26px; }
    .pain-card p { padding-right: 0; }
    .pain-answer { align-self: stretch; border-left: none; border-top: 1px solid var(--cream-dark); padding: 16px 0 2px; margin-top: 8px; }
    .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }

  @media (max-width: 560px) {
    .container { padding: 0 18px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .pain-cta { padding: 30px 26px; }
    .proof-ig { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 24px; }
    .contact-form { padding: 26px; }
    .info-card { padding: 26px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-float { left: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  }
