:root {
  color-scheme: dark;
  --pad: clamp(24px, 5vw, 44px);
  --sky: #0D1120;
  --sky-deep: #090C17;
  --sky-high: #141A2E;
  --haze: #232C4A;
  --haze-faint: #1A2138;
  --sand: #EFE9DC;
  --sand-dim: #A4A8BA;
  --sand-faint: #6E7388;
  --coral: #FF6B45;
  --coral-bright: #FF8159;
  --peach: #FFC9A3;
  --dusk-blue: #6E7FB8;
  --photo-glow: rgba(255, 107, 69, 0.14);
  --horizon: linear-gradient(90deg, transparent, #FF6B45 22%, #FFC9A3 50%, #6E7FB8 82%, transparent);
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --sky: #F5F0E5;
    --sky-deep: #EDE6D7;
    --sky-high: #FBF8F0;
    --haze: #D8D0BD;
    --haze-faint: #E3DCCA;
    --sand: #181D2E;
    --sand-dim: #555B72;
    --sand-faint: #8A8FA2;
    --coral: #DE4519;
    --coral-bright: #C23A12;
    --peach: #B85B28;
    --dusk-blue: #5A6BA4;
    --photo-glow: rgba(222, 69, 25, 0.10);
    --horizon: linear-gradient(90deg, transparent, #DE4519 22%, #E8924F 50%, #5A6BA4 82%, transparent);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  font-variation-settings: 'wdth' 100;
  background: var(--sky);
  color: var(--sand);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
}

::selection { background: var(--coral); color: var(--sky-deep); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.container-narrow {
  max-width: 820px;
}

.horizon {
  height: 1px;
  background: var(--horizon);
  border: none;
}

.mono {
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ======= NAV ======= */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--sky) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--haze-faint);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: 'Archivo', sans-serif;
  font-variation-settings: 'wdth' 125;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 22px;
  height: 12px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--coral), var(--peach));
  display: inline-block;
  flex-shrink: 0;
}

.logo-meta {
  font-family: 'Fragment Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-faint);
  margin-left: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: var(--sand-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--coral); }

.nav-links a.nav-cta {
  color: var(--sky-deep);
  background: var(--coral);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-links a.nav-cta:hover {
  background: var(--peach);
  color: var(--sky-deep);
  transform: translateY(-1px);
}

/* ======= HERO ======= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -340px;
  transform: translateX(-50%);
  width: 1400px;
  height: 700px;
  background: radial-gradient(ellipse at center, var(--photo-glow), transparent 65%);
  pointer-events: none;
}

.hero-text {
  position: relative;
  padding: 96px 0 72px;
}

.hero-marker {
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-faint);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-marker::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--coral);
}

.hero h1 {
  font-variation-settings: 'wdth' 122;
  font-weight: 800;
  font-size: clamp(34px, 6.4vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  max-width: 14ch;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}

.hero h1 em,
.section h2 em,
.cta-section h2 em,
.page-hero h1 em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--coral);
}

.hero h1 em {
  display: block;
  font-variation-settings: 'opsz' 60;
  letter-spacing: -0.01em;
  font-size: 0.92em;
  line-height: 1.05;
  margin-top: 10px;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--sand-dim);
  max-width: 32em;
  margin: 28px 0 40px;
}

.hero-ctas {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--coral);
  color: var(--sky-deep);
  padding: 17px 34px;
  border-radius: 100px;
}

.btn-primary:hover {
  background: var(--peach);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--sand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-color: var(--haze);
}

.btn-link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.15s ease;
}

.btn-link:hover { color: var(--coral); text-decoration-color: var(--coral); }
.btn-link:hover::after { transform: translateX(4px); }

/* staggered load */
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-marker, .hero h1, .hero-sub, .hero-ctas, .hero-photo {
  animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero h1 { animation-delay: 0.08s; }
.hero-sub { animation-delay: 0.18s; }
.hero-ctas { animation-delay: 0.28s; }
.hero-photo { animation-delay: 0.4s; }

/* hero photo — panoramic strip under the headline */
.hero-photo {
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--horizon);
  z-index: 2;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: clamp(260px, 42vw, 460px);
  object-fit: cover;
  object-position: center 62%;
}

.hero-photo-caption {
  position: absolute;
  left: var(--pad);
  bottom: 20px;
  z-index: 3;
  font-family: 'Fragment Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  background: color-mix(in srgb, var(--sky-deep) 72%, transparent);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 100px;
}

/* ======= TICKER ======= */
.ticker {
  border-top: 1px solid var(--haze-faint);
  border-bottom: 1px solid var(--haze-faint);
  overflow: hidden;
  padding: 14px 0;
  background: var(--sky-deep);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 36s linear infinite;
}

.ticker span {
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-faint);
  white-space: nowrap;
  padding-right: 18px;
}

.ticker span::after {
  content: '✺';
  color: var(--coral);
  padding-left: 18px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======= SECTIONS ======= */
.section { padding: 120px 0; position: relative; }

.section-eyebrow {
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.section-eyebrow .num { color: var(--sand-faint); }

.section h2,
.cta-section h2 {
  font-variation-settings: 'wdth' 120;
  font-weight: 800;
  font-size: clamp(27px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 18ch;
  margin-bottom: 28px;
  overflow-wrap: break-word;
}

.section h2 em,
.cta-section h2 em {
  font-variation-settings: 'opsz' 50;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in { opacity: 1; transform: none; }

/* no-JS safety: reveal styles only apply when the script has run */
body:not(.js) .reveal { opacity: 1; transform: none; }

/* ======= SERVICES ======= */
.services-intro {
  max-width: 700px;
  margin-bottom: 80px;
}

.services-lead {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 40;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.3;
  color: var(--sand-dim);
}

.service {
  display: grid;
  grid-template-columns: clamp(90px, 13vw, 180px) 1.1fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--haze-faint);
  align-items: start;
  transition: background 0.25s ease;
}

.service:last-of-type { border-bottom: 1px solid var(--haze-faint); }

.service-num {
  font-variation-settings: 'wdth' 125;
  font-weight: 800;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px var(--haze);
  transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
}

.service:hover .service-num {
  color: var(--coral);
  -webkit-text-stroke-color: var(--coral);
}

.service h3 {
  font-variation-settings: 'wdth' 115;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 16ch;
}

.service-price {
  display: inline-block;
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--peach);
  border: 1px solid var(--haze);
  border-radius: 100px;
  padding: 8px 16px;
}

.service-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--sand-dim);
  margin-bottom: 26px;
}

.service-for {
  font-family: 'Fragment Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-faint);
  margin-bottom: 6px;
}

.service-for-text {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 16;
  font-size: 17px;
  line-height: 1.5;
  color: var(--sand);
  margin-bottom: 26px;
}

.service-link {
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  border-bottom: 1px solid var(--haze);
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}

.service-link:hover { border-bottom-color: var(--coral); }

/* ======= HOW WE WORK ======= */
.rules-section {
  background: var(--sky-deep);
  position: relative;
}

.rules-section::before,
.local-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--horizon);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  margin-top: 64px;
}

.rule-num {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 60;
  font-size: 52px;
  line-height: 1;
  color: var(--coral);
  margin-bottom: 22px;
}

.rule h3 {
  font-variation-settings: 'wdth' 112;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.rule p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--sand-dim);
}

.rules-note {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--haze-faint);
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 20;
  font-size: 19px;
  line-height: 1.55;
  color: var(--sand-dim);
  max-width: 44em;
}

.rules-note strong {
  color: var(--peach);
  font-weight: 500;
}

/* ======= TEAM ======= */
.team-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.team-aside-note {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 20;
  font-size: 18px;
  line-height: 1.55;
  color: var(--sand-faint);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--haze-faint);
  max-width: 22em;
}

.team-member {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 34px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--haze-faint);
}

.team-member:first-child { border-top: none; padding-top: 0; }

.team-photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sky-high);
  border: 1px solid var(--haze);
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  fill: var(--sand-faint);
  opacity: 0.5;
}

.team-member h3 {
  font-variation-settings: 'wdth' 112;
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 6px;
}

.team-role {
  font-family: 'Fragment Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.team-member p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sand-dim);
  max-width: 34em;
}

/* ======= LOCAL ======= */
.local-section {
  background: var(--sky-deep);
  position: relative;
  overflow: hidden;
}

.local-section::after {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle at center, var(--photo-glow), transparent 62%);
  pointer-events: none;
}

.local-text { max-width: 640px; position: relative; }

.local-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sand-dim);
  margin-bottom: 20px;
  max-width: 36em;
}

/* ======= CTA ======= */
.cta-section {
  padding: 170px 0 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 55%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, var(--photo-glow), transparent 60%);
  animation: glow 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glow {
  from { opacity: 0.6; transform: translate(-54%, -50%) scale(0.96); }
  to { opacity: 1; transform: translate(-46%, -50%) scale(1.05); }
}

.cta-section h2 {
  margin: 0 auto 30px;
  max-width: 16ch;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sand-dim);
  max-width: 32em;
  margin: 0 auto 48px;
  position: relative;
}

.cta-section .hero-ctas {
  justify-content: center;
  position: relative;
}

/* ======= FOOTER ======= */
.footer {
  border-top: 1px solid var(--haze-faint);
  padding: 52px 0 40px;
  font-size: 14px;
  color: var(--sand-dim);
  background: var(--sky-deep);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--haze-faint);
}

.footer-nav-title {
  font-family: 'Fragment Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-faint);
  margin-bottom: 6px;
}

.footer a {
  color: var(--sand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--haze);
  width: fit-content;
}

.footer a:hover { color: var(--coral); text-decoration-color: var(--coral); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-meta {
  font-family: 'Fragment Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-faint);
}

/* ======= TOPIC PAGES ======= */
.page-hero {
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -360px;
  transform: translateX(-50%);
  width: 1400px;
  height: 700px;
  background: radial-gradient(ellipse at center, var(--photo-glow), transparent 65%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--horizon);
}

.page-hero .container { position: relative; }

.breadcrumb {
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-faint);
  margin-bottom: 40px;
}

.breadcrumb a {
  color: var(--coral);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero h1 {
  font-variation-settings: 'wdth' 120;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  max-width: 17ch;
  margin-bottom: 28px;
  overflow-wrap: break-word;
}

.page-hero h1 em {
  font-variation-settings: 'opsz' 60;
}

.page-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--sand-dim);
  max-width: 38em;
}

.page-lead + .page-lead {
  margin-top: 20px;
}

.page-hero .hero-ctas {
  margin-top: 40px;
}

.page-section {
  padding: 88px 0;
  border-top: 1px solid var(--haze-faint);
}

.page-section:first-of-type { border-top: none; }

.page-section h2 {
  font-variation-settings: 'wdth' 115;
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 22ch;
  margin-bottom: 36px;
}

.page-section p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 38em;
  color: var(--sand-dim);
}

.page-section p strong {
  color: var(--sand);
  font-weight: 600;
}

/* Deliverables / included list */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--haze-faint);
  border: 1px solid var(--haze-faint);
}

.checklist li {
  background: var(--sky-high);
  padding: 26px 28px;
  font-size: 16px;
  line-height: 1.5;
}

.checklist li strong {
  display: block;
  font-variation-settings: 'wdth' 112;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--sand);
}

.checklist li span {
  color: var(--sand-dim);
  font-size: 15px;
}

/* Numbered process steps */
.steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 40em;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--sand-dim);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Fragment Mono', monospace;
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 0.04em;
  padding-top: 3px;
}

.steps li strong {
  color: var(--sand);
  font-weight: 600;
}

/* Pricing callout */
.price-note {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 40;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--coral);
  max-width: 24ch;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--haze-faint);
  max-width: 44em;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--haze-faint);
}

.faq-item h3 {
  font-variation-settings: 'wdth' 112;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--sand-dim);
  margin: 0;
}

/* Sibling cross-links */
.also {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.also a {
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  border: 1px solid var(--haze);
  border-radius: 100px;
  padding: 11px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.also a:hover {
  border-color: var(--coral);
  background: var(--sky-high);
}

/* ======= MOTION PREFS ======= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-marker, .hero h1, .hero-sub, .hero-ctas, .hero-photo { animation: none; }
  .ticker-track { animation: none; }
  .cta-section::before { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 980px) {
  .rules-grid { grid-template-columns: 1fr; gap: 44px; }
  .team-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .logo-meta { display: none; }
  .logo { font-size: 15px; white-space: nowrap; }
  .hero-text { padding: 64px 0 56px; }
  .section { padding: 80px 0; }
  .page-hero { padding: 56px 0 56px; }
  .page-section { padding: 64px 0; }
  .service {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 44px 0;
  }
  .service-num { font-size: 56px; }
  .team-member { grid-template-columns: 1fr; gap: 18px; }
  .team-photo { width: 88px; height: 88px; }
  .cta-section { padding: 110px 0 90px; }
}

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

@media (max-width: 600px) {
  .hero h1, .section h2, .cta-section h2, .page-hero h1 { font-variation-settings: 'wdth' 105; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
