/* ============================================================
   TACKLE ADS — Performance media agency
   Shuran LLC · tackleads.co
   Direction: data-driven editorial, navy + acid green, bold condensed
   ============================================================ */

:root {
  --bg: #FAFAF7;
  --bg-soft: #F1F0EB;
  --paper: #FFFFFF;
  --ink: #0F1629;
  --ink-dim: #4A5165;
  --ink-mute: #8A8F9F;
  --line: #E5E3DC;
  --line-strong: #C8C5BA;
  --navy: #0F1629;
  --navy-deep: #060B19;
  --acid: #C7F23A;
  --acid-soft: #E8F8A0;
  --coral: #FF6B4A;
  --maxw: 1320px;
  --r-lg: 16px;
  --r-md: 10px;
  --r-sm: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; font-size: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 400; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.vh { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* ========== ANNOUNCE ========== */
.announce {
  background: var(--navy); color: #fff;
  padding: 9px 16px; text-align: center;
  font-size: 12px; font-weight: 500;
  letter-spacing: .03em;
}
.announce strong { color: var(--acid); font-weight: 700; }
.announce .sep { opacity: .35; margin: 0 12px; }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-left { display: flex; align-items: center; gap: 32px; }
.logo {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 19px; letter-spacing: -.025em;
  color: var(--navy); white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.logo .dot {
  width: 7px; height: 7px;
  background: var(--acid);
  border-radius: 50%;
  display: inline-block;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); border-bottom-color: var(--acid); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.icon-btn:hover { background: var(--bg-soft); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.7; fill: none; }
.icon-btn.burger { display: none; }
.nav-cta {
  padding: 10px 18px;
  background: var(--navy); color: #fff;
  border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 600;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--navy-deep); }
.nav-cta::after { content: '→'; font-size: 14px; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .icon-btn.burger { display: flex !important; }
  .nav-row { padding: 14px 18px; }
}

/* ========== DRAWER ========== */
.drawer-bg {
  position: fixed; inset: 0;
  background: rgba(15,22,41,.5);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.drawer-bg.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(88vw, 360px);
  background: var(--paper);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -16px 0 40px rgba(0,0,0,.15);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.drawer-close:hover { background: var(--line); }
.drawer-close svg { width: 18px; height: 18px; stroke: var(--ink); stroke-width: 2; fill: none; }
.drawer-nav { padding: 12px 0; flex: 1; overflow-y: auto; }
.drawer-nav a {
  display: block; padding: 16px 20px;
  font-weight: 600; font-size: 18px; letter-spacing: -.01em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
}
.drawer-nav a:hover { color: var(--navy); background: var(--bg-soft); }
.drawer-foot {
  padding: 20px;
  border-top: 1px solid var(--line);
}
.drawer-foot .btn { width: 100%; justify-content: center; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-weight: 600; font-size: 14.5px; letter-spacing: -.005em;
  border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-acid { background: var(--acid); color: var(--navy); }
.btn-acid:hover { background: #B5DC2F; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }
.btn .arr { transition: transform .2s; display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }

/* ========== HERO ========== */
.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.hero::before {
  content: ''; position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, var(--acid-soft) 0%, transparent 60%);
  opacity: .5;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 99px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px var(--acid-soft);
}
.hero h1 {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.98;
  letter-spacing: -.045em;
  margin-bottom: 28px;
  max-width: 1100px;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: -2px;
  height: 14px;
  background: var(--acid);
  z-index: -1;
  transform: skew(-2deg);
}
.hero h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-dim);
}
.hero p.lead {
  font-size: 19px; color: var(--ink-dim); line-height: 1.55;
  max-width: 620px; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 44px; line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.hero-stat .num .small { font-size: 24px; color: var(--ink-mute); font-weight: 500; }
.hero-stat .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-dim);
  letter-spacing: .08em; text-transform: uppercase;
}
@media (max-width: 900px) {
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stat .num { font-size: 32px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== LOGO STRIP ========== */
.logos {
  padding: 48px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px;
}
.logos .label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-mute);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.logos .grid {
  display: flex; flex-wrap: wrap;
  justify-content: space-around; align-items: center;
  gap: 32px;
  opacity: .55;
}
.logos .grid span {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink-dim);
}

/* ========== SECTION HEAD ========== */
.sec-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: 96px 24px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
}
.sec-head .left .kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-dim);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(34px, 4.5vw, 56px); line-height: 1.05;
  letter-spacing: -.035em;
}
.sec-head h2 em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  color: var(--ink-dim);
}
.sec-head p {
  font-size: 16px; color: var(--ink-dim); line-height: 1.65;
  max-width: 460px;
}
@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; padding: 56px 24px 28px; }
}

/* ========== SERVICES ========== */
.services {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px 96px;
}
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,22,41,.08);
  border-color: var(--ink-dim);
}
.svc .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-mute);
  letter-spacing: .08em;
  margin-bottom: 24px;
}
.svc h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.svc p {
  color: var(--ink-dim); font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.svc .ftr {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.svc .price { font-weight: 700; color: var(--ink); }
.svc .price small { color: var(--ink-mute); font-weight: 500; }
.svc .arrow {
  color: var(--ink-dim);
  transition: transform .2s, color .2s;
}
.svc:hover .arrow { color: var(--navy); transform: translateX(4px); }

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* ========== CASES ========== */
.cases {
  background: var(--navy);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cases::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(circle, rgba(199,242,58,.08) 0%, transparent 60%);
}
.cases-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 2;
}
.cases .sec-head { padding: 0 0 40px; }
.cases .sec-head .left .kicker { color: var(--acid); }
.cases .sec-head p { color: rgba(255,255,255,.7); }
.cases-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: background .25s, border-color .25s;
  display: flex; flex-direction: column; gap: 18px;
}
.case-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(199,242,58,.3);
}
.case-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,.5);
  letter-spacing: .08em;
}
.case-card .meta .tag {
  background: rgba(199,242,58,.15); color: var(--acid);
  padding: 3px 10px; border-radius: 99px;
  text-transform: uppercase;
}
.case-card h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 28px; letter-spacing: -.02em;
  line-height: 1.15;
  color: #fff;
}
.case-card p {
  color: rgba(255,255,255,.65);
  font-size: 14.5px; line-height: 1.6;
}
.case-card .results {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.case-card .res .v {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: -.025em;
  line-height: 1;
  color: var(--acid);
}
.case-card .res .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: rgba(255,255,255,.5);
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 6px;
}
.case-card .more {
  color: var(--acid); font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.case-card:hover .more { gap: 10px; }

@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .case-card .results { grid-template-columns: 1fr; gap: 12px; } }

/* ========== PROCESS ========== */
.process {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px 96px;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  padding: 32px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.step .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-mute);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.step h4 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: -.015em;
  margin-bottom: 10px;
}
.step p {
  color: var(--ink-dim); font-size: 13.5px; line-height: 1.55;
}
.step .duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--navy);
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}
@media (max-width: 1024px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }

/* ========== TESTIMONIAL FEATURE ========== */
.testimonial-feature {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tf-inner {
  max-width: 880px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.tf-inner .stars { color: var(--acid); letter-spacing: 4px; font-size: 22px; margin-bottom: 24px; -webkit-text-stroke: 1px var(--ink-dim); }
.tf-inner blockquote {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.35;
  letter-spacing: -.015em;
  margin-bottom: 32px;
}
.tf-inner blockquote em { font-style: italic; color: var(--ink-dim); }
.tf-inner .author {
  display: inline-flex; align-items: center; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.tf-inner .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acid-soft) 0%, var(--navy) 200%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 18px; color: var(--navy);
}
.tf-inner .meta { text-align: left; }
.tf-inner .name { font-weight: 700; font-size: 14.5px; }
.tf-inner .role { font-size: 12.5px; color: var(--ink-dim); }

/* ========== PRICING ========== */
.pricing {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px 96px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
}
.tier.featured {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
  position: relative;
}
.tier.featured::before {
  content: 'Most popular';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--acid); color: var(--navy);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 99px;
}
.tier .tier-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.tier.featured .tier-name { color: rgba(255,255,255,.6); }
.tier .price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 20px;
}
.tier .price-row .amount {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 44px; letter-spacing: -.04em; line-height: 1;
}
.tier .price-row .unit {
  font-size: 13px; color: var(--ink-mute);
}
.tier.featured .price-row .unit { color: rgba(255,255,255,.55); }
.tier h4 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; letter-spacing: -.015em;
  margin-bottom: 10px;
}
.tier p.tagline {
  color: var(--ink-dim); font-size: 14px; line-height: 1.55;
  margin-bottom: 28px;
}
.tier.featured p.tagline { color: rgba(255,255,255,.7); }
.tier ul.features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.tier ul.features li {
  font-size: 13.5px;
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.55;
}
.tier ul.features li::before {
  content: '✓';
  color: var(--acid);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.tier.featured ul.features li::before { color: var(--acid); }
.tier .tier-cta { width: 100%; }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ========== BOOK CTA STRIP ========== */
.book-strip {
  background: var(--acid);
  padding: 80px 24px;
  text-align: center;
}
.book-strip .inner { max-width: 720px; margin: 0 auto; }
.book-strip h2 {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(34px, 4vw, 52px); line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 18px;
  color: var(--navy);
}
.book-strip h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.book-strip p {
  color: var(--navy); opacity: .75;
  font-size: 17px; line-height: 1.55;
  margin-bottom: 32px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}

/* ========== FAQ ========== */
.faq { padding: 80px 0; }
.faq-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.faq-list {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 28px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 22px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: -.01em;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 22px; color: var(--ink-dim);
  transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); color: var(--navy); }
.faq-a { padding: 0 24px 22px; font-size: 14.5px; color: var(--ink-dim); line-height: 1.65; }
.faq-a a { color: var(--navy); text-decoration: underline; }

/* ========== FOOTER ========== */
.foot { background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 24px; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot-brand .big {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 24px; letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 12px; display: inline-flex; align-items: baseline; gap: 4px;
}
.foot-brand .big .dot { width: 8px; height: 8px; background: var(--acid); border-radius: 50%; }
.foot-brand p { color: rgba(255,255,255,.55); max-width: 320px; font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.foot-soc { display: flex; gap: 8px; }
.foot-soc a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.foot-soc a:hover { background: var(--acid); color: var(--navy); border-color: var(--acid); }
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 9px; }
.foot-col a { font-size: 13.5px; color: rgba(255,255,255,.7); transition: color .2s; }
.foot-col a:hover { color: var(--acid); }

.foot-legal {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11.5px; color: rgba(255,255,255,.45); line-height: 1.7;
}
.foot-legal p { margin-bottom: 6px; }
.foot-legal strong { color: rgba(255,255,255,.7); }
.foot-legal a { color: rgba(255,255,255,.6); text-decoration: underline; text-decoration-color: rgba(255,255,255,.2); }

.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4); font-size: 12px;
  flex-wrap: wrap; gap: 12px;
}
.foot-bot .legal-links { display: flex; gap: 16px; }
.foot-bot .legal-links a:hover { color: var(--acid); }

@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .foot-top { grid-template-columns: 1fr; }
}

/* ========== PAGE HEAD (inner pages) ========== */
.page-head {
  padding: 56px 24px 28px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.page-head .inner { max-width: var(--maxw); margin: 0 auto; }
.page-head .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-mute);
  margin-bottom: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.page-head .breadcrumb a { color: var(--ink-dim); }
.page-head h1 {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(38px, 5.5vw, 64px); line-height: 1.02;
  letter-spacing: -.035em; margin-bottom: 12px;
}
.page-head h1 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--ink-dim); }
.page-head p { font-size: 17px; color: var(--ink-dim); max-width: 720px; line-height: 1.55; }

/* ========== PROSE (legal pages) ========== */
.prose {
  max-width: 760px; margin: 0 auto;
  padding: 56px 24px 96px;
}
.prose h2 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 24px; letter-spacing: -.02em;
  margin: 36px 0 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 17px; font-weight: 600;
  margin: 22px 0 8px;
}
.prose p, .prose li {
  font-size: 15px; color: var(--ink-dim); line-height: 1.7;
  margin-bottom: 12px;
}
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 14px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { color: var(--ink); }
.prose a { color: var(--navy); text-decoration: underline; }
.prose .updated { font-size: 13px; color: var(--ink-mute); margin-bottom: 24px; font-family: 'JetBrains Mono', monospace; }

/* ========== BOOKING FORM ========== */
.book-wrap {
  max-width: 920px; margin: 0 auto;
  padding: 56px 24px 96px;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}
.book-info {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  height: fit-content;
}
.book-info h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
  margin-bottom: 18px;
}
.book-info ul {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 24px;
}
.book-info ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.55;
}
.book-info ul li::before {
  content: '✓'; color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}
.book-info .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}

.book-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.book-form .field-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.book-form .field { display: flex; flex-direction: column; gap: 6px; }
.book-form .field.full { grid-column: 1 / -1; }
.book-form .field label {
  font-size: 12.5px; font-weight: 600; color: var(--ink-dim);
}
.book-form .field input, .book-form .field select, .book-form .field textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14.5px; color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.book-form .field input:focus, .book-form .field select:focus, .book-form .field textarea:focus { border-color: var(--navy); }
.book-form .field input.invalid, .book-form .field select.invalid, .book-form .field textarea.invalid { border-color: var(--coral); }
.book-form .field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.book-form .field .err {
  font-size: 11.5px; color: var(--coral); display: none;
}
.book-form .field input.invalid + .err,
.book-form .field select.invalid + .err,
.book-form .field textarea.invalid + .err { display: block; }
.book-form .submit-row { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.book-form .fine {
  font-size: 11.5px; color: var(--ink-mute); line-height: 1.5;
}
.book-form .fine a { color: var(--navy); text-decoration: underline; }

@media (max-width: 768px) {
  .book-wrap { grid-template-columns: 1fr; gap: 24px; }
  .book-form .field-row { grid-template-columns: 1fr; }
}

/* ========== CONFIRMATION ========== */
.confirm {
  max-width: 580px; margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}
.confirm .check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--acid);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.confirm .check svg { width: 32px; height: 32px; stroke: var(--navy); stroke-width: 3; fill: none; }
.confirm h1 {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 38px; line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 14px;
}
.confirm h1 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--ink-dim); }
.confirm p { color: var(--ink-dim); font-size: 16px; line-height: 1.6; margin-bottom: 12px; }
.confirm .booking-num {
  display: inline-block;
  margin: 16px 0 24px;
  padding: 10px 18px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 600;
  letter-spacing: .04em;
}
.confirm .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT FORM ========== */
.contact-wrap {
  max-width: 920px; margin: 0 auto;
  padding: 56px 24px 96px;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.contact-info {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact-info h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: -.015em;
  margin-bottom: 18px;
}
.contact-info .item { margin-bottom: 20px; }
.contact-info .item h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 4px;
}
.contact-info .item p { font-size: 14px; color: var(--ink); line-height: 1.5; }
.contact-info .item a { color: var(--navy); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-form textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 14.5px; color: var(--ink);
  outline: none; resize: vertical; min-height: 120px;
}
.contact-form textarea:focus { border-color: var(--navy); }

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 24px; }
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy); color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 13.5px; font-weight: 500;
  z-index: 300;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(120%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  max-width: 320px;
}
.toast.show { transform: translateY(0); }
.toast .ico {
  width: 22px; height: 22px;
  border-radius: 50%; background: var(--acid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toast .ico svg { width: 12px; height: 12px; stroke: var(--navy); stroke-width: 3; fill: none; }
