    /* ===========================================================
       Design tokens — sophisticated moss + gold editorial system
       =========================================================== */
    :root {
      --moss-950: #0E1F14;
      --moss-900: #14291B;
      --moss-800: #1D3826;
      --moss-700: #264B33;
      --moss-600: #356344;
      --moss-500: #4A7C5A;
      --moss-400: #6F9C7E;
      --moss-300: #95B89E;
      --moss-100: #D9E4DC;
      --avocado-600: #8AAE6A;
      --avocado-500: #B5D08F;
      --avocado-400: #C7DDA5;
      --avocado-300: #D6E5B7;
      --avocado-100: #E9F2D7;
      --cream-50:  #FBF8EE;
      --cream-100: #F4ECD6;
      --cream-200: #E8DDC0;
      --ink-950: #0D1310;
      --ink-900: #161D18;
      --ink-800: #232B25;
      --ink-700: #34403A;
      --ink-600: #525C55;
      --ink-400: #828B85;
      --line-100: #EFE8D2;
      --line-200: #E0D8BD;
      --line-300: #CFC6A6;
      --gold-600: #B8923A;
      --gold-500: #D4A744;
      --gold-400: #E1BB5E;
      --gold-100: rgba(212, 167, 68, 0.14);
      --white: #FFFFFF;
      --wa-green: #25D366;

      --shadow-xs: 0 1px 2px rgba(14, 31, 20, 0.05);
      --shadow-sm: 0 2px 6px rgba(14, 31, 20, 0.05), 0 1px 2px rgba(14, 31, 20, 0.04);
      --shadow-md: 0 12px 32px rgba(14, 31, 20, 0.09), 0 3px 8px rgba(14, 31, 20, 0.05);
      --shadow-lg: 0 28px 64px rgba(14, 31, 20, 0.18), 0 8px 18px rgba(14, 31, 20, 0.08);
      --shadow-glow: 0 20px 48px rgba(38, 75, 51, 0.30);
      --shadow-gold: 0 14px 36px rgba(212, 167, 68, 0.28);
      --shadow-moss: 0 18px 44px rgba(38, 75, 51, 0.30);

      --radius-xs: 6px;
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --radius-full: 999px;

      --fs-hero: clamp(2.4rem, 1.5rem + 4vw, 4.1rem);
      --fs-h1:   clamp(2rem, 1.3rem + 2.8vw, 3rem);
      --fs-h2:   clamp(1.55rem, 1.15rem + 1.6vw, 2.25rem);
      --fs-h3:   clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
      --fs-lead: clamp(1.05rem, 0.98rem + 0.4vw, 1.2rem);
      --fs-body: 1rem;
      --fs-sm:   0.92rem;
      --fs-xs:   0.78rem;

      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 24px;
      --space-6: 32px;
      --space-7: 48px;
      --space-8: 64px;
      --space-9: 96px;
      --space-10: 128px;

      --container: 1200px;
      --container-narrow: 880px;

      --gradient-dark: linear-gradient(135deg, var(--moss-950) 0%, var(--moss-800) 100%);
      --gradient-dark-rich: linear-gradient(135deg, var(--moss-950) 0%, var(--moss-700) 55%, var(--moss-800) 100%);
      --gradient-cream: linear-gradient(180deg, var(--cream-50) 0%, var(--white) 100%);
      --gradient-gold: linear-gradient(135deg, var(--gold-500), var(--gold-400));
      --gradient-spotlight:
        radial-gradient(900px 500px at 82% -10%, var(--avocado-100) 0%, transparent 60%),
        radial-gradient(700px 400px at -5% 110%, var(--gold-100) 0%, transparent 60%),
        var(--cream-50);

      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --t-fast: 200ms;
      --t-base: 320ms;
      --t-slow: 520ms;
    }

    /* ===========================================================
       Resets & base
       =========================================================== */
    *, *::before, *::after { box-sizing: border-box; }
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
      font-size: var(--fs-body);
      line-height: 1.65;
      color: var(--ink-900);
      background: var(--cream-50);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img, svg { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 3px solid var(--avocado-500);
      outline-offset: 3px;
      border-radius: 4px;
    }
    h1, h2, h3, h4 {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      letter-spacing: -0.018em;
      color: var(--ink-900);
      line-height: 1.14;
      margin: 0 0 var(--space-4);
    }
    h1 { font-weight: 500; }
    .serif-italic {
      font-family: 'Fraunces', Georgia, serif;
      font-style: italic;
      font-weight: 400;
      color: var(--moss-700);
      position: relative;
      white-space: nowrap;
    }
    @media (max-width: 640px) { .serif-italic { white-space: normal; } }
    .serif-italic::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0.08em;
      height: 0.32em;
      background: linear-gradient(180deg, transparent 60%, var(--gold-100) 60%);
      z-index: -1;
      pointer-events: none;
    }
    p { margin: 0 0 var(--space-4); color: var(--ink-700); }
    ul { margin: 0 0 var(--space-4); padding-left: 1.2rem; }
    li { margin-bottom: var(--space-2); color: var(--ink-700); }
    strong { color: var(--ink-900); font-weight: 600; }
    ::selection { background: var(--gold-100); color: var(--moss-900); }

    /* ===========================================================
       Layout utilities
       =========================================================== */
    .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); width: 100%; }
    .container.narrow { max-width: var(--container-narrow); }
    .section { padding: var(--space-10) 0; position: relative; }
    .section.tight { padding: var(--space-8) 0; }
    .section-dark {
      background: var(--gradient-dark-rich);
      color: rgba(255, 255, 255, 0.86);
      position: relative;
      overflow: hidden;
    }
    .section-dark::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(900px 500px at 90% -10%, rgba(212, 167, 68, 0.18), transparent 60%),
        radial-gradient(700px 400px at -5% 110%, rgba(181, 208, 143, 0.10), transparent 65%);
      pointer-events: none;
    }
    .section-dark > * { position: relative; z-index: 1; }
    .section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
    .section-dark .serif-italic { color: var(--gold-400); }
    .section-dark .serif-italic::after { background: linear-gradient(180deg, transparent 60%, rgba(212, 167, 68, 0.22) 60%); }
    .section-dark p { color: rgba(255, 255, 255, 0.80); }
    .section-cream { background: var(--cream-100); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: 'Inter', sans-serif;
      font-size: var(--fs-xs);
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--moss-600);
      margin-bottom: var(--space-4);
    }
    .eyebrow::before {
      content: '';
      width: 28px; height: 1px;
      background: var(--gold-500);
      flex-shrink: 0;
    }
    .section-dark .eyebrow { color: var(--gold-400); }
    .section-dark .eyebrow::before { background: var(--gold-500); }
    .lead { font-size: var(--fs-lead); color: var(--ink-700); max-width: 62ch; line-height: 1.65; }
    .section-dark .lead { color: rgba(255, 255, 255, 0.86); }

    /* ===========================================================
       Top bar
       =========================================================== */
    .topbar {
      background: var(--moss-950);
      color: rgba(255, 255, 255, 0.78);
      font-size: var(--fs-xs);
      padding: 10px 0;
      letter-spacing: 0.02em;
      border-bottom: 1px solid rgba(212, 167, 68, 0.18);
    }
    .topbar-inner {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-5);
      align-items: center;
      justify-content: space-between;
    }
    .topbar-list { display: flex; flex-wrap: wrap; gap: var(--space-5); list-style: none; padding: 0; margin: 0; }
    .topbar-list li { display: inline-flex; align-items: center; gap: 7px; margin: 0; color: rgba(255, 255, 255, 0.75); }
    .topbar-list a { color: inherit; transition: color var(--t-fast); }
    .topbar-list a:hover { color: var(--gold-400); }
    .topbar svg { width: 14px; height: 14px; opacity: 0.7; color: var(--gold-500); }

    /* ===========================================================
       Header
       =========================================================== */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(251, 248, 238, 0.86);
      backdrop-filter: saturate(170%) blur(18px);
      -webkit-backdrop-filter: saturate(170%) blur(18px);
      border-bottom: 1px solid rgba(224, 216, 189, 0.6);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-5);
      padding: 18px 0;
    }
    .brand { display: inline-flex; align-items: center; gap: 14px; }
    .brand-mark {
      width: 46px; height: 46px;
      border-radius: 14px;
      background: var(--gradient-dark-rich);
      display: grid; place-items: center;
      color: var(--gold-400);
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 0.02em;
      box-shadow: var(--shadow-moss);
      position: relative;
      overflow: hidden;
    }
    .brand-mark::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212, 167, 68, 0.18), transparent 50%);
      pointer-events: none;
    }
    .brand-name {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.4rem;
      color: var(--moss-900);
      line-height: 1;
      letter-spacing: -0.01em;
    }
    .brand-tag {
      font-size: 0.6rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--ink-600);
      margin-top: 5px;
    }

    .nav { display: flex; align-items: center; gap: var(--space-5); }
    .nav-list { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
    .nav-list li { margin: 0; }
    .nav-list a {
      font-size: var(--fs-sm);
      font-weight: 500;
      color: var(--ink-700);
      padding: 10px 14px;
      border-radius: var(--radius-full);
      position: relative;
      transition: color var(--t-fast), background var(--t-fast);
    }
    .nav-list a:hover { color: var(--moss-900); background: rgba(38, 75, 51, 0.06); }
    .nav-list a.is-active { color: var(--moss-900); background: var(--gold-100); }
    .nav-list a.is-active::before {
      content: '';
      position: absolute;
      left: 50%; bottom: -10px;
      transform: translateX(-50%);
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--gold-500);
    }

    /* Header CTA-styled nav link (consolidated Solicitar orçamento) */
    .nav-list li:has(.nav-link-cta) { margin-left: 8px; }
    .nav-list a.nav-link-cta {
      color: var(--white);
      background: var(--moss-800);
      padding: 11px 22px;
      font-weight: 600;
      letter-spacing: 0.005em;
      box-shadow: 0 6px 18px rgba(20, 41, 27, 0.18);
      transition: background var(--t-fast), transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast), color var(--t-fast);
    }
    .nav-list a.nav-link-cta:hover {
      color: var(--white);
      background: var(--moss-950);
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(20, 41, 27, 0.28);
    }
    .nav-list a.nav-link-cta.is-active {
      color: var(--white);
      background: var(--moss-950);
    }
    .nav-list a.nav-link-cta.is-active::before {
      background: var(--gold-400);
      width: 5px; height: 5px;
      bottom: -12px;
    }

    .nav-toggle {
      display: none;
      width: 46px; height: 46px;
      border: 1px solid var(--line-200);
      background: var(--white);
      border-radius: var(--radius-sm);
      cursor: pointer;
      padding: 0;
      align-items: center; justify-content: center;
      transition: border-color var(--t-fast);
    }
    .nav-toggle:hover { border-color: var(--moss-500); }
    .nav-toggle svg { width: 22px; height: 22px; color: var(--moss-900); }

    /* ===========================================================
       Buttons
       =========================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 28px;
      border-radius: var(--radius-full);
      font-family: 'Inter', sans-serif;
      font-size: var(--fs-sm);
      font-weight: 600;
      letter-spacing: 0.005em;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: transform var(--t-base) var(--ease-out), background var(--t-fast), box-shadow var(--t-base), color var(--t-fast), border-color var(--t-fast);
      line-height: 1;
      text-align: center;
      white-space: nowrap;
      position: relative;
    }
    .btn svg { width: 18px; height: 18px; transition: transform var(--t-fast); }
    .btn:hover svg { transform: translateX(2px); }
    .btn-primary {
      background: var(--moss-800);
      color: var(--white);
      box-shadow: 0 8px 24px rgba(20, 41, 27, 0.22);
    }
    .btn-primary:hover {
      background: var(--moss-950);
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(20, 41, 27, 0.32);
    }
    .btn-secondary {
      background: transparent;
      color: var(--moss-900);
      border-color: var(--moss-800);
    }
    .btn-secondary:hover {
      background: var(--moss-900);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .btn-gold {
      background: var(--gradient-gold);
      color: var(--moss-950);
      box-shadow: var(--shadow-gold);
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(212, 167, 68, 0.40);
      filter: brightness(1.05);
    }
    .btn-light {
      background: var(--white);
      color: var(--moss-900);
      border-color: var(--white);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    .btn-light:hover {
      background: var(--cream-50);
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
    }
    .btn-ghost {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.30);
    }
    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--white);
      transform: translateY(-2px);
    }
    .btn-wa { background: var(--wa-green); color: var(--white); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32); }
    .btn-wa:hover { background: #1fbf5b; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.42); }
    .btn-sm { padding: 11px 20px; font-size: 0.84rem; gap: 8px; }
    .btn-sm svg { width: 15px; height: 15px; }

    /* ===========================================================
       Hero
       =========================================================== */
    .hero {
      position: relative;
      padding: var(--space-10) 0 var(--space-9);
      background: var(--gradient-spotlight);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 20%; right: -120px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(212, 167, 68, 0.18), transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .hero > .container { position: relative; z-index: 1; }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: var(--space-8);
      align-items: center;
    }
    .hero h1 {
      font-size: var(--fs-hero);
      margin-bottom: var(--space-5);
      letter-spacing: -0.025em;
      line-height: 1.06;
    }
    .hero h1 .accent {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      color: var(--moss-700);
      position: relative;
      display: inline;
      text-decoration: underline;
      text-decoration-color: var(--gold-500);
      text-decoration-thickness: 3px;
      text-underline-offset: 0.14em;
      text-decoration-skip-ink: none;
    }
    .hero h1 .accent::after { content: none; }
    .hero .lead { margin-bottom: var(--space-6); }
    .hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
    .hero-meta {
      display: flex; flex-wrap: wrap; gap: var(--space-5);
      margin-top: var(--space-7);
      padding-top: var(--space-5);
      border-top: 1px solid var(--line-200);
      font-size: var(--fs-xs);
      color: var(--ink-600);
      letter-spacing: 0.02em;
    }
    .hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-meta svg { width: 16px; height: 16px; color: var(--moss-600); }

    .hero-figure {
      position: relative;
      aspect-ratio: 4 / 5;
      border-radius: var(--radius-xl);
      overflow: visible;
      box-shadow: 0 40px 80px rgba(14, 31, 20, 0.22);
    }
    .hero-figure-inner {
      position: absolute;
      inset: 0;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: var(--gradient-dark-rich);
    }
    .hero-figure img {
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.92;
    }
    .hero-figure-inner::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, transparent 50%, rgba(212, 167, 68, 0.16));
      pointer-events: none;
    }
    .hero-figure-inner::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(14, 31, 20, 0.58) 100%);
    }
    .hero-badge {
      position: absolute;
      z-index: 3;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 14px 18px;
      border-radius: 14px;
      box-shadow: var(--shadow-lg);
      display: flex;
      gap: 12px;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.6);
    }
    .hero-badge-top {
      top: 20px;
      left: -20px;
      max-width: 280px;
    }
    .hero-badge-bottom {
      bottom: -28px;
      left: 30px;
      right: 30px;
      flex-direction: column;
      align-items: flex-start;
      padding: 18px 22px;
      gap: 8px;
    }
    .hero-badge strong {
      display: block;
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1rem;
      color: var(--moss-900);
      line-height: 1.25;
    }
    .hero-badge span {
      font-size: 0.78rem;
      color: var(--ink-600);
      letter-spacing: 0.02em;
    }
    .pulse-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: #22c55e;
      flex-shrink: 0;
      position: relative;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }
    .pulse-dot::before {
      content: '';
      position: absolute; inset: -4px;
      border-radius: 50%;
      border: 2px solid rgba(34, 197, 94, 0.5);
      animation: pulse 2.4s var(--ease-out) infinite;
    }
    @keyframes pulse {
      0% { transform: scale(0.85); opacity: 1; }
      100% { transform: scale(2.2); opacity: 0; }
    }
    .gold-ic {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: var(--gradient-gold);
      color: var(--moss-950);
      display: grid; place-items: center;
      flex-shrink: 0;
      box-shadow: var(--shadow-gold);
    }
    .gold-ic svg { width: 20px; height: 20px; }
    .nrm-row {
      display: flex; flex-wrap: wrap; gap: 6px;
    }
    .nrm-chip {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--moss-800);
      background: var(--avocado-100);
      border: 1px solid var(--avocado-300);
      padding: 4px 9px;
      border-radius: var(--radius-full);
    }

    /* ===========================================================
       Page hero (sub-routes)
       =========================================================== */
    .page-hero {
      background:
        radial-gradient(1000px 500px at 85% -10%, var(--avocado-100) 0%, transparent 60%),
        radial-gradient(600px 350px at 0% 110%, var(--gold-100) 0%, transparent 60%),
        var(--cream-50);
      padding: var(--space-9) 0 var(--space-8);
      border-bottom: 1px solid var(--line-200);
      position: relative;
      overflow: hidden;
    }
    .page-hero .container { position: relative; z-index: 1; max-width: 880px; }
    .page-hero h1 { font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem); letter-spacing: -0.02em; line-height: 1.1; }
    .page-hero .lead { margin-bottom: var(--space-5); max-width: 70ch; }
    .page-hero .btn { margin-top: var(--space-3); }
    .breadcrumb {
      font-size: var(--fs-xs);
      color: var(--ink-600);
      margin-bottom: var(--space-5);
      letter-spacing: 0.04em;
    }
    .breadcrumb a { color: var(--moss-700); transition: color var(--t-fast); }
    .breadcrumb a:hover { color: var(--moss-900); text-decoration: underline; text-underline-offset: 3px; }
    .breadcrumb span { margin: 0 8px; opacity: 0.4; color: var(--ink-400); }

    /* ===========================================================
       Cards & grids
       =========================================================== */
    .grid { display: grid; gap: var(--space-5); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    .card {
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-md);
      padding: var(--space-6) var(--space-5);
      transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base), border-color var(--t-base);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gradient-gold);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform var(--t-base) var(--ease-out);
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--line-200);
    }
    .card:hover::before { transform: scaleX(1); }
    .card-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--moss-800), var(--moss-700));
      color: var(--gold-400);
      display: grid; place-items: center;
      margin-bottom: var(--space-5);
      box-shadow: var(--shadow-moss);
      position: relative;
      overflow: hidden;
    }
    .card-icon::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(212, 167, 68, 0.16), transparent 60%);
      pointer-events: none;
    }
    .card-icon svg { width: 24px; height: 24px; position: relative; z-index: 1; }
    .card h3 { font-size: var(--fs-h3); margin-bottom: var(--space-3); letter-spacing: -0.01em; }
    .card p { font-size: 0.95rem; line-height: 1.6; margin-bottom: var(--space-5); flex: 1; color: var(--ink-600); }
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: var(--fs-sm);
      font-weight: 600;
      color: var(--moss-800);
      transition: gap var(--t-fast), color var(--t-fast);
      padding-top: var(--space-3);
      border-top: 1px solid var(--line-100);
    }
    .card-link:hover { gap: 12px; color: var(--moss-950); }
    .card-link svg { width: 14px; height: 14px; }

    .chip {
      display: inline-block;
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--moss-800);
      background: var(--gold-100);
      padding: 5px 11px;
      border-radius: var(--radius-full);
      margin-bottom: var(--space-3);
      border: 1px solid rgba(212, 167, 68, 0.30);
    }
    .page-hero .chip { margin-bottom: var(--space-4); }

    .card-dark {
      background: var(--gradient-dark-rich);
      border-color: transparent;
      color: rgba(255, 255, 255, 0.78);
      box-shadow: var(--shadow-moss);
    }
    .card-dark::before { background: var(--gradient-gold); transform: scaleX(1); }
    .card-dark:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
    .card-dark .card-icon { box-shadow: var(--shadow-gold); }

    /* Section heading helper for centered intros */
    .section-intro { text-align: center; margin-bottom: var(--space-8); max-width: 720px; margin-left: auto; margin-right: auto; }
    .section-intro h2 { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); letter-spacing: -0.022em; line-height: 1.12; font-weight: 500; }
    .section-intro .eyebrow { justify-content: center; }
    .section-intro .eyebrow::before { display: none; }
    .section-intro .eyebrow::after {
      content: '';
      width: 28px; height: 1px;
      background: currentColor;
      opacity: 0.5;
      margin-left: 12px;
    }
    .section-intro .lead { margin: 0 auto; }

    /* ===========================================================
       Service group
       =========================================================== */
    .group-heading {
      display: flex; align-items: center; gap: var(--space-4);
      margin-bottom: var(--space-6);
      padding-bottom: var(--space-4);
      border-bottom: 1px solid var(--line-200);
    }
    .group-heading .num {
      width: 40px; height: 40px;
      border-radius: 12px;
      background: var(--gradient-dark-rich);
      color: var(--gold-400);
      display: grid; place-items: center;
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1rem;
      box-shadow: var(--shadow-moss);
      flex-shrink: 0;
    }
    .group-heading h2 {
      font-size: 1.35rem;
      margin: 0;
      letter-spacing: -0.01em;
      font-weight: 500;
    }

    /* ===========================================================
       Definition (quote)
       =========================================================== */
    .definition {
      background: var(--white);
      padding: var(--space-8) var(--space-8);
      border-radius: var(--radius-lg);
      max-width: 880px;
      margin: 0 auto;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line-100);
    }
    .definition::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gradient-gold);
    }
    .definition::after {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 240px; height: 240px;
      background: radial-gradient(circle, var(--gold-100), transparent 70%);
      pointer-events: none;
    }
    .definition .mark {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 5rem;
      line-height: 0.3;
      color: var(--gold-500);
      opacity: 0.65;
      margin-bottom: var(--space-3);
      display: block;
    }
    .definition blockquote {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: clamp(1.2rem, 0.9rem + 0.9vw, 1.55rem);
      line-height: 1.45;
      color: var(--ink-900);
      margin: 0 0 var(--space-5);
      font-weight: 400;
      letter-spacing: -0.005em;
      position: relative;
      z-index: 1;
    }
    .definition cite {
      font-style: normal;
      font-size: var(--fs-sm);
      color: var(--ink-600);
      letter-spacing: 0.05em;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 1;
    }
    .definition cite::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--gold-500);
    }
    .definition cite strong { color: var(--moss-900); font-weight: 600; }

    /* ===========================================================
       FAQ
       =========================================================== */
    .faq-item {
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-md);
      margin-bottom: var(--space-3);
      overflow: hidden;
      transition: border-color var(--t-fast), box-shadow var(--t-base), transform var(--t-base) var(--ease-out);
    }
    .faq-item:hover { border-color: var(--line-200); }
    .faq-item[open] {
      border-color: var(--gold-500);
      box-shadow: var(--shadow-md);
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 26px;
      font-family: 'Fraunces', serif;
      font-size: 1.12rem;
      font-weight: 500;
      color: var(--ink-900);
      display: flex; align-items: center; justify-content: space-between;
      gap: var(--space-4);
      letter-spacing: -0.005em;
      transition: color var(--t-fast);
    }
    .faq-item summary:hover { color: var(--moss-700); }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: ''; flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      background-color: var(--cream-100);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23264B33' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 16px;
      transition: transform var(--t-base) var(--ease-out), background-color var(--t-fast);
    }
    .faq-item[open] summary::after {
      transform: rotate(180deg);
      background-color: var(--gold-100);
    }
    .faq-body {
      padding: 0 26px 24px;
      color: var(--ink-600);
      font-size: 0.97rem;
      line-height: 1.7;
    }

    /* ===========================================================
       Region block
       =========================================================== */
    .region {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-7);
      align-items: center;
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-xl);
      padding: var(--space-7);
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }
    .region::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 320px; height: 320px;
      background: radial-gradient(circle, var(--gold-100), transparent 70%);
      pointer-events: none;
    }
    .region > * { position: relative; z-index: 1; }
    .region-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin: 0;
    }
    .region-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: var(--fs-sm);
      color: var(--ink-700);
      padding: 10px 14px;
      background: var(--cream-50);
      border-radius: var(--radius-sm);
      border: 1px solid var(--line-100);
      transition: border-color var(--t-fast), background var(--t-fast);
    }
    .region-list li:hover { border-color: var(--gold-500); background: var(--white); }
    .region-list svg { width: 16px; height: 16px; color: var(--gold-600); flex-shrink: 0; }

    /* ===========================================================
       Pillars
       =========================================================== */
    .pillar {
      text-align: left;
      padding: var(--space-5) 0;
      position: relative;
    }
    .pillar-num {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 3.2rem;
      color: var(--gold-400);
      line-height: 0.9;
      margin-bottom: var(--space-4);
      font-weight: 400;
      display: inline-block;
      padding-bottom: var(--space-3);
      border-bottom: 1px solid rgba(212, 167, 68, 0.30);
    }
    .pillar h3 {
      color: var(--white);
      font-weight: 500;
      letter-spacing: -0.005em;
    }

    /* ===========================================================
       Founders
       =========================================================== */
    .founder {
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-lg);
      padding: var(--space-7);
      position: relative;
      overflow: hidden;
      transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
    }
    .founder::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: var(--gradient-gold);
    }
    .founder:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .founder-name {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 1.7rem;
      margin-bottom: 6px;
      color: var(--moss-900);
      letter-spacing: -0.01em;
    }
    .founder-role {
      font-size: 0.85rem;
      color: var(--moss-700);
      font-weight: 600;
      margin-bottom: var(--space-5);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding-bottom: var(--space-4);
      border-bottom: 1px solid var(--line-100);
    }
    .founder ul { padding-left: 0; list-style: none; }
    .founder li {
      font-size: 0.95rem;
      line-height: 1.6;
      padding-left: 24px;
      position: relative;
      color: var(--ink-700);
    }
    .founder li::before {
      content: '';
      position: absolute;
      left: 0; top: 12px;
      width: 12px; height: 1px;
      background: var(--gold-500);
    }

    /* ===========================================================
       Forms
       =========================================================== */
    .form-wrap {
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-lg);
      padding: var(--space-7);
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }
    .form-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--gradient-gold);
    }
    .form-wrap h3 { font-weight: 500; font-size: 1.4rem; letter-spacing: -0.01em; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
    .field { display: flex; flex-direction: column; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    .field label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink-700);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .field input, .field select, .field textarea {
      font-family: inherit;
      font-size: var(--fs-body);
      padding: 14px 16px;
      border: 1px solid var(--line-200);
      border-radius: var(--radius-sm);
      background: var(--cream-50);
      color: var(--ink-900);
      width: 100%;
      box-sizing: border-box;
      transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
    }
    .field input:hover, .field select:hover, .field textarea:hover {
      border-color: var(--line-300);
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: var(--moss-700);
      background: var(--white);
      outline: none;
      box-shadow: 0 0 0 3px rgba(38, 75, 51, 0.10);
    }
    .field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
    .form-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }

    /* ===========================================================
       Contact grid
       =========================================================== */
    .contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
    .contact-item {
      display: flex; gap: 14px; align-items: flex-start;
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-md);
      padding: var(--space-4) var(--space-5);
      transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-base) var(--ease-out);
    }
    .contact-item:hover {
      border-color: var(--gold-500);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }
    .contact-item .ic {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--moss-800), var(--moss-700));
      color: var(--gold-400);
      display: grid; place-items: center;
      flex-shrink: 0;
      box-shadow: var(--shadow-moss);
    }
    .contact-item .ic svg { width: 20px; height: 20px; }
    .contact-item strong {
      display: block;
      color: var(--ink-900);
      font-size: 0.78rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      margin-bottom: 4px;
      font-weight: 600;
    }
    .contact-item span, .contact-item a {
      font-size: 0.95rem;
      color: var(--ink-700);
      word-break: break-word;
      overflow-wrap: anywhere;
    }
    .contact-item a { transition: color var(--t-fast); }
    .contact-item a:hover { color: var(--moss-900); }

    /* ===========================================================
       Service subpage list
       =========================================================== */
    .feature-list { list-style: none; padding: 0; }
    .feature-list li {
      position: relative;
      padding-left: 32px;
      margin-bottom: var(--space-3);
      color: var(--ink-700);
      line-height: 1.55;
      font-size: 0.97rem;
    }
    .feature-list li::before {
      content: '';
      position: absolute;
      left: 0; top: 4px;
      width: 22px; height: 22px;
      border-radius: 50%;
      background-color: var(--gold-100);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23264B33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 13px;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: var(--space-8);
      align-items: start;
    }
    .two-col h2 { letter-spacing: -0.018em; margin-bottom: var(--space-4); }
    .about-photo-wrap {
      align-self: center;
      display: flex;
      justify-content: flex-end;
      width: 100%;
    }
    .two-col:has(.about-photo-wrap) { align-items: center; }
    .about-photo {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 4 / 3;
      height: auto !important;
      display: block;
      object-fit: cover;
      object-position: center;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }
    .info-block {
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-md);
      padding: var(--space-6);
      box-shadow: var(--shadow-xs);
      transition: border-color var(--t-fast);
    }
    .info-block:hover { border-color: var(--line-200); }
    .info-block + .info-block { margin-top: var(--space-4); }
    .info-block h3 {
      font-size: 1.25rem;
      margin-bottom: var(--space-4);
      letter-spacing: -0.005em;
      font-weight: 500;
      color: var(--moss-900);
      padding-bottom: var(--space-3);
      border-bottom: 1px solid var(--line-100);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .info-block h3::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--gold-500);
      flex-shrink: 0;
    }

    /* ===========================================================
       Final CTA
       =========================================================== */
    .final-cta {
      background: var(--gradient-dark-rich);
      color: var(--white);
      border-radius: var(--radius-xl);
      padding: var(--space-9) var(--space-7);
      text-align: center;
      box-shadow: var(--shadow-glow);
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: -30%; right: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(212, 167, 68, 0.20), transparent 65%);
      pointer-events: none;
    }
    .final-cta::after {
      content: '';
      position: absolute;
      bottom: -40%; left: -10%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(181, 208, 143, 0.10), transparent 65%);
      pointer-events: none;
    }
    .final-cta > * { position: relative; z-index: 1; }
    .final-cta .eyebrow { color: var(--gold-400); }
    .final-cta .eyebrow::before { background: var(--gold-500); }
    .final-cta h2 {
      color: var(--white);
      margin-bottom: var(--space-4);
      font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
      letter-spacing: -0.018em;
      font-weight: 500;
    }
    .final-cta p {
      color: rgba(255, 255, 255, 0.84);
      max-width: 56ch;
      margin: 0 auto var(--space-6);
      font-size: var(--fs-lead);
    }
    .final-cta .cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-3); }

    /* ===========================================================
       Footer
       =========================================================== */
    .footer {
      background: var(--gradient-dark-rich);
      color: rgba(255, 255, 255, 0.72);
      padding: var(--space-9) 0 var(--space-5);
      font-size: var(--fs-sm);
      position: relative;
      overflow: hidden;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    }
    .footer::after {
      content: '';
      position: absolute;
      bottom: -150px; left: 30%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(212, 167, 68, 0.10), transparent 65%);
      pointer-events: none;
    }
    .footer .container { position: relative; z-index: 1; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: var(--space-6);
      margin-bottom: var(--space-7);
    }
    .footer h4 {
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      margin-bottom: var(--space-5);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .footer h4::before {
      content: '';
      width: 16px; height: 1px;
      background: var(--gold-500);
    }
    .footer ul { list-style: none; padding: 0; margin: 0; }
    .footer li { margin-bottom: 10px; line-height: 1.5; }
    .footer a {
      color: rgba(255, 255, 255, 0.72);
      transition: color var(--t-fast);
    }
    .footer a:hover { color: var(--gold-400); }
    .footer-brand p {
      color: rgba(255, 255, 255, 0.62);
      margin-top: var(--space-4);
      font-size: var(--fs-sm);
      max-width: 36ch;
      line-height: 1.65;
    }
    .footer-bottom {
      padding-top: var(--space-5);
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
      font-size: var(--fs-xs);
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.02em;
    }

    /* ===========================================================
       Floating WhatsApp
       =========================================================== */
    .fab-wa {
      position: fixed;
      right: max(20px, env(safe-area-inset-right));
      bottom: max(20px, env(safe-area-inset-bottom));
      width: 60px; height: 60px;
      border-radius: 50%;
      background: var(--wa-green);
      color: var(--white);
      display: grid; place-items: center;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.42), 0 4px 12px rgba(14, 31, 20, 0.12);
      z-index: 1000;
      transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
      border: 2px solid rgba(255, 255, 255, 0.18);
    }
    .fab-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.52), 0 6px 16px rgba(14, 31, 20, 0.16); }
    .fab-wa svg { width: 30px; height: 30px; }

    /* ===========================================================
       Skip link
       =========================================================== */
    .skip { position: absolute; left: -9999px; top: 0; background: var(--moss-900); color: var(--white); padding: 10px 16px; z-index: 1001; }
    .skip:focus { left: var(--space-3); top: var(--space-3); }

    /* ===========================================================
       Reveal animation
       =========================================================== */
    .reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
    .reveal.is-visible { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition-duration: 0.001ms !important; }
      .reveal { opacity: 1; transform: none; }
    }

    /* ===========================================================
       Mobile nav drawer
       =========================================================== */
    .drawer {
      position: fixed; inset: 0;
      background: rgba(31, 51, 38, 0.4);
      display: none;
      z-index: 200;
      opacity: 0;
      transition: opacity var(--t-base);
    }
    .drawer.is-open { display: block; opacity: 1; }
    .drawer-panel {
      position: absolute; top: 0; right: 0; bottom: 0;
      width: min(86vw, 360px);
      background: var(--cream-50);
      padding: var(--space-5);
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform var(--t-base) var(--ease);
      overflow-y: auto;
    }
    .drawer.is-open .drawer-panel { transform: none; }
    .drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-5); }
    .drawer-list { list-style: none; padding: 0; margin: 0 0 var(--space-5); }
    .drawer-list li { margin-bottom: var(--space-3); }
    .drawer-list a {
      display: block;
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.35rem;
      color: var(--moss-900);
      padding: 12px 0;
      border-bottom: 1px solid var(--line-100);
      transition: color var(--t-fast), padding-left var(--t-fast);
    }
    .drawer-list a:hover { color: var(--moss-700); padding-left: 6px; }
    .drawer-list a.is-active { color: var(--gold-600); font-style: italic; }
    .drawer-services {
      font-size: var(--fs-xs);
      color: var(--moss-600);
      text-transform: uppercase;
      letter-spacing: 0.20em;
      margin-bottom: var(--space-3);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .drawer-services::before {
      content: '';
      width: 18px; height: 1px;
      background: var(--gold-500);
    }
    .drawer-services-list { list-style: none; padding: 0; margin: 0 0 var(--space-5); }
    .drawer-services-list li { margin-bottom: var(--space-2); }
    .drawer-services-list a { font-size: var(--fs-sm); color: var(--ink-700); }

    /* ===========================================================
       404 banner
       =========================================================== */
    .notice {
      background: var(--avocado-100);
      color: var(--moss-900);
      padding: var(--space-3) var(--space-5);
      border-radius: var(--radius-sm);
      font-size: var(--fs-sm);
      margin-bottom: var(--space-5);
      display: none;
    }
    .notice.is-on { display: block; }

    /* ===========================================================
       Service subpage editorial blocks
       =========================================================== */

    /* Problem cards */
    .problem-grid { gap: var(--space-4); }
    .problem-card {
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-md);
      padding: var(--space-5) var(--space-5) var(--space-5) var(--space-6);
      display: flex;
      gap: var(--space-4);
      align-items: flex-start;
      transition: border-color var(--t-fast), box-shadow var(--t-base), transform var(--t-base) var(--ease-out);
      position: relative;
      overflow: hidden;
    }
    .problem-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 100%;
      background: linear-gradient(180deg, var(--gold-500), var(--gold-400));
      opacity: 0.55;
      transition: opacity var(--t-fast);
    }
    .problem-card:hover {
      border-color: var(--line-200);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    .problem-card:hover::before { opacity: 1; }
    .problem-ic {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: var(--gold-100);
      color: var(--gold-600);
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .problem-ic svg { width: 22px; height: 22px; }
    .problem-card p {
      margin: 0;
      color: var(--ink-700);
      line-height: 1.55;
      font-size: 0.97rem;
    }

    /* Solution block: text + dark gold panel */
    .solution-block {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: var(--space-8);
      align-items: center;
    }
    .solution-block h2 { letter-spacing: -0.018em; margin-bottom: var(--space-4); }
    .solution-figure {
      background: var(--gradient-dark-rich);
      border-radius: var(--radius-xl);
      padding: var(--space-9) var(--space-7);
      text-align: center;
      position: relative;
      overflow: hidden;
      color: var(--white);
      box-shadow: var(--shadow-lg);
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .solution-figure::before {
      content: '';
      position: absolute;
      top: -30%; right: -25%;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(212,167,68,0.26), transparent 70%);
      pointer-events: none;
    }
    .solution-figure::after {
      content: '';
      position: absolute;
      bottom: -40%; left: -25%;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(181, 208, 143, 0.10), transparent 70%);
      pointer-events: none;
    }
    .solution-figure > * { position: relative; z-index: 1; }
    .big-ic {
      width: 104px; height: 104px;
      border-radius: 50%;
      background: var(--gradient-gold);
      color: var(--moss-950);
      margin: 0 auto var(--space-5);
      display: grid; place-items: center;
      box-shadow: var(--shadow-gold);
      position: relative;
    }
    .big-ic::after {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      border: 1px dashed rgba(212, 167, 68, 0.5);
      animation: orbit 22s linear infinite;
    }
    @keyframes orbit { to { transform: rotate(360deg); } }
    .big-ic svg { width: 48px; height: 48px; }
    .solution-figure .chip {
      background: rgba(212, 167, 68, 0.16);
      color: var(--gold-400);
      border-color: rgba(212, 167, 68, 0.30);
      display: inline-block;
      margin: 0 0 var(--space-3);
    }
    .solution-figure-title {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 1.55rem;
      color: var(--white);
      margin-bottom: var(--space-4);
      line-height: 1.2;
      letter-spacing: -0.005em;
    }
    .solution-figure-tags {
      display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    }
    .solution-figure-tags span {
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.72);
      padding: 5px 12px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.03);
    }

    /* Deliverable cards (dark section) */
    .deliverable-grid { gap: var(--space-4); }
    .deliverable-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: var(--radius-md);
      padding: var(--space-5);
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-base) var(--ease-out);
    }
    .deliverable-card:hover {
      border-color: rgba(212, 167, 68, 0.4);
      background: rgba(255, 255, 255, 0.06);
      transform: translateY(-2px);
    }
    .deliverable-ic {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--gradient-gold);
      color: var(--moss-950);
      display: grid; place-items: center;
      flex-shrink: 0;
      box-shadow: var(--shadow-gold);
    }
    .deliverable-ic svg { width: 22px; height: 22px; }
    .deliverable-card p {
      margin: 0;
      color: rgba(255,255,255,0.86);
      font-size: 0.98rem;
      line-height: 1.55;
    }

    /* Indicated + Benefits split */
    .split-block { gap: var(--space-5); }
    .indicated-block, .benefits-block {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: var(--space-7);
      border: 1px solid var(--line-100);
      transition: border-color var(--t-fast), box-shadow var(--t-fast);
    }
    .indicated-block:hover, .benefits-block:hover {
      border-color: var(--line-200);
      box-shadow: var(--shadow-sm);
    }
    .block-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: var(--space-5);
      padding-bottom: var(--space-4);
      border-bottom: 1px solid var(--line-100);
    }
    .ic-circle {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--moss-800), var(--moss-700));
      color: var(--gold-400);
      display: grid; place-items: center;
      flex-shrink: 0;
      box-shadow: var(--shadow-moss);
    }
    .ic-circle svg { width: 22px; height: 22px; }
    .block-head h3 {
      font-size: 1.3rem;
      margin: 0;
      letter-spacing: -0.01em;
      font-weight: 500;
      padding: 0;
      border: 0;
    }
    .block-head h3::before { display: none; }
    .indicated-block p {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--ink-700);
      margin: 0;
    }
    .benefit-list { list-style: none; padding: 0; margin: 0; }
    .benefit-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 14px;
      font-size: 0.96rem;
      color: var(--ink-700);
      line-height: 1.55;
      padding-left: 0;
    }
    .benefit-list li:last-child { margin-bottom: 0; }
    .benefit-list li::before { display: none; }
    .benefit-list li svg {
      width: 20px; height: 20px;
      color: var(--gold-600);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ===========================================================
       Manifesto / Institutional citation block
       =========================================================== */
    .manifesto {
      background: linear-gradient(180deg, var(--white) 0%, var(--cream-50) 100%);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-xl);
      padding: var(--space-9) var(--space-8);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      text-align: center;
    }
    .manifesto::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 240px; height: 4px;
      background: var(--gradient-gold);
      border-radius: 0 0 4px 4px;
    }
    .manifesto::after {
      content: '';
      position: absolute;
      bottom: -50%; left: -10%;
      width: 520px; height: 520px;
      background: radial-gradient(circle, var(--gold-100), transparent 65%);
      pointer-events: none;
    }
    .manifesto > * { position: relative; z-index: 1; }
    .manifesto-mark {
      display: block;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 5rem;
      line-height: 0.4;
      color: var(--gold-500);
      opacity: 0.6;
      margin: 0 0 var(--space-4);
      user-select: none;
    }
    .manifesto .eyebrow { justify-content: center; }
    .manifesto .eyebrow::before { display: none; }
    .manifesto .eyebrow::after {
      content: '';
      width: 28px; height: 1px;
      background: currentColor;
      opacity: 0.55;
      margin-left: 12px;
    }
    .manifesto-title {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: clamp(1.7rem, 1.15rem + 1.8vw, 2.4rem);
      letter-spacing: -0.018em;
      margin: 0 auto var(--space-5);
      color: var(--moss-900);
      line-height: 1.18;
      max-width: 26ch;
    }
    .manifesto-body {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-style: italic;
      font-size: clamp(1.1rem, 0.98rem + 0.5vw, 1.32rem);
      line-height: 1.6;
      color: var(--ink-800);
      margin: 0 auto var(--space-6);
      max-width: 58ch;
    }
    .manifesto-sig {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--moss-700);
      font-weight: 600;
    }
    .manifesto-sig::before,
    .manifesto-sig::after {
      content: '';
      width: 28px; height: 1px;
      background: var(--gold-500);
    }

    /* ===========================================================
       Booking card (agendamento online)
       =========================================================== */
    .booking-wrap {
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      position: relative;
    }
    .booking-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--gradient-gold);
      z-index: 2;
    }
    .booking-head {
      padding: var(--space-7) var(--space-7) var(--space-5);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: var(--space-5);
      align-items: center;
      border-bottom: 1px solid var(--line-100);
    }
    .booking-pro { display: flex; align-items: center; gap: 16px; }
    .booking-pro-avatar {
      width: 60px; height: 60px;
      border-radius: 16px;
      background: var(--gradient-dark-rich);
      color: var(--gold-400);
      display: grid; place-items: center;
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.05rem;
      letter-spacing: 0.04em;
      box-shadow: var(--shadow-moss);
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }
    .booking-pro-avatar::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(212, 167, 68, 0.18), transparent 55%);
    }
    .booking-pro-avatar span { position: relative; z-index: 1; }
    .booking-pro-name {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.22rem;
      color: var(--moss-900);
      letter-spacing: -0.01em;
      margin: 0 0 4px;
    }
    .booking-pro-title {
      font-size: 0.85rem;
      color: var(--ink-600);
      display: flex; align-items: center; gap: 8px;
      flex-wrap: wrap;
    }
    .booking-pro-title .dot { width: 4px; height: 4px; background: var(--ink-400); border-radius: 50%; flex-shrink: 0; }
    .booking-cost { text-align: right; }
    .booking-cost-label {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-600);
      font-weight: 600;
      margin-bottom: 4px;
      display: block;
    }
    .booking-cost-value {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 1.55rem;
      color: var(--moss-800);
      line-height: 1;
    }
    .booking-cost-sub { display: block; font-size: 0.78rem; color: var(--ink-600); margin-top: 4px; }
    .booking-body { padding: var(--space-6) var(--space-7); }
    .booking-section + .booking-section { margin-top: var(--space-6); }
    .booking-label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-700);
      margin-bottom: 10px;
    }
    .booking-week-nav {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: var(--space-4);
    }
    .booking-week-nav h4 {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.05rem;
      color: var(--moss-900);
      margin: 0;
      letter-spacing: -0.005em;
    }
    .booking-week-btn {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1px solid var(--line-200);
      background: var(--white);
      color: var(--moss-700);
      cursor: pointer;
      display: grid; place-items: center;
      transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
      padding: 0;
    }
    .booking-week-btn:hover:not(:disabled) {
      border-color: var(--gold-500);
      background: var(--gold-100);
      color: var(--moss-900);
    }
    .booking-week-btn:disabled { opacity: 0.35; cursor: not-allowed; }
    .booking-week-btn svg { width: 16px; height: 16px; }
    .booking-week {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
    }
    .booking-day {
      background: var(--cream-50);
      border: 1px solid var(--line-100);
      border-radius: 12px;
      padding: 12px 6px;
      text-align: center;
      cursor: pointer;
      transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: center;
      position: relative;
      font-family: inherit;
    }
    .booking-day-name {
      font-size: 0.66rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--ink-600);
      font-weight: 600;
    }
    .booking-day-num {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.3rem;
      color: var(--moss-900);
      line-height: 1;
    }
    .booking-day-mon {
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-600);
      font-weight: 600;
    }
    .booking-day:hover:not(.is-disabled):not(.is-selected) {
      border-color: var(--gold-500);
      background: var(--white);
      transform: translateY(-1px);
    }
    .booking-day.is-disabled {
      opacity: 0.40;
      cursor: not-allowed;
    }
    .booking-day.is-disabled .booking-day-num { color: var(--ink-400); }
    .booking-day.is-selected {
      background: var(--gradient-dark-rich);
      border-color: var(--moss-900);
      box-shadow: var(--shadow-moss);
    }
    .booking-day.is-selected .booking-day-name,
    .booking-day.is-selected .booking-day-mon { color: var(--gold-400); }
    .booking-day.is-selected .booking-day-num { color: var(--white); }
    .booking-day.is-today:not(.is-selected)::after {
      content: '';
      position: absolute;
      bottom: 6px; left: 50%; transform: translateX(-50%);
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold-500);
    }
    .booking-slots {
      display: flex; flex-wrap: wrap;
      gap: 8px;
    }
    .booking-slot {
      padding: 10px 16px;
      border: 1px solid var(--line-200);
      background: var(--white);
      border-radius: var(--radius-full);
      font-family: inherit;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--ink-700);
      cursor: pointer;
      transition: all var(--t-fast);
    }
    .booking-slot:hover:not(:disabled):not(.is-selected) {
      border-color: var(--moss-700);
      color: var(--moss-900);
      transform: translateY(-1px);
    }
    .booking-slot.is-selected {
      background: var(--moss-800);
      color: var(--white);
      border-color: var(--moss-800);
      box-shadow: var(--shadow-moss);
    }
    .booking-slot:disabled { opacity: 0.4; cursor: not-allowed; }
    .booking-empty {
      background: var(--cream-50);
      border: 1px dashed var(--line-300);
      border-radius: var(--radius-md);
      padding: var(--space-5);
      text-align: center;
      color: var(--ink-600);
      font-size: 0.92rem;
    }
    .booking-foot {
      padding: var(--space-5) var(--space-7);
      border-top: 1px solid var(--line-100);
      background: var(--cream-50);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
      flex-wrap: wrap;
    }
    .booking-foot-summary {
      font-size: 0.92rem;
      color: var(--ink-700);
      line-height: 1.5;
    }
    .booking-foot-summary strong { color: var(--moss-900); font-weight: 600; }
    .booking-foot-summary span.dim { color: var(--ink-400); font-style: italic; }

    /* Confirmation step + success */
    .booking-confirm { padding: var(--space-7); display: none; }
    .booking-confirm.is-on { display: block; }
    .booking-confirm-intro {
      max-width: 680px;
      margin: 0 0 var(--space-6);
      padding: var(--space-5);
      border: 1px solid rgba(212, 167, 68, 0.28);
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(233,242,215,0.42));
    }
    .booking-confirm-intro .eyebrow {
      margin-bottom: var(--space-3);
    }
    .booking-confirm-intro h3 {
      font-size: clamp(1.35rem, 1rem + 1vw, 1.8rem);
      color: var(--moss-900);
      margin-bottom: var(--space-3);
    }
    .booking-confirm-intro p {
      max-width: 58ch;
      margin-bottom: 0;
      color: var(--ink-700);
    }
    .booking-back {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; border: 0;
      font-family: inherit; font-size: 0.88rem; font-weight: 600;
      color: var(--moss-700);
      cursor: pointer;
      padding: 0;
      margin-bottom: var(--space-5);
      transition: color var(--t-fast), gap var(--t-fast);
    }
    .booking-back:hover { color: var(--moss-900); gap: 12px; }
    .booking-back svg { width: 16px; height: 16px; transform: rotate(180deg); }
    .booking-summary-box {
      background: linear-gradient(180deg, var(--cream-50), var(--white));
      border: 1px solid var(--line-200);
      border-radius: var(--radius-md);
      padding: var(--space-5) var(--space-5) var(--space-5) calc(var(--space-5) + 8px);
      margin-bottom: var(--space-6);
      position: relative;
    }
    .booking-summary-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 4px;
      background: var(--gradient-gold);
      border-radius: 4px 0 0 4px;
    }
    .booking-summary-row {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid var(--line-100);
      font-size: 0.95rem;
    }
    .booking-summary-row:last-child { border-bottom: 0; }
    .booking-summary-row .lab {
      color: var(--ink-600);
      font-size: 0.74rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .booking-summary-row .val { color: var(--moss-900); font-weight: 600; }

    .booking-step.is-hidden { display: none; }

    .booking-success {
      padding: var(--space-9) var(--space-7);
      text-align: center;
      display: none;
    }
    .booking-success.is-on { display: block; }
    .booking-success-mark {
      width: 76px; height: 76px;
      border-radius: 50%;
      background: var(--gradient-gold);
      color: var(--moss-950);
      display: grid; place-items: center;
      margin: 0 auto var(--space-5);
      box-shadow: var(--shadow-gold);
    }
    .booking-success-mark svg { width: 38px; height: 38px; }
    .booking-success h3 {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 1.7rem;
      color: var(--moss-900);
      margin-bottom: var(--space-3);
      letter-spacing: -0.015em;
    }
    .booking-success p { max-width: 44ch; margin: 0 auto var(--space-5); color: var(--ink-700); }

    .booking-error {
      background: rgba(212, 167, 68, 0.12);
      border: 1px solid var(--gold-500);
      color: var(--moss-900);
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      font-size: 0.92rem;
      margin-bottom: var(--space-4);
      display: none;
    }
    .booking-error.is-on { display: block; }

    .booking-fixed {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--cream-50);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
    }
    .booking-fixed-ic {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--gold-100);
      color: var(--gold-600);
      display: grid; place-items: center;
      flex-shrink: 0;
      border: 1px solid rgba(212, 167, 68, 0.30);
    }
    .booking-fixed-ic svg { width: 20px; height: 20px; }
    .booking-fixed-text strong {
      display: block;
      color: var(--moss-900);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 2px;
    }
    .booking-fixed-text span {
      font-size: 0.82rem;
      color: var(--ink-600);
    }

    /* ===========================================================
       Benefits header (image + intro 2-col)
       =========================================================== */
    .benefits-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-8);
      align-items: center;
      margin-bottom: var(--space-8);
    }
    .benefits-figure {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4 / 3;
      background: var(--moss-900);
    }
    .benefits-figure img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform var(--t-slow) var(--ease-out);
    }
    .benefits-figure:hover img { transform: scale(1.02); }
    .benefits-figure::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, transparent 55%, rgba(212, 167, 68, 0.16)),
        linear-gradient(180deg, transparent 65%, rgba(14, 31, 20, 0.30));
      pointer-events: none;
    }
    .benefits-figure-badge {
      position: absolute;
      bottom: 18px; left: 18px;
      z-index: 1;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 10px 16px;
      border-radius: var(--radius-full);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--moss-900);
      letter-spacing: 0.01em;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255, 255, 255, 0.6);
    }
    .benefits-figure-badge svg { width: 16px; height: 16px; color: var(--gold-600); }
    .benefits-intro h2 { margin-bottom: var(--space-3); }
    .benefits-intro .lead { margin-bottom: 0; }

    /* ===========================================================
       City marquee (rotating ticker)
       =========================================================== */
    .marquee {
      background: var(--white);
      border-top: 1px solid var(--line-100);
      border-bottom: 1px solid var(--line-100);
      padding: 18px 0;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    }
    .marquee-track {
      display: flex;
      gap: var(--space-7);
      animation: marquee-scroll 42s linear infinite;
      width: max-content;
      will-change: transform;
    }
    .marquee:hover .marquee-track { animation-play-state: paused; }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.05rem;
      color: var(--moss-900);
      letter-spacing: -0.005em;
      white-space: nowrap;
    }
    .marquee-item svg {
      width: 18px; height: 18px;
      color: var(--gold-500);
      flex-shrink: 0;
    }
    .marquee-sep {
      display: inline-block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold-500);
      opacity: 0.6;
      align-self: center;
      flex-shrink: 0;
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
    }

    /* ===========================================================
       Key-facts stats block
       =========================================================== */
    .stats { padding: var(--space-8) 0; background: var(--cream-50); }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .stat {
      padding: var(--space-7) var(--space-6);
      position: relative;
      transition: background var(--t-base) var(--ease-out);
    }
    .stat::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gradient-gold);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform var(--t-slow) var(--ease-out);
    }
    .stat.is-visible::after { transform: scaleX(1); }
    .stat:hover { background: var(--cream-50); }
    .stat + .stat::before {
      content: '';
      position: absolute;
      left: 0; top: var(--space-6); bottom: var(--space-6);
      width: 1px;
      background: var(--line-100);
    }
    .stat-label {
      font-size: 0.74rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-600);
      font-weight: 600;
      margin: 0 0 var(--space-4);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .stat-label::before {
      content: '';
      width: 18px; height: 1px;
      background: var(--gold-500);
    }
    .stat-value {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: clamp(2.4rem, 1.6rem + 2.4vw, 3.6rem);
      color: var(--moss-900);
      letter-spacing: -0.025em;
      line-height: 1;
      margin: 0 0 var(--space-4);
    }
    .stat-value .val {
      display: inline-block;
      font-variant-numeric: tabular-nums;
      min-width: 0.6em;
    }
    .stat-value em {
      font-style: italic;
      font-weight: 400;
      color: var(--gold-500);
      font-size: 0.6em;
      letter-spacing: -0.01em;
      margin-left: 8px;
      white-space: nowrap;
    }
    .stat-desc {
      font-size: 0.92rem;
      color: var(--ink-700);
      line-height: 1.55;
      margin: 0;
    }

    /* ===========================================================
       Team brief listing (Sobre page) — no photos, just name + role
       =========================================================== */
    .team-member {
      background: var(--white);
      border: 1px solid var(--line-100);
      border-radius: var(--radius-md);
      padding: var(--space-6) var(--space-5);
      text-align: center;
      transition: border-color var(--t-fast), box-shadow var(--t-base), transform var(--t-base) var(--ease-out);
      position: relative;
      overflow: hidden;
    }
    .team-member::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gradient-gold);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform var(--t-base) var(--ease-out);
    }
    .team-member:hover {
      border-color: var(--line-200);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    .team-member:hover::before { transform: scaleX(1); }
    .team-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--gradient-dark-rich);
      color: var(--gold-400);
      display: grid; place-items: center;
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.05rem;
      letter-spacing: 0.04em;
      margin: 0 auto var(--space-4);
      box-shadow: var(--shadow-moss);
      position: relative;
      overflow: hidden;
    }
    .team-avatar::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(212, 167, 68, 0.18), transparent 55%);
    }
    .team-avatar span { position: relative; z-index: 1; }
    .team-name {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 1.35rem;
      color: var(--moss-900);
      margin: 0 0 8px;
      letter-spacing: -0.005em;
      line-height: 1.25;
    }
    .team-role {
      font-size: 0.78rem;
      color: var(--moss-700);
      font-weight: 600;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      margin: 0;
      line-height: 1.4;
    }

    /* Pillar icon (used on Início and Sobre pillars) */
    .pillar-ic {
      width: 60px; height: 60px;
      border-radius: 16px;
      background: rgba(212, 167, 68, 0.14);
      color: var(--gold-400);
      display: grid; place-items: center;
      margin-bottom: var(--space-4);
      border: 1px solid rgba(212, 167, 68, 0.28);
      position: relative;
      overflow: hidden;
    }
    .pillar-ic::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(212, 167, 68, 0.10), transparent 55%);
      pointer-events: none;
    }
    .pillar-ic svg { width: 28px; height: 28px; position: relative; z-index: 1; }

    /* ===========================================================
       Responsive
       =========================================================== */
    @media (max-width: 1024px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .hero-grid { grid-template-columns: 1fr; gap: var(--space-9); }
      .hero-figure { aspect-ratio: 16 / 11; max-width: 580px; margin: 0 auto; }
      .hero-badge-top { left: -10px; max-width: 240px; }
      .hero-badge-bottom { left: 20px; right: 20px; }
      .two-col { grid-template-columns: 1fr; gap: var(--space-6); }
      .about-photo-wrap { justify-content: center; padding-top: 0; }
      .about-photo {
        max-width: min(100%, 560px);
        width: 100%;
        height: auto !important;
        aspect-ratio: 4 / 3;
      }
      .solution-block { grid-template-columns: 1fr; gap: var(--space-7); }
      .solution-figure { min-height: 320px; padding: var(--space-7); }
      .benefits-header { grid-template-columns: 1fr; gap: var(--space-6); }
      .benefits-figure { aspect-ratio: 16 / 10; max-width: 600px; margin: 0 auto; }
      .section { padding: var(--space-9) 0; }
    }
    @media (max-width: 768px) {
      .section { padding: var(--space-8) 0; }
      .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
      .region { grid-template-columns: 1fr; padding: var(--space-5); }
      .region-list { grid-template-columns: 1fr; }
      /* Contact + deliverable + problem grids: collapse to 1 column on phones */
      .contact-grid { grid-template-columns: 1fr; }
      .problem-grid, .deliverable-grid { grid-template-columns: 1fr; }
      .split-block { grid-template-columns: 1fr; }
      /* Booking summary rows: allow wrapping if value is long */
      .booking-summary-row { flex-wrap: wrap; gap: 4px 12px; }
      .booking-summary-row .val { word-break: break-word; overflow-wrap: anywhere; text-align: right; }
      /* Contact item: allow long emails to wrap inside the card */
      .contact-item a, .contact-item span { word-break: break-word; overflow-wrap: anywhere; }
      .nav-list, .nav-cta { display: none; }
      .topbar-list .hide-mob { display: none; }
      .nav-toggle { display: inline-flex; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .topbar { display: none; }
      .header-inner { padding: var(--space-3) 0; }
      .brand-tag { display: none; }
      .brand-mark { width: 42px; height: 42px; }
      .definition { padding: var(--space-6); }
      .definition blockquote { font-size: 1.1rem; }
      .hero { padding: var(--space-8) 0 var(--space-9); }
      .hero-figure { aspect-ratio: 5 / 6; }
      .hero-badge-top { left: 12px; top: 12px; max-width: 220px; padding: 10px 14px; }
      /* On mobile, tuck the bottom badge INSIDE the figure (no negative offset) so it
         never overlaps the next section. Reduce padding + gaps for tight space. */
      .hero-badge-bottom { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; gap: 6px; }
      .hero-badge strong { font-size: 0.92rem; }
      .nrm-row { gap: 4px; }
      .nrm-chip { font-size: 0.65rem; padding: 3px 8px; }
      .gold-ic { width: 32px; height: 32px; }
      .gold-ic svg { width: 17px; height: 17px; }
      .form-wrap { padding: var(--space-5); }
      .founder { padding: var(--space-5); }
      .solution-figure { padding: var(--space-6) var(--space-5); min-height: 280px; }
      .big-ic { width: 88px; height: 88px; }
      .big-ic svg { width: 40px; height: 40px; }
      .solution-figure-title { font-size: 1.3rem; }
      .indicated-block, .benefits-block { padding: var(--space-5); }
      .block-head { gap: 12px; }
      .ic-circle { width: 42px; height: 42px; }
      .ic-circle svg { width: 20px; height: 20px; }
      .block-head h3 { font-size: 1.15rem; }
      .problem-card { padding: var(--space-4) var(--space-4) var(--space-4) var(--space-5); }
      .manifesto { padding: var(--space-7) var(--space-5); }
      .manifesto-mark { font-size: 4rem; }
      .booking-head { grid-template-columns: 1fr; padding: var(--space-5); }
      .booking-cost { text-align: left; }
      .booking-body { padding: var(--space-5); }
      .booking-confirm { padding: var(--space-5); }
      .booking-confirm-intro { padding: var(--space-4); }
      .booking-foot { padding: var(--space-4) var(--space-5); flex-direction: column; align-items: stretch; }
      .booking-foot .btn { width: 100%; }
      .booking-week { gap: 6px; }
      .booking-day { padding: 10px 4px; }
      .booking-day-num { font-size: 1.15rem; }
      .booking-success { padding: var(--space-8) var(--space-5); }
      .stats { padding: var(--space-7) 0; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat + .stat::before { display: none; }
      .stat + .stat { border-top: 1px solid var(--line-100); }
      .stat { padding: var(--space-6) var(--space-5); }
      .marquee { padding: 14px 0; }
      .marquee-track { gap: var(--space-6); animation-duration: 30s; }
      .marquee-item { font-size: 0.95rem; }
      .pillar-ic { width: 54px; height: 54px; }
      .pillar-ic svg { width: 26px; height: 26px; }
      .founder-name { font-size: 1.45rem; }
      .group-heading { gap: var(--space-3); }
      .pillar-num { font-size: 2.6rem; }
      .final-cta { padding: var(--space-7) var(--space-5); }
    }
    @media (max-width: 480px) {
      .container { padding: 0 var(--space-4); }
      .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
      .hero-cta .btn, .form-actions .btn, .final-cta .btn { width: 100%; }
      .fab-wa { width: 54px; height: 54px; }
      .fab-wa svg { width: 26px; height: 26px; }
      .final-cta { padding: var(--space-6) var(--space-4); }
      .brand-name { font-size: 1.2rem; }
      .hero { padding: var(--space-7) 0 var(--space-8); }
      .hero h1 { letter-spacing: -0.02em; }
      .hero-figure { aspect-ratio: 4 / 5; }
      .definition { padding: var(--space-5); }
    }

    /* ===========================================================
       Premium visual pass — 21st.dev-inspired static treatment
       =========================================================== */
    :root {
      --porcelain-50: #FCFBF7;
      --sage-50: #F2F6EE;
      --sage-100: #E6EEE0;
      --copper-500: #B97938;
      --ink-soft: rgba(13, 19, 16, 0.68);
      --shadow-premium: 0 34px 90px rgba(14, 31, 20, 0.16), 0 10px 24px rgba(14, 31, 20, 0.08);
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        linear-gradient(rgba(38, 75, 51, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 75, 51, 0.035) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 42%);
      -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 42%);
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      z-index: 2000;
      background: transparent;
      pointer-events: none;
    }
    .scroll-progress span {
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, var(--gold-500), var(--avocado-500), var(--moss-600));
      transform: scaleX(0);
      transform-origin: left center;
      box-shadow: 0 0 24px rgba(212, 167, 68, 0.36);
    }

    .header {
      transition: background var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
    }
    .header.is-scrolled {
      background: rgba(252, 251, 247, 0.93);
      border-bottom-color: rgba(224, 216, 189, 0.82);
      box-shadow: 0 18px 50px rgba(14, 31, 20, 0.09);
    }

    .hero {
      isolation: isolate;
      background:
        linear-gradient(135deg, rgba(242, 246, 238, 0.96), rgba(252, 251, 247, 0.94) 42%, rgba(244, 236, 214, 0.84)),
        linear-gradient(rgba(38, 75, 51, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 75, 51, 0.055) 1px, transparent 1px);
      background-size: auto, 42px 42px, 42px 42px;
    }
    .hero::before {
      top: auto;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 56%;
      background:
        linear-gradient(180deg, transparent, rgba(14, 31, 20, 0.055)),
        repeating-linear-gradient(90deg, rgba(184, 146, 58, 0.18) 0 1px, transparent 1px 96px);
      mask-image: linear-gradient(180deg, transparent, #000 44%, transparent 100%);
      -webkit-mask-image: linear-gradient(180deg, transparent, #000 44%, transparent 100%);
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(90deg, rgba(252, 251, 247, 0.88), transparent 38%, rgba(252, 251, 247, 0.62));
    }
    .hero-grid { position: relative; z-index: 1; }
    .hero h1 {
      max-width: 11ch;
      text-wrap: balance;
    }
    .hero .lead {
      color: var(--ink-soft);
      max-width: 66ch;
    }
    .hero .eyebrow {
      padding: 8px 12px;
      border: 1px solid rgba(184, 146, 58, 0.24);
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.58);
      box-shadow: var(--shadow-xs);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .hero .eyebrow::before { width: 18px; }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 var(--space-5);
    }
    .hero-proof span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 8px 13px;
      border-radius: var(--radius-full);
      border: 1px solid rgba(224, 216, 189, 0.92);
      background: rgba(255, 255, 255, 0.68);
      color: var(--moss-800);
      font-size: 0.84rem;
      font-weight: 600;
      box-shadow: 0 10px 28px rgba(14, 31, 20, 0.05);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .hero-proof svg { width: 16px; height: 16px; color: var(--gold-600); flex-shrink: 0; }

    .hero-figure {
      box-shadow: var(--shadow-premium);
      transform-style: preserve-3d;
    }
    .hero-figure::before {
      content: '';
      position: absolute;
      inset: -14px;
      border: 1px solid rgba(184, 146, 58, 0.30);
      border-radius: calc(var(--radius-xl) + 14px);
      pointer-events: none;
    }
    .hero-figure::after {
      content: '';
      position: absolute;
      inset: 24px -22px -22px 24px;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(38, 75, 51, 0.12), rgba(184, 146, 58, 0.13));
      z-index: -1;
      pointer-events: none;
    }
    .hero-figure-inner {
      border: 1px solid rgba(255, 255, 255, 0.70);
    }
    .hero-figure img {
      transition: transform 900ms var(--ease-out);
      will-change: transform;
    }
    .hero-badge {
      border-radius: 16px;
      box-shadow: 0 22px 60px rgba(14, 31, 20, 0.18), 0 2px 0 rgba(255, 255, 255, 0.7) inset;
    }

    .premium-stats {
      padding-top: var(--space-7);
      background: linear-gradient(180deg, rgba(252, 251, 247, 0.92), var(--cream-50));
    }
    .stats-grid {
      border-radius: 28px;
      box-shadow: var(--shadow-premium);
      border-color: rgba(224, 216, 189, 0.78);
    }
    .stat {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(252,251,247,0.74)),
        linear-gradient(rgba(38, 75, 51, 0.04) 1px, transparent 1px);
      background-size: auto, 100% 18px;
    }

    .benefits-luxe {
      background:
        linear-gradient(180deg, var(--sage-50), var(--cream-50));
    }
    .benefits-luxe .benefits-figure {
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: var(--shadow-premium);
    }
    .benefits-luxe .grid-3 {
      align-items: stretch;
    }

    .card {
      border-color: rgba(224, 216, 189, 0.82);
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(252,251,247,0.90));
      box-shadow: 0 1px 0 rgba(255,255,255,0.72) inset;
    }
    .card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 0%, transparent 34%, rgba(255,255,255,0.46) 46%, transparent 58%, transparent 100%);
      transform: translateX(-120%);
      transition: transform 760ms var(--ease-out);
      pointer-events: none;
    }
    .card:hover::after { transform: translateX(120%); }
    .card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow-premium);
    }
    .card h3 { text-wrap: balance; }

    .card-dark,
    .solutions-luxe .card-dark {
      background:
        linear-gradient(135deg, rgba(14, 31, 20, 0.98), rgba(38, 75, 51, 0.96) 58%, rgba(20, 41, 27, 0.98)),
        var(--gradient-dark-rich);
      border-color: rgba(212, 167, 68, 0.28);
      color: rgba(255, 255, 255, 0.86);
      box-shadow: var(--shadow-premium);
    }
    .card-dark h3,
    .solutions-luxe .card-dark h3 {
      color: var(--white) !important;
    }
    .card-dark p,
    .solutions-luxe .card-dark p {
      color: rgba(255, 255, 255, 0.78) !important;
    }
    .card-dark .card-link,
    .solutions-luxe .card-dark .card-link {
      color: var(--gold-400) !important;
      border-top-color: rgba(255, 255, 255, 0.16) !important;
    }
    .card-dark .card-link:hover,
    .solutions-luxe .card-dark .card-link:hover {
      color: var(--white) !important;
    }

    .solutions-luxe {
      background:
        linear-gradient(180deg, var(--porcelain-50), var(--white));
    }
    .solutions-luxe > .container {
      position: relative;
    }
    .solutions-luxe > .container::before {
      content: '';
      position: absolute;
      top: -30px;
      left: var(--space-5);
      right: var(--space-5);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(184, 146, 58, 0.6), transparent);
    }
    .solutions-luxe .grid-3 {
      grid-template-columns: repeat(12, 1fr);
    }
    .solutions-luxe .grid-3 > .card {
      grid-column: span 4;
      min-height: 292px;
    }
    .solutions-luxe .grid-3 > .card:nth-child(4) {
      grid-column: span 12;
      min-height: 230px;
    }
    .solutions-luxe .grid-3:has(> .card:nth-child(2):last-child) > .card {
      grid-column: span 6;
    }
    .solutions-luxe .group-heading {
      border-bottom-color: rgba(184, 146, 58, 0.22);
    }

    .region {
      box-shadow: var(--shadow-premium);
      background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(242,246,238,0.78)),
        linear-gradient(rgba(38, 75, 51, 0.045) 1px, transparent 1px);
      background-size: auto, 100% 24px;
    }
    .region::before {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, transparent 48%, rgba(212, 167, 68, 0.10));
    }

    .definition {
      box-shadow: var(--shadow-premium);
    }

    .final-cta {
      box-shadow: 0 34px 100px rgba(14, 31, 20, 0.28);
      border: 1px solid rgba(212, 167, 68, 0.20);
    }
    .final-cta::before,
    .final-cta::after {
      background:
        linear-gradient(rgba(212, 167, 68, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 167, 68, 0.12) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: 0.45;
      inset: 0;
      width: auto;
      height: auto;
      mask-image: linear-gradient(120deg, transparent 0%, #000 50%, transparent 100%);
      -webkit-mask-image: linear-gradient(120deg, transparent 0%, #000 50%, transparent 100%);
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px) scale(0.985);
      transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    @media (min-width: 1025px) {
      .benefits-luxe .grid-3 .card:nth-child(1),
      .benefits-luxe .grid-3 .card:nth-child(6) {
        transform: translateY(-10px);
      }
      .benefits-luxe .grid-3 .card:nth-child(1):hover,
      .benefits-luxe .grid-3 .card:nth-child(6):hover {
        transform: translateY(-17px);
      }
    }

    @media (max-width: 1024px) {
      .hero h1 { max-width: 13ch; }
      .solutions-luxe .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .solutions-luxe .grid-3 > .card,
      .solutions-luxe .grid-3 > .card:nth-child(4),
      .solutions-luxe .grid-3:has(> .card:nth-child(2):last-child) > .card {
        grid-column: auto;
      }
    }

    @media (max-width: 768px) {
      body::before { background-size: 42px 42px; }
      .hero h1 { max-width: none; }
      .hero-proof span {
        width: 100%;
        justify-content: flex-start;
      }
      .hero-grid {
        gap: var(--space-6);
      }
      .hero-figure {
        width: 100%;
        max-width: 430px;
        margin: var(--space-4) auto 0;
        aspect-ratio: 4 / 5;
        overflow: hidden;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-premium);
      }
      .hero-figure::before,
      .hero-figure::after {
        display: none;
      }
      .hero-figure-inner {
        position: relative;
        inset: auto;
        width: 100%;
        height: 100%;
        border-radius: inherit;
      }
      .hero-figure img {
        transform: none !important;
        width: 100%;
        height: 100%;
        object-position: center top;
      }
      .hero-badge {
        max-width: calc(100% - 24px);
      }
      .hero-badge-top {
        left: 12px;
        top: 12px;
        right: auto;
      }
      .hero-badge-bottom {
        left: 12px;
        right: 12px;
        bottom: 12px;
      }
      .solutions-luxe .grid-3 { grid-template-columns: 1fr; }
      .stats-grid,
      .region,
      .definition,
      .final-cta {
        border-radius: var(--radius-lg);
      }
    }
