/* ============================================================
   HawkSolutions.tech — Shared Design System
   Rebuild 2026-07 · Magic X Tier C · "Warm Machine"
   Fraunces (display) + Geist (body) + Geist Mono (labels)
   Warm-dark + sage, one brass jewel accent.
   Loaded by every page (index/web-design/pricing/services/...).
   ============================================================ */

/* ---- Fonts (Google Fonts for build; self-host before final ship per REBUILD_SPEC) ---- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=Geist:wght@300..700&family=Geist+Mono:wght@400;500&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* --- Palette (WCAG-checked against Ink) --- */
  --ink:        #07100C;   /* primary dark bg */
  --ink-2:      #040A07;   /* deepest sections / footer */
  --ink-glass:  rgba(11, 20, 15, 0.55);  /* glass nav/card base */
  --sage:       #8BA888;   /* primary accent · 7.3:1 on ink (AAA) */
  --sage-bright:#A4C5A1;   /* hover / glow only */
  --sage-ink:   #3E5A3B;   /* accent on cream */
  --cream:      #F4F0E8;   /* alt light sections */
  --bone:       #FDFAF5;   /* card surfaces / primary text on ink */
  --brass:      #B8912F;   /* THE jewel — recommended tier + 1 hero detail · 6:1 on ink */
  --brass-lit:  #D8AF48;   /* brass hover */

  /* --- Text --- */
  --text-on-ink:        #FDFAF5;              /* body on dark · ~19:1 */
  --text-on-ink-muted:  rgba(253, 250, 245, 0.66); /* secondary · ~5.2:1 (AA) */
  --text-on-ink-faint:  rgba(253, 250, 245, 0.42); /* eyebrow/meta on dark */
  --text-on-cream:      #14201A;              /* body on light */
  --text-on-cream-muted:rgba(20, 32, 26, 0.68);

  /* --- Borders / hairlines --- */
  --line-on-ink:   rgba(253, 250, 245, 0.10);
  --line-on-cream: rgba(20, 32, 26, 0.12);

  /* --- Type families --- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, 'SFMono-Regular', 'JetBrains Mono', monospace;

  /* --- Type scale (fluid) --- */
  --fs-hero:   clamp(3.5rem, 9.5vw, 8.25rem);   /* ~56 → 132px, big editorial */
  --fs-h1:     clamp(2.5rem, 5.5vw, 4.25rem);
  --fs-h2:     clamp(2rem, 4vw, 3.25rem);
  --fs-h3:     clamp(1.4rem, 2.2vw, 1.9rem);
  --fs-lead:   clamp(1.125rem, 1.5vw, 1.375rem);/* subheads / lead paragraphs */
  --fs-body:   1.0625rem;                        /* 17px base */
  --fs-small:  0.9375rem;                        /* 15px */
  --fs-eyebrow:0.8125rem;                        /* 13px mono labels */

  --lh-tight:  1.04;   /* display headlines */
  --lh-snug:   1.18;
  --lh-body:   1.62;

  /* --- Spacing rhythm (4/8 base) --- */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.5rem;  --space-6: 2rem;
  --space-8: 3rem;     --space-10: 4rem;   --space-12: 6rem;
  --section-y: clamp(6rem, 14vh, 12.5rem);       /* generous — whitespace = confidence */
  --gutter:    clamp(1.25rem, 5vw, 5rem);
  --maxw:      1280px;
  --maxw-text: 68ch;

  /* --- Radius / elevation --- */
  --r-sm: 10px;  --r-md: 16px;  --r-lg: 24px;  --r-pill: 100px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lift: 0 16px 56px rgba(0,0,0,0.50);
  --glow-brass:  0 0 0 1px rgba(184,145,47,0.5), 0 0 40px rgba(184,145,47,0.28);
  --glow-sage:   0 0 30px rgba(139,168,136,0.22);

  /* --- Motion (Emil rules: fast-out-slow-in entrances) --- */
  --ease-out:   cubic-bezier(0.23, 1, 0.32, 1);   /* Emil's strong ease-out */
  --ease-inout: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-fast:   180ms;
  --dur-med:    320ms;
  --dur-slow:   560ms;

  --z-nav: 100;  --z-overlay: 200;  --z-modal: 300;
}

/* ============================================================
   BASE / RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-on-ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--sage-bright); outline-offset: 3px; border-radius: 3px; }

/* ============================================================
   TYPOGRAPHY PRIMITIVES
   ============================================================ */
.display, h1, h2, h3 { font-family: var(--font-display); font-weight: 380; line-height: var(--lh-snug); letter-spacing: -0.015em; }
.display { font-size: var(--fs-hero); line-height: var(--lh-tight); letter-spacing: -0.03em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
/* Fraunces italic emphasis — the signature "handled every month." move */
.display em, h1 em, h2 em, h3 em { font-style: italic; font-weight: 340; color: var(--sage-bright); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.lead { font-size: var(--fs-lead); color: var(--text-on-ink-muted); line-height: 1.5; max-width: 52ch; }
.muted { color: var(--text-on-ink-muted); }
.mono { font-family: var(--font-mono); }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.sec-ink   { background: var(--ink);   color: var(--text-on-ink); }
.sec-ink2  { background: var(--ink-2); color: var(--text-on-ink); }
.sec-cream { background: var(--cream); color: var(--text-on-cream); }
.sec-cream .eyebrow { color: var(--sage-ink); }
.sec-cream .lead, .sec-cream .muted { color: var(--text-on-cream-muted); }
.sec-cream .display em, .sec-cream h2 em { color: var(--sage-ink); }

/* Editorial asymmetry helpers — break center-alignment */
.grid { display: grid; gap: var(--space-6); }
.split-7-5 { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 6vw, 6rem); align-items: end; }
.offset-lead { margin-left: clamp(0px, 8vw, 8rem); } /* nudge supporting column off-axis */
@media (max-width: 860px) { .split-7-5 { grid-template-columns: 1fr; } .offset-lead { margin-left: 0; } }

/* ============================================================
   BUTTONS (flex-centered per Magic X rule)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.95rem 1.6rem; border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 560; font-size: var(--fs-small);
  letter-spacing: 0.01em; min-height: 48px;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
/* Primary — brass jewel, reserved for the main CTA */
.btn-brass { background: linear-gradient(135deg, #C79A34 0%, var(--brass-lit) 48%, #B08526 100%); color: #1B1405; box-shadow: 0 3px 16px rgba(184,145,47,0.36), inset 0 1px 0 rgba(255,225,140,0.28); }
.btn-brass:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,145,47,0.42), inset 0 1px 0 rgba(255,225,140,0.30); }
/* Secondary — sage outline on dark */
.btn-ghost { border: 1px solid rgba(139,168,136,0.45); color: var(--bone); }
.btn-ghost:hover { border-color: var(--sage); background: rgba(139,168,136,0.10); transform: translateY(-2px); }

/* ============================================================
   GLASS SURFACES (nav + cards only — never scroll-driven)
   ============================================================ */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.035) 100%);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-on-ink);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   SCROLL-REVEAL (IntersectionObserver toggles .in)
   Staggered via --i on children; honors reduced-motion above.
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.in { opacity: 1; transform: none; }


/* ===== Component styles (moved from index.html for multi-page sharing) ===== */
/* ---- Page-specific: nav + hero ---- */
  .nav {
    position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; padding: 1rem var(--gutter);
    transition: background var(--dur-med) var(--ease-out), border-color var(--dur-med), backdrop-filter var(--dur-med);
    border-bottom: 1px solid transparent;
  }
  .nav.on {
    background: var(--ink-glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line-on-ink);
  }
  .nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.02em; color: var(--bone); }
  .nav-logo img { height: 30px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 2rem; }
  .nav-links a { font-size: var(--fs-small); color: var(--text-on-ink-muted); transition: color var(--dur-fast) var(--ease-out); }
  .nav-links a:hover { color: var(--bone); }
  .nav-cta { display: flex; align-items: center; gap: 1.25rem; }
  .nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
  .nav-burger span { width: 24px; height: 2px; background: var(--bone); border-radius: 2px; transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast); }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--ink); display: flex; flex-direction: column; justify-content: center; gap: 1.4rem; padding: 5rem var(--gutter) 2rem; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility 0s linear var(--dur-med); }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out); }
  .mobile-menu .m-link { font-family: var(--font-display); font-size: 2.2rem; font-weight: 380; color: var(--bone); }
  .mobile-menu .btn { margin-top: 1.2rem; align-self: flex-start; }

  .hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 6rem; overflow: hidden; }
  /* soft sage/brass ambient wash — CSS only, no WebGL */
  .hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
      radial-gradient(60% 55% at 78% 30%, rgba(139,168,136,0.16), transparent 70%),
      radial-gradient(45% 45% at 12% 80%, rgba(184,145,47,0.10), transparent 70%);
  }
  .hero-grid { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: 1.35fr 0.65fr; gap: clamp(2rem, 6vw, 5rem); align-items: end; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.75rem; }
  .hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--sage); }
  .hero h1 { margin-bottom: 1.9rem; }
  .hero-lead { margin-bottom: 2.5rem; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
  .hero-meta { margin-top: 2.75rem; font-family: var(--font-mono); font-size: var(--fs-eyebrow); color: var(--text-on-ink-faint); letter-spacing: 0.06em; }

  /* right column — proof card */
  .proof-card { padding: 1.75rem; border-radius: var(--r-lg); }
  .proof-card .k { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--bone); }
  .proof-card .k em { font-style: italic; color: var(--brass); }
  .proof-card .label { font-family: var(--font-mono); font-size: var(--fs-eyebrow); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-ink-faint); margin-top: 0.5rem; }
  .proof-divider { height: 1px; background: var(--line-on-ink); margin: 1.4rem 0; }
  .proof-quote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.4; color: var(--text-on-ink-muted); }
  .proof-by { font-family: var(--font-mono); font-size: var(--fs-eyebrow); color: var(--text-on-ink-faint); margin-top: 0.8rem; letter-spacing: 0.06em; }

  /* ---- The Reality ---- */
  .reality-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: end; }
  .reality-pain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(3rem, 6vw, 5rem); }
  .pain { padding-top: 1.5rem; border-top: 1px solid var(--line-on-cream); }
  .pain-icon { width: 30px; height: 30px; color: var(--sage-ink); margin-bottom: 0.95rem; }
  .pain-icon svg { width: 100%; height: 100%; display: block; }
  .pain h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; letter-spacing: normal; margin: 0 0 0.45rem; color: var(--text-on-cream); }
  .pain p { font-size: var(--fs-small); color: var(--text-on-cream-muted); }

  /* ---- Services bento ---- */
  .svc-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
  .bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .tile { padding: clamp(1.7rem, 2.4vw, 2.4rem); border-radius: var(--r-lg); display: flex; flex-direction: column; min-height: 260px;
          transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), background var(--dur-med); }
  .tile:hover { transform: translateY(-5px); border-color: rgba(139,168,136,0.4); }
  .tile-lg { grid-column: span 2; }
  .tile .bucket { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
  .tile h3 { margin: 0.85rem 0 0.55rem; font-weight: 380; }
  .tile p { color: var(--text-on-ink-muted); font-size: var(--fs-small); max-width: 46ch; }
  .pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
  .pill { display: inline-flex; align-items: center; gap: 0.42rem; padding: 0.4rem 0.72rem; border-radius: var(--r-pill);
          background: rgba(255,255,255,0.045); border: 1px solid var(--line-on-ink); font-size: 0.78rem; color: var(--text-on-ink-muted);
          transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast); }
  .tile:hover .pill { border-color: rgba(139,168,136,0.28); }
  .pill svg { width: 13px; height: 13px; color: var(--sage); flex-shrink: 0; }
  .tile-arrow { margin-top: auto; padding-top: 1.3rem; font-family: var(--font-mono); font-size: var(--fs-small); color: var(--sage);
                display: inline-flex; align-items: center; gap: 0.4rem; }
  .tile-arrow b { font-weight: inherit; transition: transform var(--dur-fast) var(--ease-out); }
  .tile:hover .tile-arrow b { transform: translateX(4px); }
  /* Web Design flagship tile */
  .tile-flag { grid-column: span 3; flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem;
               border-color: rgba(184,145,47,0.35); background: linear-gradient(135deg, rgba(184,145,47,0.10) 0%, rgba(255,255,255,0.03) 60%); min-height: auto; }
  .tile-flag .bucket { color: var(--brass); }
  .tile-flag h3 { margin-top: 0.85rem; }
  .tile-flag h3 em { color: var(--brass); }
  .tile-flag .flag-copy { max-width: 64ch; }
  .tile-flag .pill svg { color: var(--brass); }
  .tile-flag .tile-arrow { margin-top: 0; padding-top: 0; color: var(--brass); flex-shrink: 0; }

  @media (max-width: 900px) {
    .nav-links, .nav-cta .btn { display: none; }
    .nav-burger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; align-items: start; gap: 2.5rem; }
    .proof-card { max-width: 420px; }
    .reality-head { grid-template-columns: 1fr; }
    .reality-pain { grid-template-columns: 1fr; gap: 0; }
    .pain { margin-top: 0; padding-block: 1.4rem; }
    .bento { grid-template-columns: 1fr; }
    .tile-lg, .tile-flag { grid-column: span 1; }
    .tile-flag { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  }

  /* ---- Web Design showcase ---- */
  .show-head { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
  .show-head-aside { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--line-on-cream); box-shadow: 0 30px 80px rgba(20,32,26,0.18); background: #fff; }
  .frame-bar { display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 16px; background: #101A15; }
  .frame-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.22); }
  .frame-url { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.55); margin-left: 10px; }
  .frame-open { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--sage-bright); }
  .frame-open:hover { color: #fff; }
  .frame-view { position: relative; width: 100%; aspect-ratio: 1440 / 900; overflow: hidden; background: #fff; }
  .frame-view iframe { position: absolute; top: 0; left: 0; width: 1440px; height: 900px; border: 0; transform-origin: top left; pointer-events: none; }
  .show-cap { display: flex; justify-content: space-between; gap: 2rem 3rem; flex-wrap: wrap; margin-top: 1.6rem; }
  .show-cap strong { font-weight: 600; color: var(--text-on-cream); }
  .show-cap .cap-sub { display: block; color: var(--text-on-cream-muted); font-size: var(--fs-small); margin-top: 0.35rem; }
  .show-proof { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.4; color: var(--sage-ink); max-width: 34ch; }
  @media (max-width: 900px) { .show-head { grid-template-columns: 1fr; } }

  /* ---- Pricing ---- */
  .pc-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.75rem; margin-bottom: clamp(2.75rem, 5vw, 4rem); }
  .bill-toggle { position: relative; display: flex; width: min(330px, 92vw); background: rgba(255,255,255,0.06); border: 1px solid var(--line-on-ink); border-radius: var(--r-pill); padding: 4px; }
  .bill-opt { flex: 1; position: relative; z-index: 1; padding: 0.6rem 0.5rem; border-radius: var(--r-pill); font-size: var(--fs-small); color: var(--text-on-ink-muted); text-align: center; white-space: nowrap; transition: color var(--dur-fast) var(--ease-out); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
  .bill-opt.on { color: var(--ink); font-weight: 560; }
  .bill-opt .save { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; padding: 2px 6px; border-radius: 100px; background: rgba(184,145,47,0.9); color: #1B1405; }
  .bill-opt.on .save { background: rgba(11,20,15,0.28); color: var(--ink); }
  .bill-thumb { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); width: calc(50% - 4px); background: var(--sage); border-radius: var(--r-pill); z-index: 0; transition: transform var(--dur-med) var(--ease-out); }
  .bill-toggle.annual .bill-thumb { transform: translateX(100%); }

  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
  .pc-card { position: relative; display: flex; flex-direction: column; padding: clamp(1.8rem, 2.5vw, 2.5rem); border-radius: var(--r-lg);
             background: linear-gradient(135deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.025) 100%); border: 1px solid var(--line-on-ink);
             transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med); }
  .pc-card:not(.pc-pop):hover { transform: translateY(-5px); border-color: rgba(139,168,136,0.35); }
  .pc-pop { border: 1.5px solid rgba(184,145,47,0.6); box-shadow: var(--glow-brass); transform: translateY(-12px);
            background: linear-gradient(150deg, rgba(184,145,47,0.12) 0%, rgba(255,255,255,0.03) 55%, rgba(184,145,47,0.06) 100%); }
  .pc-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #C79A34, var(--brass-lit)); color: #1B1405;
              font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
  .pc-tier { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
  .pc-pop .pc-tier { color: var(--brass); }
  .pc-oneline { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.35; color: var(--text-on-ink-muted); margin: 0.65rem 0 1.3rem; min-height: 2.7em; }
  .pc-price { font-family: var(--font-display); display: flex; align-items: baseline; gap: 1px; color: var(--bone); }
  .pc-price .cur { font-size: 1.7rem; font-weight: 400; }
  .pc-price .amt { font-size: clamp(3rem, 5vw, 4rem); line-height: 1; font-weight: 360; }
  .pc-price .per { font-size: 1rem; color: var(--text-on-ink-muted); font-family: var(--font-body); margin-left: 5px; }
  .pc-note { font-size: 0.82rem; color: var(--text-on-ink-faint); font-family: var(--font-mono); margin-top: 0.55rem; min-height: 1.4em; }
  .pc-note .note-a { display: none; }
  .pc-note .note-a b { color: var(--text-on-ink-muted); font-weight: 500; }
  .pc-card.annual .note-m { display: none; }
  .pc-card.annual .note-a { display: inline; }
  .pc-feats { display: flex; flex-direction: column; gap: 0.72rem; margin: 1.6rem 0; flex: 1; }
  .feat { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-small); color: var(--text-on-ink-muted); line-height: 1.45; }
  .feat svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
  .pc-pop .feat svg { color: var(--brass); }
  .feat.lead-in { color: var(--bone); font-weight: 500; }
  .pc-cta { margin-top: auto; width: 100%; }

  /* Web Design banner */
  .wd-banner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; margin-top: 1.75rem;
               padding: clamp(1.8rem, 3vw, 2.6rem); border-radius: var(--r-lg); border: 1px solid rgba(184,145,47,0.3);
               background: linear-gradient(135deg, rgba(184,145,47,0.09) 0%, rgba(255,255,255,0.02) 60%); }
  .wd-left { max-width: 30rem; }
  .wd-left .pc-tier { color: var(--brass); }
  .wd-price { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--bone); margin: 0.5rem 0 0.4rem; }
  .wd-price .cur { color: var(--brass); }
  .wd-left p { color: var(--text-on-ink-muted); font-size: var(--fs-small); }
  .wd-feats { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin: 1rem 0 0; }
  .wd-feats .feat { font-size: 0.85rem; }

  @media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pc-pop { order: -1; transform: none; }
    .pc-oneline { min-height: 0; }
    .wd-banner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  }

  /* ---- Contact / Free Snapshot ---- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
  .contact-copy .lead { margin: 1.4rem 0 0; }
  .snap-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.4rem; }
  .snap-list .feat { color: var(--text-on-ink-muted); }
  .snap-list .feat svg { color: var(--sage); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
  .form-card { background: var(--bone); border: 1px solid var(--line-on-cream); border-radius: var(--r-lg); padding: clamp(1.7rem, 3vw, 2.4rem); box-shadow: 0 24px 64px rgba(20,32,26,0.12); }
  .form-row { margin-bottom: 1rem; }
  .form-row label { display: block; font-size: 0.72rem; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-on-cream-muted); margin-bottom: 0.4rem; }
  .form-row input { width: 100%; padding: 0.85rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--line-on-cream); background: #fff; font: inherit; font-size: var(--fs-small); color: var(--text-on-cream); transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
  .form-row input:focus { outline: none; border-color: var(--sage-ink); box-shadow: 0 0 0 3px rgba(139,168,136,0.20); }
  .form-card .btn { width: 100%; margin-top: 0.4rem; }
  .form-fine { font-size: 0.75rem; color: var(--text-on-cream-muted); text-align: center; margin-top: 0.9rem; }
  .form-success { display: none; text-align: center; padding: 1.5rem 0; }
  .form-card.done .form-fields { display: none; }
  .form-card.done .form-success { display: block; }
  .form-success .check { width: 46px; height: 46px; color: var(--sage-ink); margin: 0 auto 1rem; }
  .form-success h3 { color: var(--text-on-cream); margin-bottom: 0.5rem; }
  .form-success p { color: var(--text-on-cream-muted); font-size: var(--fs-small); }

  /* ---- Footer ---- */
  .footer { background: var(--ink-2); padding: clamp(4rem, 7vw, 6rem) 0 2rem; }
  .foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2.5rem; }
  .foot-brand .nav-logo { margin-bottom: 1.1rem; }
  .foot-brand p { color: var(--text-on-ink-muted); font-size: var(--fs-small); max-width: 32ch; }
  .foot-col h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-on-ink-faint); margin-bottom: 1rem; }
  .foot-col a { display: block; color: var(--text-on-ink-muted); font-size: var(--fs-small); padding: 0.32rem 0; transition: color var(--dur-fast) var(--ease-out); }
  .foot-col a:hover { color: var(--bone); }
  .foot-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
  .foot-social a { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-on-ink); color: var(--text-on-ink-muted); padding: 0; }
  .foot-social a:hover { color: var(--bone); border-color: var(--sage); }
  .foot-social svg { width: 18px; height: 18px; }
  .foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: clamp(3rem, 5vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line-on-ink); font-family: var(--font-mono); font-size: 12px; color: var(--text-on-ink-faint); }

  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

  /* ---- Motion polish (emil-design-eng gate) ---- */
  /* Signature scroll moment: the showcase frame rises and settles (bigger, slower than the tiles) */
  .frame.reveal { opacity: 0; transform: translateY(48px) scale(0.965);
    transition: opacity 700ms var(--ease-out), transform 900ms var(--ease-out); }
  .frame.reveal.in { opacity: 1; transform: none; }
  /* Don't fire hover-lift transforms on touch devices (a tap shouldn't trigger a false hover) */
  @media (hover: none) {
    .btn:hover, .tile:hover, .pc-card:not(.pc-pop):hover { transform: none; }
  }

  /* ---- FAQ ---- */
  .faq-head { max-width: 700px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
  .faq-list { max-width: 840px; }
  .faq-item { border-top: 1px solid var(--line-on-cream); }
  .faq-item:last-child { border-bottom: 1px solid var(--line-on-cream); }
  .faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.45rem 0; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 400; color: var(--text-on-cream); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-ic { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
  .faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--sage-ink); transition: transform var(--dur-med) var(--ease-out); }
  .faq-ic::before { top: 9px; left: 0; width: 20px; height: 2px; }
  .faq-ic::after { top: 0; left: 9px; width: 2px; height: 20px; }
  .faq-item[open] .faq-ic::after { transform: scaleY(0); }
  .faq-a { padding: 0 0 1.6rem; max-width: 64ch; }
  .faq-a p { color: var(--text-on-cream-muted); font-size: var(--fs-body); line-height: 1.62; }
