/* ══════════════════════════════════════════════════════════════════
   HOTELWEBWORKS — 2026 design system
   Bold, theatrical, red-dominant. Crimson / near-black / warm white.
   Display: Anton (uppercase). Body: Inter. No italics, ever.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --red: #D6001F;
  --red-dark: #A50017;
  --red-deep: #7A0011;
  --ink: #0C0C0D;
  --ink-2: #151517;
  --ink-3: #202024;
  --paper: #FAF6F0;
  --cream: #F1EAE0;
  --white: #FFFFFF;
  --slate: #4A4A50;
  --slate-2: #7A7A82;
  --line: #E4DCCF;
  --line-dark: #2A2A2E;
  --gold: #C9A227;
  /* legacy aliases kept so older inline styles don't break */
  --brass-2: #D6001F;
  --font-d: 'Anton', 'Arial Narrow', sans-serif;
  --font-b: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
}
em, i, cite, blockquote { font-style: normal; } /* house rule: no italics */
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, .section-title {
  font-family: var(--font-d);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: 1.04;
}
h4, h5 { font-family: var(--font-b); font-weight: 700; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2.2rem; }

/* ── scroll progress ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--red); z-index: 1000;
}

/* ── nav ── */
.nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(12,12,13,.96);
  backdrop-filter: blur(10px);
  padding: 10px 32px;
  box-shadow: 0 1px 0 rgba(214,0,31,.35);
}
.nav-logo { display: flex; align-items: baseline; }
.nav-logo .lk {
  font-family: var(--font-d); text-transform: uppercase;
  font-size: 1.3rem; letter-spacing: .04em; color: #fff;
}
.nav-logo .lk b { color: var(--red); font-weight: 400; }
.nav-logo .dot { color: var(--red); font-family: var(--font-d); font-size: 1.5rem; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  color: #fff; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 4px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: var(--red); }
.nav-cta {
  background: var(--red); color: #fff !important; padding: 10px 20px !important;
  border-bottom: none !important; transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); z-index: 950;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 48px; transform: translateX(100%); transition: transform .3s;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: #fff; font-family: var(--font-d); text-transform: uppercase;
  font-size: 2rem; letter-spacing: .03em; padding: 8px 0;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-close {
  position: absolute; top: 22px; right: 28px; background: none; border: 0;
  color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1;
}

/* ── buttons ── */
.btn {
  display: inline-block; padding: 14px 30px;
  font-family: var(--font-b); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em;
  border: 2px solid transparent; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.65); color: #fff; background: transparent; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-outline-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline-ink:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 17px 38px; font-size: .88rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── hero (home) ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--ink);
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 85% 20%, rgba(214,0,31,.38), transparent 60%),
    linear-gradient(to top, rgba(12,12,13,.94), rgba(12,12,13,.55));
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 140px 24px 90px; }
.hero-eyebrow {
  color: var(--red); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .3em; margin-bottom: 1.4rem;
}
.hero h1 {
  color: #fff; font-size: clamp(3.2rem, 9vw, 7.5rem);
  margin-bottom: 1.6rem;
}
.hero h1 em, .hero h1 b { color: var(--red); font-weight: 400; }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 620px; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero-trust { color: rgba(255,255,255,.6); font-size: .85rem; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-trust b { color: #fff; }
.scroll-indicator {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.5); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .25em; text-align: center;
}
.scroll-indicator-line {
  width: 1px; height: 44px; margin: 8px auto 0;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop { 0% {transform: scaleY(0); transform-origin: top} 50% {transform: scaleY(1)} 100% {transform: scaleY(0); transform-origin: bottom} }

/* ── OTA marquee strip ── */
.strip { background: var(--ink); padding: 26px 0 30px; border-top: 3px solid var(--red); border-bottom: 3px solid var(--red); }
.strip-label {
  text-align: center; color: rgba(255,255,255,.55); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .3em; margin-bottom: 12px;
}
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 34px; width: max-content; animation: scroll 28s linear infinite; }
.pf-item {
  font-family: var(--font-d); text-transform: uppercase;
  color: rgba(255,255,255,.35); font-size: 1.7rem; letter-spacing: .04em;
  text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px;
}
.pf-dot { color: var(--red); font-size: 1.7rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ── sections ── */
.section { padding: 96px 0; }
.bg-ivory { background: var(--paper); }
.bg-paper { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--ink); color: #fff; } /* legacy name, now near-black */
.bg-navy .section-title { color: #fff; }
.bg-red { background: var(--red); color: #fff; }

.section-head { max-width: 780px; margin-bottom: 3.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; color: var(--red); font-weight: 700; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .28em; margin-bottom: .9rem;
}
.section-title { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 1rem; }
.section-lead { color: var(--slate); font-size: 1.08rem; }
.bg-navy .section-lead { color: rgba(255,255,255,.72); }

/* ── prose ── */
.prose, .prose-wide { max-width: 760px; }
.prose-wide { max-width: 860px; margin: 0 auto; }
.prose h2, .prose-wide h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 2.6rem 0 1.1rem; }
.prose h2:first-child, .prose-wide h2:first-child { margin-top: 0; }
.prose h3, .prose-wide h3 { font-size: 1.35rem; margin: 2rem 0 .8rem; }
.prose p, .prose-wide p { margin-bottom: 1.15rem; color: #2E2E33; }
.prose ul, .prose ol, .prose-wide ul, .prose-wide ol { margin: 0 0 1.3rem 1.3rem; color: #2E2E33; }
.prose li, .prose-wide li { margin-bottom: .55rem; }
.lede { font-size: 1.22rem; line-height: 1.65; color: var(--ink); margin-bottom: 1.6rem; }
.callout {
  border-left: 5px solid var(--red); background: var(--cream);
  padding: 26px 30px; margin: 1.8rem 0;
}
.callout h4 { margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; }

/* ── metric band ── */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.metric { background: var(--white); padding: 34px 26px; }
.metric .num { font-family: var(--font-d); font-size: 2.7rem; color: var(--red); line-height: 1; margin-bottom: .5rem; }
.metric .lbl { color: var(--slate); font-size: .88rem; }

/* ── value cards ── */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.vcard {
  background: var(--white); border-top: 4px solid var(--red);
  padding: 34px 30px; box-shadow: 0 2px 18px rgba(12,12,13,.05);
  transition: transform .25s, box-shadow .25s;
}
.vcard:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(12,12,13,.12); }
.vcard .ic { font-size: 1.9rem; margin-bottom: 1rem; }
.vcard h3 { font-size: 1.15rem; margin-bottom: .7rem; }
.vcard p { color: var(--slate); font-size: .95rem; margin-bottom: 1.1rem; }
.vcard .lnk { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }

/* ── steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { border-top: 3px solid var(--red); padding-top: 20px; }
.step .sn { font-family: var(--font-d); font-size: 2.6rem; color: var(--red); line-height: 1; margin-bottom: .7rem; }
.step h3 { font-size: 1.25rem; margin-bottom: .6rem; color: inherit; }
.step p { color: rgba(255,255,255,.72); font-size: .94rem; }
.bg-ivory .step p, .bg-paper .step p { color: var(--slate); }

/* ── split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media .ph {
  background: var(--ink); color: rgba(255,255,255,.85);
  font-family: var(--font-d); text-transform: uppercase; font-size: 1.5rem;
  padding: 90px 40px; text-align: center;
  border: 3px solid var(--red);
}

/* ── location hero ── */
.loc-hero {
  min-height: 64vh; display: flex; align-items: flex-end;
  background-color: var(--ink); background-size: cover; background-position: center;
  padding: 150px 0 64px; position: relative; color: #fff;
}
.loc-hero .inner { max-width: 900px; }
.loc-hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.6rem); margin: .8rem 0 1.1rem; }
.loc-hero .sub { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 720px; }
.loc-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.6rem; }
.loc-badge {
  border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85);
  font-size: .8rem; padding: 7px 14px; letter-spacing: .04em;
}
.loc-badge b { color: #fff; }

.crumb { font-size: .78rem; color: rgba(255,255,255,.55); display: flex; gap: 8px; flex-wrap: wrap; text-transform: uppercase; letter-spacing: .08em; }
.crumb a { color: rgba(255,255,255,.8); }
.crumb a:hover { color: var(--red); }
.crumb span { color: rgba(255,255,255,.45); }

/* ── market stats (real data only) ── */
.market-stats { background: var(--ink); color: #fff; padding: 72px 0; border-bottom: 3px solid var(--red); }
.mt-title { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: .4rem; }
.mt-sub { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 2.2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.stat-card { background: var(--ink-2); padding: 26px 22px; display: flex; flex-direction: column; gap: 6px; }
.stat-card .lbl { color: rgba(255,255,255,.55); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.stat-card .val { font-family: var(--font-d); font-size: 2.1rem; color: #fff; line-height: 1.05; }
.stat-card .src { color: var(--red); font-size: .72rem; letter-spacing: .02em; }
.stats-note { color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 1.6rem; max-width: 860px; }
.stats-note a { color: rgba(255,255,255,.75); text-decoration: underline; }

/* ── demand drivers / tiles ── */
.driver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.driver { background: var(--white); padding: 30px 26px; border-left: 4px solid var(--red); box-shadow: 0 2px 14px rgba(12,12,13,.05); }
.driver .dnum { color: var(--red); font-family: var(--font-d); font-size: .95rem; letter-spacing: .1em; margin-bottom: .6rem; }
.driver h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.driver p { color: var(--slate); font-size: .92rem; }
.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.tile { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--ink); padding: 28px 26px; }
.tile h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.tile p { color: var(--slate); font-size: .93rem; }

/* ── competition analysis ── */
.comp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 1.8rem 0 1rem; }
.comp-card { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--red); padding: 26px 26px; }
.comp-card h3 { font-size: 1.05rem; margin: 0 0 .55rem; }
.comp-card p { color: var(--slate); font-size: .92rem; margin: 0; }
.comp-table-wrap { overflow-x: auto; margin: 1.6rem 0; -webkit-overflow-scrolling: touch; }
.comp-table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--white); font-size: .9rem; }
.comp-table th, .comp-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.comp-table thead th { background: var(--ink); color: #fff; font-family: var(--font-d); text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; font-weight: 400; }
.comp-table tbody tr:last-child td { border-bottom: 0; }
.comp-table tr.win td { background: var(--cream); }
.comp-table tr.win td:first-child { border-left: 4px solid var(--red); }
.comp-table td strong { color: var(--ink); }

/* ── SEO keyword clusters ── */
.kw-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 1.8rem 0 1rem; }
.kw-cluster { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--gold); padding: 24px 24px; }
.kw-cluster h4 { font-size: 1rem; margin: 0 0 .5rem; text-transform: uppercase; letter-spacing: .04em; }
.kw-cluster > p { color: var(--slate); font-size: .88rem; margin: 0 0 1rem; }
.kw-terms { display: flex; flex-wrap: wrap; gap: 8px; }
.kw { display: inline-block; background: var(--cream); color: var(--ink); border: 1px solid var(--line); border-radius: 3px; padding: 5px 11px; font-size: .82rem; line-height: 1.3; }

/* ── demand calendar ── */
.event-list { margin: 1.6rem 0; border: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line); }
.event-row:last-child { border-bottom: 0; }
.event-row .mo {
  background: var(--ink); color: #fff; padding: 16px 18px;
  font-family: var(--font-d); text-transform: uppercase; font-size: .92rem; letter-spacing: .05em;
}
.event-row .ev { padding: 16px 20px; background: var(--white); }
.event-row .ev b { display: block; font-size: .95rem; margin-bottom: 2px; }
.event-row .ev span { color: var(--slate); font-size: .88rem; }

/* ── market pulse ── */
.pulse { border: 1px solid var(--line); border-top: 5px solid var(--red); background: var(--white); padding: 34px 36px; margin: 1.8rem 0; }
.pulse h3 { margin-top: 0; }
.pulse .src-row { color: var(--slate-2); font-size: .78rem; margin-top: 1rem; border-top: 1px solid var(--line); padding-top: .9rem; }

/* ── FAQ ── */
.faq-list { border: 1px solid var(--line); background: var(--white); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-b); font-weight: 600; font-size: 1rem; color: var(--ink);
  padding: 20px 54px 20px 24px; position: relative;
}
.faq-q .pm { position: absolute; right: 22px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--red); transition: transform .2s; }
.faq-q .pm::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-q .pm::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--slate); }

/* ── quote band (used sparingly, real/anonymized only) ── */
.tmonial { background: var(--red); color: #fff; padding: 84px 0; }
.tmonial blockquote {
  font-family: var(--font-d); text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.25; max-width: 920px;
}
.tmonial cite { display: block; margin-top: 1.4rem; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.8); }

/* ── stat pull ── */
.stat-pull { border: 3px solid var(--red); padding: 34px 36px; margin: 2rem 0; background: var(--white); }
.stat-pull .big { font-family: var(--font-d); font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--red); line-height: 1; margin-bottom: .7rem; }
.stat-pull .cap { color: var(--slate); font-size: .95rem; }

/* ── case studies (results) ── */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.case { background: var(--white); border: 1px solid var(--line); }
.case .shot { position: relative; background: var(--ink); }
.case .shot img { width: 100%; height: auto; }
.case .bar { display: flex; gap: 6px; padding: 10px 12px; background: var(--ink-2); }
.case .bar span { width: 10px; height: 10px; border-radius: 50%; background: #3A3A40; }
.case .bar span:first-child { background: var(--red); }
.case .body { padding: 26px 28px 30px; }
.case .k { color: var(--red); font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .22em; margin-bottom: .6rem; }
.case h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.case p { color: var(--slate); font-size: .95rem; }
.case ul { margin: .9rem 0 0 1.1rem; color: var(--slate); font-size: .9rem; }
.case li { margin-bottom: .35rem; }

/* ── insights ── */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--red);
  padding: 30px 28px; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(12,12,13,.1); }
.post-card .cat { color: var(--red); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: .8rem; }
.post-card h3 { font-size: 1.2rem; margin-bottom: .7rem; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--red); }
.post-card p { color: var(--slate); font-size: .92rem; flex: 1; }
.post-card .meta { color: var(--slate-2); font-size: .78rem; margin-top: 1.2rem; text-transform: uppercase; letter-spacing: .08em; }
.article-head { background: var(--ink); color: #fff; padding: 160px 0 64px; border-bottom: 3px solid var(--red); }
.article-head h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.8rem); max-width: 900px; margin: .8rem 0 1.2rem; }
.article-head .kick { color: var(--red); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .26em; }
.byline { color: rgba(255,255,255,.65); font-size: .85rem; display: flex; gap: 14px; flex-wrap: wrap; }
.byline b { color: #fff; }
.takeaways { border: 3px solid var(--ink); background: var(--white); padding: 28px 32px; margin: 2rem 0; }
.takeaways h4 { text-transform: uppercase; letter-spacing: .14em; font-size: .85rem; color: var(--red); margin-bottom: .9rem; }
.takeaways ul { margin-left: 1.1rem; }
.takeaways li { margin-bottom: .5rem; }

/* ── nearby chips ── */
.nearby { background: var(--ink); padding: 44px 0; }
.nearby .k { color: rgba(255,255,255,.55); font-size: .74rem; text-transform: uppercase; letter-spacing: .22em; margin-bottom: 14px; }
.chip {
  display: inline-block; border: 1px solid rgba(255,255,255,.28); color: #fff;
  padding: 8px 16px; margin: 0 8px 10px 0; font-size: .84rem; transition: all .2s;
}
.chip:hover { border-color: var(--red); color: #fff; background: rgba(214,0,31,.18); }
.chip.gold { border-color: var(--red); color: #fff; background: var(--red); }
.chip.gold:hover { background: var(--red-dark); }

/* ── locations index ── */
.region-block { margin-bottom: 3rem; }
.region-block h3 { font-size: 1.5rem; margin-bottom: 1.1rem; border-bottom: 3px solid var(--red); display: inline-block; padding-bottom: 4px; }
.loc-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.loc-links a {
  color: var(--ink); font-size: .94rem; padding: 10px 14px;
  background: var(--white); border: 1px solid var(--line); transition: all .2s;
}
.loc-links a:hover { border-color: var(--red); color: var(--red); }
.loc-links a small { color: var(--red); }

/* ── CTA band ── */
.cta-band { background: var(--red); color: #fff; padding: 90px 0; text-align: center; }
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1rem; color: #fff;
}
.cta-band h2 em, .cta-band h2 b { color: var(--ink); font-weight: 400; }
.cta-band p { max-width: 640px; margin: 0 auto 2rem; color: rgba(255,255,255,.88); }
.cta-band .btn-primary { background: var(--ink); }
.cta-band .btn-primary:hover { background: #000; }

/* ── form ── */
.form-card { background: var(--white); border: 1px solid var(--line); border-top: 5px solid var(--red); padding: 36px 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; border: 1px solid #CFC7B8; background: var(--paper);
  font-family: var(--font-b); font-size: .95rem; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
.field textarea { min-height: 110px; resize: vertical; }
.form-msg { font-size: .9rem; margin-top: 12px; }
.form-msg.err { color: var(--red-dark); font-weight: 600; }

/* ── footer ── */
.footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 76px 0 34px; border-top: 4px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 3rem; }
.footer-brand .lk { font-family: var(--font-d); text-transform: uppercase; font-size: 1.35rem; color: #fff; letter-spacing: .04em; }
.footer-brand .lk b { color: var(--red); font-weight: 400; }
.footer-brand p { font-size: .88rem; margin-top: 1rem; color: rgba(255,255,255,.6); }
.footer-brand .addr { font-size: .82rem; }
.footer-col h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,.65); font-size: .88rem; padding: 4px 0; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,.6); }
.footer-legal a:hover { color: var(--red); }

/* ── sticky CTA ── */
#sticky-cta {
  position: fixed; bottom: -120px; left: 0; right: 0; z-index: 800;
  background: var(--ink); border-top: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 14px 52px 14px 22px; transition: bottom .35s;
}
#sticky-cta.show { bottom: 0; }
#sticky-cta p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }
#sticky-cta .btn { padding: 10px 22px; font-size: .76rem; }
#sticky-cta .x {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(255,255,255,.6); font-size: 1.5rem; cursor: pointer;
}

/* ── consent banner ── */
#consent {
  position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 990;
  max-width: 560px; margin: 0 auto;
  background: var(--ink); color: rgba(255,255,255,.85);
  border: 1px solid var(--line-dark); border-top: 4px solid var(--red);
  padding: 22px 24px; box-shadow: 0 18px 50px rgba(0,0,0,.4);
  display: none;
}
#consent.show { display: block; }
#consent p { font-size: .86rem; margin-bottom: 14px; }
#consent p a { color: #fff; text-decoration: underline; }
#consent .row { display: flex; gap: 10px; flex-wrap: wrap; }
#consent button {
  cursor: pointer; font-family: var(--font-b); font-weight: 700;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  padding: 10px 18px; border: 2px solid transparent;
}
#consent .ok { background: var(--red); color: #fff; }
#consent .ok:hover { background: var(--red-dark); }
#consent .no { background: transparent; color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.35); }
#consent .no:hover { border-color: #fff; color: #fff; }

/* ── reveal animation ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .05s; } .reveal.d2 { transition-delay: .15s; }
.reveal.d3 { transition-delay: .25s; } .reveal.d4 { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── responsive ── */
@media (max-width: 1020px) {
  .grid-3, .driver-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .comp-grid, .kw-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .loc-links { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section { padding: 64px 0; }
  .grid-3, .driver-grid, .tile-grid, .post-grid, .steps { grid-template-columns: 1fr; }
  .stats-grid, .metrics { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .loc-links { grid-template-columns: 1fr 1fr; }
  .event-row { grid-template-columns: 1fr; }
  .event-row .mo { padding: 10px 18px; }
  .hero-inner { padding: 120px 20px 80px; }
  #sticky-cta p { display: none; }
}
@media (max-width: 460px) {
  .stats-grid, .metrics, .loc-links { grid-template-columns: 1fr; }
}

/* ── "by Cavmir" parent-brand credit (footer) ── */
.footer .by-cavmir {
  display: block;
  margin: 8px 0 4px;
  font-size: .85rem;
  letter-spacing: .01em;
  color: var(--slate-2);
}
.footer .by-cavmir a {
  color: var(--brass-2);
  font-weight: 600;
  text-decoration: none;
}
.footer .by-cavmir a:hover { text-decoration: underline; }
.footer-bottom a[rel="dofollow"] { color: var(--brass-2); text-decoration: none; }
.footer-bottom a[rel="dofollow"]:hover { text-decoration: underline; }
