/* ============================================================
   Sydney Website Dev | Design System
   Concept: "Proof, not promises." Warm-dark editorial + brass
   + blueprint motif. Performance-first. Tame, not flashy.
   ============================================================ */

/* ---------- Fonts ----------
   Display: Clash Display (Fontshare)  |  Body: General Sans (Fontshare)
   Self-host as woff2 in a later perf pass. */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=general-sans@400,500,600,700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* colour */
  --ink:        #15120E;
  --ink-2:      #19150F;
  --surface:    #211C14;
  --surface-2:  #2A2419;
  --bone:       #F4EEE2;
  --bone-dim:   #D9D1C0;
  --muted:      #A89E8C;
  --muted-2:    #7E7666;
  --brass:      #CBA35C;
  --brass-2:    #E6B84F;
  --brass-deep: #9C7C3E;
  --line:       rgba(244, 238, 226, 0.10);
  --line-2:     rgba(244, 238, 226, 0.06);
  --grid-line:  rgba(244, 238, 226, 0.035);

  /* type */
  --font-display: 'Clash Display', 'Arial Narrow', sans-serif;
  --font-body:    'General Sans', system-ui, -apple-system, sans-serif;

  /* spacing scale (4px base) */
  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem;
  --s6: 1.5rem; --s8: 2rem; --s12: 3rem; --s16: 4rem;
  --s24: 6rem; --s32: 8rem;

  /* layout */
  --container: 1240px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.5s;

  --shadow: 0 1px 0 rgba(244,238,226,0.04) inset, 0 24px 60px -28px rgba(0,0,0,0.7);
  --shadow-lg: 0 40px 90px -40px rgba(0,0,0,0.85);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--brass); color: var(--ink); }

/* ---------- Blueprint backdrop ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); position: relative; z-index: 1; }
.section { padding-block: clamp(4rem, 10vh, 7.5rem); position: relative; }
.section--tint { background: var(--ink-2); }

/* Mini-eyebrow labels removed sitewide for variety. To restore, give .eyebrow
   display:inline-flex again. */
.eyebrow { display: none; }

.section-head { max-width: 48rem; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem); line-height: 1.04;
  letter-spacing: -0.02em;
}
.section-sub { color: var(--muted); margin-top: 1.1rem; font-size: 1.075rem; max-width: 42rem; }

/* Emphasis system: brass colour (.hl) + bold (<strong>). No italics. */
.hl { color: var(--brass-2); }
.accent { color: var(--brass-2); font-weight: 500; }
strong { color: var(--bone); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.5rem; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform 0.35s var(--ease);
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brass); color: #1a1509; box-shadow: 0 8px 20px -12px rgba(203,163,92,0.3); }
.btn--primary:hover { background: var(--brass-2); }
.btn--ghost { border: 1px solid var(--line); color: var(--bone); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-2); }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.btn__inner { display: inline-flex; align-items: center; gap: 0.6rem; will-change: transform; transition: transform 0.3s var(--ease); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem; color: var(--brass-2); font-weight: 500;
  transition: gap 0.3s var(--ease);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.arrow-link:hover { gap: 0.75rem; }
.arrow-link:hover svg { transform: translateX(3px); }

/* ---------- Skip link + focus ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brass); color: var(--ink); padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0; z-index: 10000; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--brass-2); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem; transition: top 0.4s var(--ease); }
.site-header.is-hidden { top: -120px; }
.nav {
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0.6rem 0.55rem 1.4rem;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: rgba(21, 18, 14, 0.62); backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
.brand__mark { height: 26px; width: auto; flex: none; }
.brand__name { font-size: 1.02rem; }
.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links a { padding: 0.55rem 0.95rem; border-radius: var(--radius-pill); color: var(--bone-dim); font-size: 0.96rem; font-weight: 500; transition: color 0.3s var(--ease), background 0.3s var(--ease); }
.nav__links a:hover { color: var(--bone); background: var(--line-2); }
.nav__links a[aria-current="page"] { color: var(--brass-2); }
.nav__cta { display: flex; align-items: center; gap: 0.5rem; }
.nav__cta .btn { padding: 0.7rem 1.2rem; font-size: 0.93rem; }
.nav__mail { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--radius-pill); border: 1px solid var(--line); color: var(--bone-dim); transition: color .3s var(--ease), border-color .3s var(--ease); }
.nav__mail svg { width: 19px; height: 19px; }
.nav__mail:hover { color: var(--brass-2); border-color: var(--brass); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius-pill); border: 1px solid var(--line); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 18px; height: 1.5px; background: var(--bone); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

@media (max-width: 880px) {
  /* Drop backdrop-filter on mobile: it creates a containing block that would
     trap the fixed full-screen menu inside the nav pill. Solid bg instead. */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(21, 18, 14, 0.95); }
  .nav__links { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 1.5rem; background: var(--ink); transform: translateY(-100%); transition: transform 0.5s var(--ease); z-index: 99; pointer-events: none; }
  .nav__links.open { transform: translateY(0); pointer-events: auto; }
  .nav__links a { font-size: 1.6rem; font-family: var(--font-display); }
  .nav-toggle { display: flex; }
  .nav__mail { display: none; }
  .nav__cta .btn--nav { display: none; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* Mobile sticky CTA bar */
.mobile-cta { display: none; }
@media (max-width: 880px) {
  .mobile-cta {
    display: flex; position: fixed; inset: auto 0 0 0; z-index: 90; padding: 0.75rem 1rem;
    background: rgba(21,18,14,0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line);
    gap: 0.6rem;
  }
  .mobile-cta .btn { flex: 1; justify-content: center; padding-inline: 0.5rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(8rem, 18vh, 12rem); padding-bottom: clamp(4rem, 8vh, 7rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__eyebrow { margin-bottom: 1.75rem; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem); line-height: 0.98; letter-spacing: -0.03em;
}
.hero__title .word { display: inline-block; }
.hero__sub { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 35rem; margin-top: 1.75rem; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.25rem; }
.hero__micro { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.55rem 1.25rem; color: var(--muted-2); font-size: 0.86rem; align-items: center; }
.hero__micro span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__micro span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); }

/* Hero live-preview device: cycles through the real demo builds */
.hero__visual { position: relative; }
.device {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(170deg, var(--surface), var(--ink-2));
  box-shadow: var(--shadow-lg); overflow: hidden; aspect-ratio: 16 / 11;
  text-decoration: none; color: inherit; transition: border-color 0.4s var(--ease);
}
.device:hover { border-color: rgba(203,163,92,0.45); }
.device__bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line-2); flex: none; }
.device__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-2); display: block; flex: none; }
.device__url { margin-left: 0.5rem; flex: 1; height: 22px; max-width: 80%; border-radius: 999px; background: var(--ink); border: 1px solid var(--line-2); display: flex; align-items: center; padding: 0 0.7rem; font-size: 0.72rem; color: var(--muted); white-space: nowrap; overflow: hidden; }
.device__screen { position: relative; flex: 1; overflow: hidden; }
.device .mini { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s var(--ease); }
.device .mini.on { opacity: 1; }
.device .mini__bar { display: none; }
.device__view { position: absolute; left: 50%; bottom: 0.85rem; transform: translateX(-50%) translateY(6px); z-index: 4; background: var(--brass); color: #1a1509; padding: 0.5rem 1rem; border-radius: 999px; font-weight: 500; font-size: 0.85rem; opacity: 0; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); pointer-events: none; }
.device:hover .device__view { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (prefers-reduced-motion: reduce) { .device .mini { transition: none; } }
.hero__badge {
  position: absolute; right: -0.5rem; bottom: -0.9rem; background: var(--ink); border: 1px solid var(--line);
  border-radius: 12px; padding: 0.7rem 0.95rem; display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow); font-size: 0.82rem;
}
.hero__badge strong { font-family: var(--font-display); color: var(--brass-2); font-size: 1.1rem; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #6fcf6f; box-shadow: 0 0 0 4px rgba(111,207,111,0.18); }

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust { border-block: 1px solid var(--line-2); background: var(--ink-2); padding-block: 1.5rem; }
.trust__row { display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.55rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 0.9rem; color: var(--bone-dim);
}
.chip svg { width: 16px; height: 16px; color: var(--brass); }

/* ============================================================
   Work / demos
   ============================================================ */
.work__head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.demos { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.demo {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface); transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.demo:hover { border-color: rgba(203,163,92,0.4); box-shadow: var(--shadow-lg); }
.demo__frame { aspect-ratio: 16 / 10.5; overflow: hidden; position: relative; border-bottom: 1px solid var(--line-2); }
.demo__meta { padding: 1.25rem 1.4rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.demo__meta h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; }
.demo__meta p { color: var(--muted); font-size: 0.9rem; margin-top: 0.2rem; }
.demo__tag { position: absolute; top: 0.85rem; left: 0.85rem; z-index: 4; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone); background: rgba(21,18,14,0.7); border: 1px solid var(--line); padding: 0.3rem 0.65rem; border-radius: 999px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.demo__view { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s var(--ease); z-index: 3; background: linear-gradient(0deg, rgba(21,18,14,0.55), rgba(21,18,14,0.05)); }
.demo:hover .demo__view { opacity: 1; }
.demo__view span { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brass); color: #1a1509; padding: 0.7rem 1.2rem; border-radius: 999px; font-weight: 500; font-size: 0.92rem; transform: translateY(8px); transition: transform 0.4s var(--ease); }
.demo:hover .demo__view span { transform: translateY(0); }
.work__cta { margin-top: clamp(2rem, 4vw, 2.75rem); }

/* Mini-preview (CSS-rendered concept sites, no images) */
.mini { position: absolute; inset: 0; font-family: var(--font-body); transition: transform 0.6s var(--ease); }
.demo:hover .mini { transform: scale(1.03); }
.mini__bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.mini__bar i { width: 7px; height: 7px; border-radius: 50%; opacity: 0.5; }
.mini__nav { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; font-size: 9px; font-weight: 700; }
.mini__nav nav { display: flex; gap: 10px; font-weight: 500; opacity: 0.7; }
.mini__hero { padding: 14px; }
.mini__h { font-weight: 800; line-height: 1.05; }
.mini__btn { display: inline-block; margin-top: 8px; font-size: 8px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.mini__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 0 14px 14px; }
.mini__grid span { aspect-ratio: 1; border-radius: 4px; }

.mini--dental { background: #f4f8f8; color: #0e3b3a; }
.mini--dental .mini__bar { background: #e6efef; }
.mini--dental .mini__h { font-size: 17px; }
.mini--dental .mini__btn { background: #1f9d96; color: #fff; }
.mini--dental .mini__grid span { background: #d8e8e7; }
.mini--dental .mini__sub { font-size: 9px; opacity: 0.65; margin-top: 4px; }
.mini--plumb { background: #15161a; color: #fde047; }
.mini--plumb .mini__bar { background: #0d0e11; }
.mini--plumb .mini__nav { color: #fde047; }
.mini--plumb .mini__h { font-size: 18px; color: #fff; text-transform: uppercase; }
.mini--plumb .mini__btn { background: #fde047; color: #15161a; }
.mini--plumb .mini__grid span { background: #23252c; border: 1px solid #2f323b; }
.mini--plumb .mini__sub { font-size: 9px; color: #fde047; margin-top: 4px; }
.mini--beauty { background: #efe7df; color: #34291f; }
.mini--beauty .mini__bar { background: #e3d8cc; }
.mini--beauty .mini__h { font-size: 16px; font-family: Georgia, 'Times New Roman', serif; font-weight: 600; }
.mini--beauty .mini__btn { background: #34291f; color: #efe7df; }
.mini--beauty .mini__grid span { background: #ddccba; }
.mini--beauty .mini__sub { font-size: 9px; opacity: 0.6; margin-top: 4px; letter-spacing: 0.18em; text-transform: uppercase; }
.mini--food { background: #1c140f; color: #f3e2cf; }
.mini--food .mini__bar { background: #140e0a; }
.mini--food .mini__h { font-size: 17px; font-family: Georgia, 'Times New Roman', serif; color: #f3c98a; }
.mini--food .mini__btn { background: #c5703a; color: #fff; }
.mini--food .mini__grid span { background: #2c211a; }
.mini--food .mini__sub { font-size: 9px; opacity: 0.7; margin-top: 4px; }

@media (max-width: 720px) { .demos { grid-template-columns: 1fr; } }

/* ============================================================
   Process timeline
   ============================================================ */
.process { position: relative; }
.timeline { position: relative; margin-top: clamp(2.5rem, 5vw, 3.5rem); display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline__progress { position: absolute; left: 27px; top: 8px; width: 2px; background: linear-gradient(var(--brass), var(--brass-deep)); height: var(--progress, 0%); transition: height 0.2s linear; max-height: calc(100% - 16px); }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; align-items: start; position: relative; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); background: var(--ink);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  color: var(--brass-2); position: relative; z-index: 2;
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.01em; }
.step p { color: var(--muted); margin-top: 0.4rem; max-width: 40rem; }
.step .day { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.process__note { margin-top: 2.5rem; padding: 1.25rem 1.5rem; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--bone-dim); font-size: 0.98rem; display: inline-flex; align-items: center; gap: 0.8rem; }
.process__note svg { color: var(--brass); flex: none; }

/* ============================================================
   Why (bento): 5 cards
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: clamp(1.6rem, 2.5vw, 2.2rem); transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover { border-color: rgba(203,163,92,0.35); background: var(--surface-2); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--brass-2); margin-bottom: 1.1rem; }
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; }
.card p { color: var(--muted); margin-top: 0.6rem; font-size: 0.99rem; }
.card .stat { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 600; color: var(--brass-2); line-height: 1; letter-spacing: -0.02em; }
.bento .card:nth-child(1) { grid-column: span 7; }
.bento .card:nth-child(2) { grid-column: span 5; }
.bento .card:nth-child(3) { grid-column: span 5; display: flex; flex-direction: column; justify-content: space-between; }
.bento .card:nth-child(4) { grid-column: span 7; }
.bento .card--wide { grid-column: span 12; }
@media (max-width: 820px) { .bento .card { grid-column: 1 / -1 !important; } }

/* ============================================================
   Pricing
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); align-items: start; }
.tier { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 2rem 1.8rem; position: relative; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.tier:hover { border-color: rgba(203,163,92,0.35); transform: translateY(-4px); }
.tier--featured { border-color: var(--brass); background: linear-gradient(180deg, rgba(203,163,92,0.07), var(--surface)); }
.tier__badge { position: absolute; top: -0.75rem; left: 1.8rem; background: var(--brass); color: #1a1509; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 999px; }
.tier h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.tier .price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; margin-top: 0.5rem; letter-spacing: -0.02em; }
.tier .price small { font-size: 0.95rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.tier > p { color: var(--muted); margin-top: 0.6rem; font-size: 0.96rem; }
.tier__list { margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.tier__list li { display: flex; align-items: start; gap: 0.65rem; color: var(--bone-dim); font-size: 0.95rem; line-height: 1.45; }
.tier__list svg { width: 18px; height: 18px; color: var(--brass); flex: none; margin-top: 2px; }
.tier .btn { margin-top: 1.6rem; width: 100%; justify-content: center; }
.pricing__note { text-align: center; color: var(--muted); margin-top: 2rem; font-size: 1rem; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; } }

/* ============================================================
   Founder
   ============================================================ */
.founder { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.founder__card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.founder__card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px); background-size: 28px 28px; opacity: 0.6; }
.founder__badge-mark { height: 30px; width: auto; position: relative; }
.founder__sig { font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--brass-2); margin-top: 1.5rem; position: relative; letter-spacing: -0.01em; }
.founder__role { color: var(--muted-2); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.4rem; position: relative; }
.founder__quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.25; letter-spacing: -0.01em; }
.founder__body { color: var(--muted); margin-top: 1.5rem; font-size: 1.05rem; }
@media (max-width: 820px) { .founder { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 52rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.faq__group { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.5rem 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem, 2vw, 1.35rem); letter-spacing: -0.01em; }
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--brass); transition: transform 0.4s var(--ease); }
.faq__icon::before { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq__panel > div { overflow: hidden; }
.faq__q[aria-expanded="true"] + .faq__panel { grid-template-rows: 1fr; }
.faq__panel p { color: var(--muted); padding-bottom: 1.5rem; max-width: 46rem; font-size: 1.02rem; }
.faq__panel a { color: var(--brass-2); border-bottom: 1px solid rgba(230,184,79,0.3); }

/* ============================================================
   Final CTA
   ============================================================ */
.cta-final { position: relative; text-align: center; padding-block: clamp(6rem, 14vh, 10rem); overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, rgba(203,163,92,0.10), transparent 60%); }
.cta-final h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.02; letter-spacing: -0.03em; position: relative; }
.cta-final p { color: var(--muted); max-width: 38rem; margin: 1.5rem auto 0; font-size: 1.1rem; position: relative; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2.25rem; position: relative; }
.cta-final__email { margin-top: 2rem; color: var(--muted); position: relative; }
.cta-final__email a { color: var(--brass-2); border-bottom: 1px solid rgba(230,184,79,0.3); }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; background: var(--ink-2); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
.footer__brand p { color: var(--muted); margin-top: 1rem; max-width: 22rem; font-size: 0.98rem; }
.footer h4 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1rem; }
.footer__col a { display: block; color: var(--bone-dim); padding: 0.35rem 0; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--brass-2); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 2rem; border-top: 1px solid var(--line-2); color: var(--muted-2); font-size: 0.88rem; }
@media (max-width: 720px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* ============================================================
   Inner pages
   ============================================================ */
.page-hero { padding-top: clamp(8rem, 17vh, 11rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; }
.page-hero__inner { max-width: 52rem; }
.page-hero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.02; letter-spacing: -0.03em; margin-top: 0; }
.page-hero__sub { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.2rem); margin-top: 1.25rem; max-width: 40rem; line-height: 1.6; }
.lead { color: var(--bone-dim); font-size: 1.15rem; line-height: 1.7; max-width: 44rem; }

/* About */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-story p { color: var(--muted); margin-bottom: 1.1rem; }
.about-story h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.02em; line-height: 1.1; }
.about-panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(1.8rem, 3vw, 2.4rem); position: sticky; top: 6rem; }
.about-panel h4 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.25rem; }
.about-facts { display: grid; gap: 1rem; }
.about-facts li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-2); font-size: 0.96rem; }
.about-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.about-facts span:first-child { color: var(--muted); }
.about-facts span:last-child { color: var(--bone); font-weight: 500; text-align: right; }
@media (max-width: 820px) { .about-story { grid-template-columns: 1fr; } .about-panel { position: static; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__email-block { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.5rem; }
.contact__email-label { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.6rem; }
.contact__email-big { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--brass-2); letter-spacing: -0.01em; word-break: break-word; display: inline-flex; align-items: center; gap: 0.6rem; }
.contact__email-big svg { width: 24px; height: 24px; flex: none; }
.contact__note { color: var(--muted); font-size: 0.95rem; margin-top: 0.75rem; }
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--bone); padding: 0.85rem 1rem; font: inherit; font-size: 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); background: var(--surface); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A89E8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field select option { color: #15120E; }
.form__hint { color: var(--muted-2); font-size: 0.85rem; }
.form button { margin-top: 0.25rem; }
.form__success { display: none; border: 1px solid rgba(111,207,111,0.4); background: rgba(111,207,111,0.08); border-radius: var(--radius); padding: 1.5rem; color: var(--bone); }
.form__success.show { display: block; }
.form__error { display: none; border: 1px solid rgba(214,107,92,0.45); background: rgba(214,107,92,0.10); border-radius: var(--radius); padding: 1.1rem 1.25rem; color: var(--bone); margin-top: 1rem; }
.form__error.show { display: block; }
.form__error a { color: var(--brass-2); border-bottom: 1px solid rgba(230,184,79,0.3); }
.contact-aside { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(1.6rem, 3vw, 2.2rem); }
.contact-aside h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.contact-aside p { color: var(--muted); margin-top: 0.6rem; font-size: 0.98rem; }
.contact-aside .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }
.contact-methods { margin-top: 1.5rem; display: grid; gap: 0.85rem; }
.contact-methods a { display: flex; align-items: center; gap: 0.75rem; color: var(--bone-dim); font-size: 0.96rem; transition: color .3s var(--ease); }
.contact-methods a:hover { color: var(--brass-2); }
.contact-methods svg { width: 18px; height: 18px; color: var(--brass); flex: none; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

/* Numbered principles list (About): editorial, no boxes */
.principles { margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 4.5rem 1fr; gap: clamp(1rem, 3vw, 2.5rem); padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-bottom: 1px solid var(--line); align-items: start; }
.principle__num { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; color: var(--brass); line-height: 1.15; }
.principle__body { max-width: 48rem; }
.principle h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 2.2vw, 1.6rem); letter-spacing: -0.01em; }
.principle p { color: var(--muted); margin-top: 0.5rem; font-size: 1.02rem; }
@media (max-width: 560px) { .principle { grid-template-columns: 1fr; gap: 0.4rem; } }

/* Always-included checklist (Pricing): split layout, no boxes */
.included { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; margin-top: clamp(2rem, 4vw, 3rem); }
.included__intro p { color: var(--muted); margin-top: 1rem; max-width: 26rem; }
.included__intro .accent { display: inline-block; margin-top: 1.1rem; font-size: 1.05rem; }
.included__list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2rem; }
.included__item { display: flex; gap: 0.8rem; align-items: start; }
.included__item svg { width: 22px; height: 22px; color: var(--brass); flex: none; margin-top: 2px; }
.included__item h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.included__item p { color: var(--muted); font-size: 0.92rem; margin-top: 0.2rem; line-height: 1.5; }
@media (max-width: 820px) { .included { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .included__list { grid-template-columns: 1fr; } }

/* ============================================================
   Reveal animations
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal-stagger].is-visible > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.07s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.14s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.21s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .demo, .tier, .card { transition: none !important; }
}
