/* =====================================================================
   AISkyview — site.css
   Anthropic/Claude-inspired design system. Cream-primary, editorial,
   typography-forward. Light theme only; dark *sections* for contrast.
   Pure CSS, no framework.
   ===================================================================== */

/* ---------------------------------------------------------------------
   Design tokens
   --------------------------------------------------------------------- */
:root {
  /* Brand palette (Anthropic values, exact) */
  --bg:        #faf9f5;   /* cream — primary canvas */
  --bg-sink:   #f3f1e9;   /* slightly deeper cream for muted bands */
  --ink:       #141413;   /* near-black — primary text + dark sections */
  --ink-soft:  #38362f;   /* softened ink for long body copy */
  --mid:       #6f6d62;   /* secondary text (darkened from #b0aea5 for AA) */
  --mid-faint: #b0aea5;   /* decorative muted — never load-bearing text */
  --line:      #e8e6dc;   /* dividers, card fills, subtle containers */
  --line-strong:#d9d6c8;  /* heavier hairline */
  --accent:    #d97757;   /* THE orange — CTA fills, dots, decorative */
  --accent-hover:#c2613c; /* button hover fill (AA with ink text) */
  --accent-ink:#ad5235;   /* orange as TEXT on cream — links, kickers (4.86:1 AA) */
  --accent-2:  #6a9bcc;   /* blue — info, badges */
  --accent-3:  #788c5d;   /* green — trust / success */

  /* On-dark equivalents (used inside .band-dark) */
  --on-dark-text:  #faf9f5;
  --on-dark-mid:   #b0aea5;
  --on-dark-line:  #2b2a26;

  /* Type */
  --font-head: "Poppins", "Arial", system-ui, sans-serif;
  --font-body: "Lora", "Georgia", serif;

  /* Fluid type scale (marketing) */
  --t-hero:  clamp(2.6rem, 1.4rem + 4.6vw, 4.6rem);
  --t-h2:    clamp(1.85rem, 1.2rem + 2.3vw, 2.9rem);
  --t-h3:    clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  --t-lead:  clamp(1.12rem, 1.02rem + 0.5vw, 1.4rem);
  --t-body:  1.0625rem;
  --t-sm:    0.9375rem;
  --t-kicker:0.78rem;

  /* Spacing scale (4pt) */
  --s-1: 0.25rem;  --s-2: 0.5rem;  --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;    --s-7: 3rem;     --s-8: 4rem;
  --s-9: 6rem;     --s-10: 8rem;

  /* Section rhythm */
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Layout */
  --container: 1120px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 10px;
  --radius-sm: 7px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-1: 180ms;
  --dur-2: 320ms;
  --dur-3: 640ms;
}

/* ---------------------------------------------------------------------
   Reset / base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: color-mix(in srgb, var(--accent) 28%, transparent); color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--on-dark-text);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm);
  z-index: 200;
  font-family: var(--font-head);
}
.skip-link:focus { left: var(--s-4); top: var(--s-4); }

/* ---------------------------------------------------------------------
   Layout helpers
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }

.band-muted { background: var(--bg-sink); }
.band-line  { border-top: 1px solid var(--line); }

.band-dark {
  background: var(--ink);
  color: var(--on-dark-mid);
}
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--on-dark-text); }
.band-dark a { color: var(--on-dark-text); }

/* Eyebrow / kicker */
.kicker {
  font-family: var(--font-head);
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 var(--s-4);
}
.band-dark .kicker { color: var(--accent); }

/* Section heading block */
.section-head { max-width: 46ch; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head .lead { color: var(--mid); margin-top: var(--s-4); }

.h2 { font-size: var(--t-h2); }
.lead { font-size: var(--t-lead); line-height: 1.5; }
.measure { max-width: 65ch; }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  --btn-pad-y: 0.8rem;
  --btn-pad-x: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease),
              transform var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease),
              color var(--dur-1) var(--ease);
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-hover); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-sink); border-color: var(--ink); color: var(--ink); }

.band-dark .btn-ghost { color: var(--on-dark-text); border-color: var(--on-dark-line); }
.band-dark .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--on-dark-text); }

.btn-lg { --btn-pad-y: 0.95rem; --btn-pad-x: 1.7rem; font-size: 1.02rem; }

/* Inline text link with arrow */
.link-arrow {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.link-arrow svg { transition: transform var(--dur-1) var(--ease); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   Header / nav
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--accent); display: inline-flex; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.site-nav a {
  font-family: var(--font-head);
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--ink);
}
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-1) var(--ease);
}
.site-nav a:not(.nav-cta):hover { text-decoration: none; }
.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent);
  color: var(--ink) !important;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur-1) var(--ease);
}
.nav-cta:hover { background: var(--accent-hover); text-decoration: none; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  background: transparent; border: 0; cursor: pointer;
  margin-left: auto;
}
.menu-icon-bar {
  width: 22px; height: 2px; background: var(--ink);
  transition: transform var(--dur-1) var(--ease), opacity var(--dur-1) var(--ease);
}
.menu-toggle[aria-expanded="true"] .menu-icon-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-icon-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: var(--s-3) var(--gutter) var(--s-6);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-2) var(--ease), opacity var(--dur-2) var(--ease);
  }
  .site-nav[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: var(--s-4) 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    margin-top: var(--s-4);
    text-align: center;
    padding: var(--s-4);
    border-bottom: 0 !important;
  }
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero {
  padding-block: clamp(3.5rem, 2rem + 7vw, 8rem) clamp(3rem, 2rem + 4vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.hero-h1 {
  font-size: var(--t-hero);
  max-width: 16ch;
  letter-spacing: -0.03em;
}
.hero-h1 em { font-style: italic; color: var(--accent-ink); font-family: var(--font-body); font-weight: 500; }
.hero-sub {
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--mid);
  max-width: 52ch;
  margin-top: var(--s-5);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
.hero-callnote { color: var(--mid); font-size: var(--t-sm); }
.hero-callnote a {
  color: var(--ink); font-weight: 500;
  display: inline-flex; align-items: center; min-height: 44px;
  padding-inline: 2px;
}

/* faint horizon line, vector only */
.hero-horizon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%; height: 80px;
  color: var(--line-strong);
  pointer-events: none;
}

/* ---------------------------------------------------------------------
   Pillars — "What we do" (editorial columns, no boxed cards)
   --------------------------------------------------------------------- */
.pillars {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
}
.pillar { padding-top: var(--s-5); border-top: 2px solid var(--ink); }
.pillar-index {
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: var(--s-3);
}
.pillar h3 { font-size: var(--t-h3); margin-bottom: var(--s-3); }
.pillar p { color: var(--mid); font-size: 1rem; }

.pillar-tags {
  list-style: none; margin: var(--s-4) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: var(--s-2);
}
.pillar-tags li {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: var(--line);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* ---------------------------------------------------------------------
   Guiding principles — editorial list
   --------------------------------------------------------------------- */
.principles-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.1rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 24ch;
}
.principles-quote cite {
  display: block; font-style: normal; font-size: var(--t-sm);
  color: var(--mid); margin-top: var(--s-4); font-family: var(--font-head);
}

.principles {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  gap: clamp(1.5rem, 1rem + 2vw, 2.5rem) clamp(2rem, 1rem + 3vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.principle h3 { font-size: 1.18rem; margin-bottom: var(--s-2); }
.principle p { color: var(--mid); font-size: 1rem; }

/* ---------------------------------------------------------------------
   Proof band
   --------------------------------------------------------------------- */
.proof-line {
  font-family: var(--font-body);
  font-size: var(--t-lead);
  line-height: 1.5;
  max-width: 60ch;
  color: var(--ink);
}
.proof-line strong { font-weight: 600; }

/* ---------------------------------------------------------------------
   Steps — How it works
   --------------------------------------------------------------------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.step { position: relative; padding-top: var(--s-6); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-ink);
  position: absolute; top: 0; left: 0;
}
.step h3 { font-size: var(--t-h3); margin-bottom: var(--s-2); }
.step p { color: var(--mid); font-size: 1rem; }
.step .step-rule { width: 38px; height: 2px; background: var(--line-strong); margin-bottom: var(--s-4); }

/* ---------------------------------------------------------------------
   Testimonials placeholder
   --------------------------------------------------------------------- */
.quotes {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  background: var(--bg);
}
.quote-body { font-size: 1.08rem; color: var(--ink); }
.quote-meta { margin-top: var(--s-5); font-family: var(--font-head); font-size: var(--t-sm); color: var(--mid); }
.quote[data-placeholder="true"] { background: var(--bg-sink); border-style: dashed; }
.quote[data-placeholder="true"] .quote-body { color: var(--mid); font-style: italic; }

/* ---------------------------------------------------------------------
   CTA band (dark)
   --------------------------------------------------------------------- */
.cta-inner { max-width: 30ch; }
.cta-h2 { font-size: var(--t-h2); }
.cta-band .cta-sub { color: var(--on-dark-mid); margin-top: var(--s-4); max-width: 48ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-6); }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-mid); padding-block: var(--s-8) var(--s-6); }
.footer-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1.4fr 1fr 1fr;
}
.site-footer .brand { color: var(--on-dark-text); }
.footer-tag { margin-top: var(--s-4); max-width: 32ch; color: var(--on-dark-mid); font-size: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-label {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mid-faint); margin-bottom: var(--s-2);
}
.footer-col a, .footer-col span { color: var(--on-dark-text); font-size: 1rem; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-legal {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--on-dark-line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
  font-size: var(--t-sm); color: var(--mid-faint);
}
.footer-legal a { color: var(--mid-faint); }
.footer-legal a:hover { color: var(--accent); }

@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------------------
   Team grid (about)
   --------------------------------------------------------------------- */
.team {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.member { display: flex; flex-direction: column; }
.avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  border: 1px solid var(--line-strong);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar span {
  font-family: var(--font-head); font-weight: 500; font-size: 1.4rem;
  color: var(--ink-soft); letter-spacing: 0.02em;
}
.member-name { font-size: 1.16rem; }
.member-role {
  font-family: var(--font-head); font-size: 0.86rem; color: var(--accent-ink);
  margin: var(--s-1) 0 var(--s-3); font-weight: 500;
}
.member-bio { font-size: 0.98rem; color: var(--mid); }
.member-email { margin-top: var(--s-3); font-family: var(--font-head); font-size: 0.86rem; }

/* Featured member (founder) */
.founder {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3rem);
  align-items: start;
}
.founder-photo {
  width: 100%; max-width: 220px; aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--line);
  border: 1px solid var(--line-strong);
}
.founder h2 { font-size: var(--t-h2); margin-bottom: var(--s-2); }
.founder .member-role { font-size: 0.95rem; margin-bottom: var(--s-4); }
.founder p + p { margin-top: var(--s-4); }
.founder .badge-row { margin-top: var(--s-5); }
@media (max-width: 620px) {
  .founder { grid-template-columns: 1fr; }
  .founder-photo { max-width: 160px; }
}

/* small trust badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: 0.84rem; font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); }

/* ---------------------------------------------------------------------
   Services page sections
   --------------------------------------------------------------------- */
.svc {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  align-items: start;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
}
.svc + .svc { border-top: 1px solid var(--line); }
.svc-index { font-family: var(--font-head); font-weight: 600; color: var(--accent-ink); font-size: 1rem; }
.svc-head h2 { font-size: var(--t-h2); margin: var(--s-3) 0 0; }
.svc-body > p { color: var(--ink-soft); font-size: var(--t-lead); line-height: 1.5; max-width: 60ch; }
.svc-list { list-style: none; margin: var(--s-5) 0 0; padding: 0; display: grid; gap: var(--s-3); }
.svc-list li { position: relative; padding-left: var(--s-5); color: var(--mid); }
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); opacity: 0.9;
}
.svc-cta { margin-top: var(--s-6); }
@media (max-width: 720px) { .svc { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Forms (contact)
   --------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.lead-form { display: grid; gap: var(--s-5); }
.field { display: grid; gap: var(--s-2); }
.field label {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 500; color: var(--ink);
}
.field .req { color: var(--accent-ink); }
.field-row { display: grid; gap: var(--s-5); grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.input, .select, .textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.input::placeholder, .textarea::placeholder { color: var(--mid); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236f6d62' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-4); }
.form-status { font-size: var(--t-sm); }
.form-status[data-state="success"] { color: var(--accent-3); }
.form-status[data-state="error"] { color: var(--accent-ink); }
.privacy-note { font-size: 0.86rem; color: var(--mid); }

/* Contact aside */
.contact-aside { display: grid; gap: var(--s-6); align-content: start; }
.contact-block h3 { font-size: 1.05rem; margin-bottom: var(--s-2); }
.contact-block a { font-family: var(--font-head); }
.contact-block p, .contact-block span { color: var(--mid); font-size: 1rem; }
.booking-embed {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-sink);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  text-align: center;
  color: var(--mid);
  font-size: 0.95rem;
}
/* Live widget state — flush, clipped corners, site border instead of dashed */
.booking-embed--live {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0;
  text-align: left;
  overflow: hidden;
}
.booking-embed--live .calendly-inline-widget { width: 100%; }

/* ---------------------------------------------------------------------
   Prose (privacy)
   --------------------------------------------------------------------- */
.prose { max-width: 70ch; }
.prose h1 { font-size: var(--t-h2); margin-bottom: var(--s-4); }
.prose h2 { font-size: var(--t-h3); margin: var(--s-7) 0 var(--s-3); }
.prose p, .prose li { color: var(--ink-soft); }
.prose p + p { margin-top: var(--s-4); }
.prose ul { margin: var(--s-3) 0; padding-left: var(--s-5); display: grid; gap: var(--s-2); }
.prose a { font-weight: 500; }
.prose .updated { color: var(--mid); font-size: var(--t-sm); font-family: var(--font-head); }

/* page header (interior pages) */
.page-head { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) clamp(1.5rem, 1rem + 2vw, 3rem); }
.page-head h1 { font-size: var(--t-hero); max-width: 18ch; }
.page-head .lead { color: var(--mid); margin-top: var(--s-5); max-width: 54ch; }

/* ---------------------------------------------------------------------
   Scroll reveal
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-3) var(--ease), transform var(--dur-3) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; will-change: auto; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .link-arrow svg, .site-nav a::after { transition: none; }
}

/* ---------------------------------------------------------------------
   Utilities
   --------------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.is-hidden { display: none !important; }
.stack-sm > * + * { margin-top: var(--s-3); }

/* ---------------------------------------------------------------------
   Print
   --------------------------------------------------------------------- */
@media print {
  .site-header, .menu-toggle, .hero-horizon, .cta-band, .booking-embed { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
