/* ==========================================================================
   Darkshore Marketing — site stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color */
  --bg:               #F4F1EC;
  --bg-alt:           #FBF9F4;
  --surface:          #FFFFFF;
  --bg-dark:          #0E1116;
  --bg-dark-alt:      #161B22;
  --bg-dark-soft:     #1D232C;
  --ink:              #0E1116;
  --ink-soft:         #2A2F37;
  --ink-muted:        #5C6470;
  --paper:            #F4F1EC;
  --paper-dim:        #C6BEAF;
  --accent:           #B8945C;
  --accent-deep:      #8E6F40;
  --accent-soft:      #E4D2B0;
  --rule:             rgba(14, 17, 22, 0.14);
  --rule-soft:        rgba(14, 17, 22, 0.07);
  --rule-dark:        rgba(244, 241, 236, 0.14);
  --rule-dark-soft:   rgba(244, 241, 236, 0.07);

  /* Typography */
  --font-serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:  ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --container:        1240px;
  --container-narrow: 880px;
  --container-wide:   1400px;
  --gutter:           clamp(1.25rem, 4vw, 2.5rem);
  --section-y:        clamp(4.5rem, 10vw, 8rem);
  --section-y-tight:  clamp(3rem, 6vw, 5rem);

  /* Motion */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 180ms;
  --t-med:  280ms;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a.text-link {
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
  transition: text-decoration-color var(--t-fast) var(--ease-out);
}
a.text-link:hover { text-decoration-color: currentColor; }

button { font-family: inherit; cursor: pointer; }

::selection {
  background: var(--ink);
  color: var(--paper);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 360;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  font-weight: 340;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

.lede {
  font-size: clamp(1.0625rem, 1.45vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0 0 1.75rem;
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  font-weight: 500;
}

em { font-style: italic; }
.serif-it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 360;
}

.muted { color: var(--ink-muted); }

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

.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--section-y-tight); }

.section--dark {
  background: var(--bg-dark);
  color: var(--paper);
}
.section--dark .muted,
.section--dark .eyebrow,
.section--dark .section-num { color: var(--paper-dim); }
.section--dark .lede { color: var(--paper-dim); }

.section--alt { background: var(--bg-alt); }

.divider {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 236, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-weight: 380;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__mark {
  width: 1.1rem;
  height: 1.1rem;
  align-self: center;
  flex-shrink: 0;
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: 0.1rem;
  align-self: center;
  position: relative;
  top: -1px;
}

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 450;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active {
  color: var(--ink);
  background: rgba(14, 17, 22, 0.06);
}

.nav__cta {
  margin-left: 0.6rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  color: var(--ink);
  align-items: center;
  gap: 0.5rem;
}
.menu-toggle__icon {
  width: 14px; height: 10px;
  display: inline-flex; flex-direction: column; justify-content: space-between;
}
.menu-toggle__icon span { display:block; height: 1px; width: 100%; background: currentColor; transition: transform var(--t-fast) var(--ease-out); }

@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; }
  .brand,
  .menu-toggle {
    position: relative;
    z-index: 2;
  }
  .nav {
    position: fixed;
    inset: 0;
    bottom: auto;
    z-index: 1;
    height: 100dvh;
    min-height: 100vh;
    overflow-y: auto;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5.5rem var(--gutter) 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t-med) var(--ease-out),
                opacity var(--t-fast) var(--ease-out),
                visibility 0s linear var(--t-med);
    pointer-events: none;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    pointer-events: auto;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--rule-soft);
  }
  .nav__list li { border-bottom: 1px solid var(--rule-soft); }
  .nav__link {
    border-radius: 0;
    padding: 1.1rem 0;
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 380;
    letter-spacing: -0.01em;
    width: 100%;
  }
  .nav__link.is-active { background: transparent; }
  .nav__cta { margin: 1.5rem 0 0; align-self: flex-start; }
}

@media (max-width: 420px) {
  .site-header__inner { gap: 0.75rem; }
  .brand { font-size: 1.25rem; gap: 0.45rem; }
  .brand__sub { display: none; }
  .menu-toggle { padding-inline: 0.75rem; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: var(--paper);
  transition: background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  background: var(--ink-soft);
}
.btn .arrow {
  display: inline-flex;
  width: 0.9rem;
  transition: transform var(--t-fast) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover {
  background: transparent;
  border-color: var(--ink);
}
.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover { background: #fff; }

.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--rule-dark);
}
.btn--ghost-light:hover { border-color: var(--paper); }

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-block: clamp(4rem, 9vw, 7.5rem) clamp(3.5rem, 7vw, 6rem);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.hero__display {
  font-family: var(--font-serif);
  font-weight: 320;
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin: 0 0 1.5rem;
}
.hero__display em {
  font-style: italic;
  font-weight: 320;
}

.hero__sub {
  max-width: 56ch;
  font-size: clamp(1.0625rem, 1.45vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 2.25rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.hero__meta dl { margin: 0; display: contents; }
.hero__meta dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 450;
}
.hero__meta-item { min-width: 0; }

/* --------------------------------------------------------------------------
   Page intro (used on inner pages)
   -------------------------------------------------------------------------- */
.page-intro {
  padding-block: clamp(4rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule-soft);
}
.page-intro__title {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  letter-spacing: -0.025em;
  font-weight: 330;
  margin: 0 0 1.5rem;
  line-height: 1.0;
  max-width: 16ch;
}
.page-intro__lede {
  max-width: 62ch;
  font-size: clamp(1.0625rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.crumbs {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 2rem;
}
.crumbs a { color: inherit; }
.crumbs a:hover { color: var(--ink); }
.crumbs span + span::before {
  content: '/';
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Section heading (numbered editorial style)
   -------------------------------------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding-top: 0.7rem;
  border-top: 1px solid var(--rule);
  align-self: start;
}
.section-head__body {
  padding-top: 0.4rem;
  border-top: 1px solid var(--rule);
}
.section-head__title {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.section-head__lede {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  margin: 0;
  line-height: 1.55;
}
.section--dark .section-head__num,
.section--dark .section-head__body {
  border-top-color: var(--rule-dark);
}
.section--dark .section-head__lede { color: var(--paper-dim); }

@media (max-width: 640px) {
  .section-head { grid-template-columns: 1fr; gap: 0.5rem; }
  .section-head__num { border-top: 0; padding-top: 0; }
}

/* --------------------------------------------------------------------------
   Service grid (home + services)
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.service-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: background var(--t-fast) var(--ease-out);
}
.service-card:hover { background: var(--bg-alt); }
.service-card__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  line-height: 1.2;
}
.service-card__body {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}
.service-card__list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}
.service-card__list li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
}

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

/* --------------------------------------------------------------------------
   Process / numbered steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 5rem 1fr minmax(0, 1.4fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--rule);
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding-top: 0.4rem;
}
.step__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  margin: 0;
  line-height: 1.15;
}
.step__body {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
  padding-top: 0.45rem;
}
.section--dark .step,
.section--dark .step:last-child {
  border-top-color: var(--rule-dark);
  border-bottom-color: var(--rule-dark);
}
.section--dark .step__body { color: var(--paper-dim); }

@media (max-width: 760px) {
  .step { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 0; }
  .step__num { padding-top: 0; }
  .step__body { padding-top: 0.5rem; }
}

/* --------------------------------------------------------------------------
   Two-up content rows
   -------------------------------------------------------------------------- */
.two-up {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.two-up--reverse > :first-child { order: 2; }

@media (max-width: 880px) {
  .two-up { grid-template-columns: 1fr; }
  .two-up--reverse > :first-child { order: initial; }
}

/* --------------------------------------------------------------------------
   Industry list
   -------------------------------------------------------------------------- */
.industry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.industry-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 380;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}
.industry-list li::before {
  content: counter(industry, decimal-leading-zero);
  counter-increment: industry;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  font-weight: 500;
  position: relative;
  top: -2px;
  flex-shrink: 0;
}
.industry-list { counter-reset: industry; }

/* --------------------------------------------------------------------------
   Detailed service block (services page)
   -------------------------------------------------------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 5rem 1fr minmax(0, 1.6fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(2.25rem, 4vw, 3.25rem) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.service-detail:last-of-type { border-bottom: 1px solid var(--rule); }

.service-detail__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding-top: 0.4rem;
}
.service-detail__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 380;
  margin: 0 0 0.75rem;
  letter-spacing: -0.018em;
  line-height: 1.1;
}
.service-detail__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1rem;
}
.service-detail__body p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 60ch;
}
.service-detail__list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
  border-top: 1px solid var(--rule-soft);
  padding-top: 1.4rem;
}
.service-detail__list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.2rem;
}
.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 0.55rem; height: 1px;
  background: var(--accent);
}

@media (max-width: 760px) {
  .service-detail { grid-template-columns: 1fr; gap: 0.5rem; padding: 2rem 0; }
  .service-detail__num { padding-top: 0; }
}

/* --------------------------------------------------------------------------
   Boundaries / "What we don't do"
   -------------------------------------------------------------------------- */
.boundary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.boundary-list li {
  background: var(--bg);
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.boundary-list li strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq {
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  line-height: 1.3;
}
.faq__q::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink-muted);
  transition: transform var(--t-fast) var(--ease-out);
}
.faq__item[open] .faq__q::after {
  content: '–';
}
.faq__a {
  padding: 0 3rem 1.75rem 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 70ch;
}
.faq__a p { margin: 0 0 1em; }
.faq__a p:last-child { margin: 0; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--bg-dark);
  color: var(--paper);
  padding-block: clamp(4rem, 8vw, 6rem);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.cta-band__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 320;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  line-height: 1.05;
  max-width: 18ch;
}
.cta-band__sub {
  color: var(--paper-dim);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  max-width: 50ch;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  justify-self: end;
}
@media (max-width: 760px) {
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { justify-self: start; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--paper);
  padding-block: clamp(3.5rem, 7vw, 5rem) 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-dark);
}
.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 380;
  letter-spacing: -0.012em;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}
.site-footer__brand .brand__sub { color: var(--paper-dim); }
.site-footer__tag {
  color: var(--paper-dim);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 32ch;
  margin: 0 0 1.5rem;
}
.site-footer__col h5 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin: 0 0 1rem;
}
.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__col a,
.site-footer__col address {
  color: var(--paper);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.55;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}
.site-footer__col a:hover { color: var(--accent-soft); }

.site-footer__bottom {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--paper-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__legal a { color: var(--paper-dim); transition: color var(--t-fast); }
.site-footer__legal a:hover { color: var(--paper); }

@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form {
  display: grid;
  gap: 1.5rem;
}
.field { display: grid; gap: 0.4rem; }
.field--row {
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 540px) {
  .field--row { grid-template-columns: 1fr; }
}
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 6px;
  width: 100%;
  transition: border-color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}
.field textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.55;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--surface);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-muted); }
.form__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 0;
}
.form__status {
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-alt);
  display: none;
}
.form__status.is-visible { display: block; }

.contact-info {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}
.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}
.contact-info dd {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   Long-form prose (privacy / terms)
   -------------------------------------------------------------------------- */
.prose {
  max-width: 70ch;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.prose h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 400;
  margin: 2.75rem 0 1rem;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.prose h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 2rem 0 0.5rem;
  color: var(--ink);
}
.prose p, .prose ul, .prose ol { margin: 0 0 1.1em; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4em; }
.prose a {
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.2em;
}
.prose a:hover { text-decoration-color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(14,17,22,0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Stats / facts inline
   -------------------------------------------------------------------------- */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.fact {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.fact__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.fact__value {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Hero ornament (abstract horizon)
   -------------------------------------------------------------------------- */
.horizon {
  margin-top: clamp(3rem, 6vw, 5rem);
  width: 100%;
  height: clamp(60px, 8vw, 110px);
  display: block;
  color: var(--ink);
  opacity: 0.92;
}
.horizon line { stroke: currentColor; stroke-linecap: square; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  z-index: 200;
}
.skip-link:focus { top: 1rem; }

.text-accent { color: var(--accent-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
