:root {
  --ink: #151216;
  --paper: #f3efe6;
  --cream: #fff9ef;
  --pink: #f22f8a;
  --orange: #ff693c;
  --yellow: #f3e63e;
  --aqua: #7ce8d6;
  --muted: #726b6f;
  --line: rgba(21, 18, 22, 0.16);
  --content: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 80px rgba(16, 9, 22, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--yellow);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 34px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.announcement a { margin-left: 10px; font-weight: 700; }
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(242, 47, 138, 0.15);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 9px transparent; } }

.site-header {
  height: 82px;
  padding: 0 max(24px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: rgba(15, 11, 16, 0.96);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111;
  background: linear-gradient(135deg, var(--yellow) 0 50%, var(--pink) 50%);
  border: 2px solid #fff;
  transform: skew(-4deg);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -.08em;
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 14px; letter-spacing: .15em; }
.brand-copy small { color: rgba(255,255,255,.58); font-size: 8px; letter-spacing: .23em; }
.desktop-nav { display: flex; gap: 38px; margin-left: auto; }
.desktop-nav a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  cursor: pointer;
}
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.header-cta {
  padding: 14px 18px;
  color: #111;
  background: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.header-cta span { margin-left: 14px; }
.menu-button { display: none; padding: 11px 10px; }
.menu-button span:not(.sr-only) { height: 2px; display: block; margin: 4px 0; background: #fff; transition: transform .2s, opacity .2s; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 116px 0 0;
  z-index: 90;
  padding: 40px 24px;
  color: #fff;
  background: #151216;
}
.mobile-menu nav { display: grid; }
.mobile-menu a { padding: 20px 0; display: flex; gap: 18px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 28px; font-weight: 800; }
.mobile-menu a span { color: var(--pink); font-size: 10px; letter-spacing: .1em; }
.mobile-menu p { margin-top: 40px; color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.7; }

.hero {
  min-height: calc(100vh - 116px);
  height: 760px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2f1223;
}
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media {
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.01);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 8, 16, .92) 0%, rgba(20, 8, 16, .55) 44%, rgba(20, 8, 16, .1) 70%),
    linear-gradient(0deg, rgba(20, 8, 16, .78) 0%, transparent 40%);
}
.hero-grid {
  opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}
.hero-content {
  width: var(--content);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding-top: clamp(64px, 9vh, 105px);
}
.eyebrow { display: flex; gap: 28px; margin-bottom: 25px; color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.eyebrow span + span { color: rgba(255,255,255,.5); }
.hero-logo { width: clamp(160px, 19vw, 250px); margin: 0 0 14px -8px; filter: drop-shadow(0 12px 22px rgba(0,0,0,.25)); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(43px, 6vw, 82px);
  line-height: .93;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.hero h1 em, .gallery-header h2 em, .details-intro h2 em { color: var(--yellow); font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.hero-lead { max-width: 520px; margin: 24px 0 30px; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-download-button { border: 0; box-shadow: 0 10px 34px rgba(243,230,62,.18); }
.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #171118; background: var(--yellow); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(0,0,0,.14); backdrop-filter: blur(8px); }
.play-icon { width: 24px; height: 24px; display: grid; place-items: center; padding-left: 2px; border: 1px solid currentColor; border-radius: 50%; font-size: 8px; }
.hero-side-card {
  width: 225px;
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 62px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(12, 8, 14, .48);
  backdrop-filter: blur(10px);
}
.card-kicker { display: block; margin-bottom: 9px; color: rgba(255,255,255,.5); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.hero-side-card strong { display: block; margin: 5px 0; font-size: 12px; letter-spacing: .08em; }
.hero-side-card p { margin: 0; font-size: 13px; }
.card-rule { height: 1px; margin: 15px 0; background: rgba(255,255,255,.2); }
.scroll-cue { position: absolute; z-index: 2; bottom: 22px; left: 50%; display: flex; align-items: center; gap: 14px; transform: translateX(-50%); color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .18em; }
.scroll-cue i { width: 40px; height: 1px; background: currentColor; }

.quick-intel { display: grid; grid-template-columns: repeat(4, 1fr); color: #fff; background: var(--ink); border-top: 1px solid rgba(255,255,255,.12); }
.intel-item { min-height: 112px; padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.13); }
.intel-item span { color: rgba(255,255,255,.42); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.intel-item strong { margin-top: 10px; font-size: 14px; }
.intel-status { background: #211b21; }
.intel-status strong { color: var(--aqua); }
.intel-status i { width: 7px; height: 7px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 12px var(--aqua); }

.answer-summary {
  width: var(--content);
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 160px minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 48px;
  border-bottom: 1px solid var(--line);
}
.answer-summary-label { display: flex; flex-direction: column; gap: 8px; }
.answer-summary-label span { color: var(--pink); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.answer-summary-label time { color: #887f83; font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.answer-summary-copy h2 { margin: 0 0 15px; font-size: clamp(27px, 3vw, 40px); line-height: 1.05; letter-spacing: -.04em; }
.answer-summary-copy p { margin: 0; color: #625b5f; font-size: 12px; line-height: 1.8; }
.answer-summary-copy strong { color: var(--ink); }
.answer-summary dl { margin: 0; border-top: 1px solid var(--line); }
.answer-summary dl div { padding: 9px 0; display: grid; grid-template-columns: 1fr 1.15fr; gap: 12px; border-bottom: 1px solid var(--line); }
.answer-summary dt { color: #8a8185; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.answer-summary dd { margin: 0; font-size: 10px; font-weight: 800; text-align: right; }
.answer-summary dd a { color: var(--pink); }

.download-guide-section {
  width: var(--content);
  margin: 0 auto;
  padding: 84px 0 22px;
  border-bottom: 1px solid var(--line);
}
.download-guide-intro {
  max-width: 840px;
  margin-bottom: 34px;
}
.download-guide-intro h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .96;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.download-guide-intro > p:last-child {
  max-width: 740px;
  margin: 22px 0 0;
  color: #625b5f;
  font-size: 13px;
  line-height: 1.85;
}
.download-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.download-guide-grid article {
  min-height: 285px;
  padding: 28px;
  background: #e7dfd3;
  border: 1px solid rgba(21,18,22,.1);
}
.download-guide-grid article span {
  color: var(--pink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .2em;
}
.download-guide-grid h3 {
  margin: 18px 0 14px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.download-guide-grid p {
  margin: 0;
  color: #625b5f;
  font-size: 12px;
  line-height: 1.8;
}

.editorial-section { position: relative; padding: 110px 0 130px; }
.section-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(10px, calc((100vw - 1370px) / 2));
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  writing-mode: vertical-rl;
  color: #9f969a;
  font-size: 7px;
  letter-spacing: .22em;
}
.editorial-wrap { width: var(--content); margin: 0 auto; display: grid; grid-template-columns: 225px minmax(0, 1fr); gap: clamp(48px, 8vw, 110px); }
.contents-card { align-self: start; position: sticky; top: 116px; }
.contents-card > p { margin: 0 0 14px; font-size: 8px; font-weight: 900; letter-spacing: .2em; }
.contents-card ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contents-card li { border-bottom: 1px solid var(--line); }
.contents-card a { padding: 12px 0; display: flex; gap: 14px; color: #5d5659; text-decoration: none; font-size: 11px; }
.contents-card a:hover { color: var(--pink); }
.contents-card a span { color: var(--pink); font-size: 8px; font-weight: 800; }
.verified-note { margin-top: 24px; padding: 16px; display: grid; grid-template-columns: 24px 1fr; gap: 8px; background: #e5ddd0; }
.verified-note > span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #347f72; font-size: 11px; }
.verified-note p { margin: 0; color: #635b5f; font-size: 9px; line-height: 1.5; }
.verified-note strong { display: block; color: var(--ink); font-size: 8px; letter-spacing: .12em; }
.article { min-width: 0; }
.section-label { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--pink); font-size: 8px; font-weight: 900; letter-spacing: .2em; }
.section-label span { width: 50px; height: 1px; display: block; background: currentColor; }
.article-header h2, .gallery-header h2, .details-intro h2 {
  margin: 0;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: .95;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.article-header h2 em { color: var(--pink); font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.article-deck { max-width: 630px; margin: 28px 0 36px; color: #5d5659; font-family: Georgia, serif; font-size: 20px; line-height: 1.55; }
.article-copy { max-width: 720px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; color: #625b5f; font-size: 13px; line-height: 1.8; }
.article-copy p { margin: 0; }
.dropcap::first-letter { float: left; margin: 5px 8px 0 0; color: var(--pink); font-family: Georgia, serif; font-size: 58px; line-height: .72; }
.feature-image { margin: 54px 0 82px; }
.feature-image img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; box-shadow: var(--shadow); }
.feature-image figcaption { padding-top: 12px; display: flex; justify-content: space-between; color: #8b8286; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.feature-image figcaption span { color: var(--pink); font-weight: 900; }
.story-block { scroll-margin-top: 120px; }
.story-heading-row { display: flex; align-items: flex-start; justify-content: space-between; }
.story-heading-row h3, .location-copy h3 { margin: 0; font-size: clamp(40px, 5vw, 68px); line-height: .96; letter-spacing: -.06em; text-transform: uppercase; }
.big-number { color: rgba(242, 47, 138, .14); font-size: 112px; font-weight: 900; line-height: .65; }
.two-column-copy { margin: 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; color: #625b5f; font-size: 13px; line-height: 1.8; }
.two-column-copy strong { color: var(--ink); }
blockquote { margin: 40px 0 90px; padding: 32px 36px; position: relative; color: #fff; background: var(--ink); font-family: Georgia, serif; font-size: 25px; font-style: italic; line-height: 1.4; box-shadow: 10px 10px 0 var(--pink); }
blockquote::before { content: "“"; position: absolute; top: -32px; right: 20px; color: var(--yellow); font-size: 100px; line-height: 1; }
blockquote cite { margin-top: 14px; display: block; color: rgba(255,255,255,.48); font-family: Arial, sans-serif; font-size: 8px; font-style: normal; letter-spacing: .15em; text-transform: uppercase; }
.location-block { display: grid; grid-template-columns: 1.12fr 1fr; background: #e7dfd3; }
.location-image { min-height: 500px; position: relative; }
.location-image img { width: 100%; height: 100%; object-fit: cover; }
.location-image span { position: absolute; bottom: 18px; left: 18px; padding: 8px 10px; color: #fff; background: rgba(0,0,0,.65); font-size: 7px; letter-spacing: .15em; }
.location-copy { padding: 52px 42px; }
.location-copy h3 { font-size: clamp(36px, 4.1vw, 58px); }
.location-copy > p:not(.section-label) { color: #5e575b; font-size: 13px; line-height: 1.8; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; }
.check-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.check-list span { margin-right: 8px; color: var(--pink); }

.gallery-section { padding: 100px max(24px, calc((100vw - 1380px) / 2)) 120px; color: #fff; background: #181318; }
.gallery-header { margin-bottom: 45px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-label.light { color: var(--yellow); }
.gallery-header h2 { max-width: 760px; }
.gallery-header > p { max-width: 320px; margin: 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.7; }
.gallery-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr; gap: 12px; }
.gallery-card { min-height: 410px; padding: 0; position: relative; overflow: hidden; border: 0; background: #241b22; cursor: zoom-in; }
.gallery-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .5s, filter .5s; }
.gallery-card:hover img { transform: scale(1.04); filter: saturate(1.18); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 50%); }
.gallery-card span { position: absolute; z-index: 1; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: center; gap: 10px; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.gallery-card i { color: var(--yellow); font-style: normal; }

.details-section { width: var(--content); margin: 0 auto; padding: 120px 0; display: grid; grid-template-columns: .9fr 1.4fr; gap: 90px; }
.details-intro h2 { font-size: clamp(44px, 5vw, 68px); }
.details-intro > p:last-child { max-width: 440px; color: #665f62; font-size: 13px; line-height: 1.8; }
.tabs { align-self: end; }
.tab-list { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.tab-list button { padding: 14px 10px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: #8b8286; cursor: pointer; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tab-list button[aria-selected="true"] { color: var(--pink); border-bottom-color: var(--pink); }
.tab-panel { min-height: 245px; padding: 38px 0 0; display: grid; grid-template-columns: 110px 1fr auto; gap: 28px; align-items: center; }
.tab-panel[hidden] { display: none; }
.detail-number { color: var(--pink); font-family: Georgia, serif; font-size: 88px; line-height: 1; }
.tab-panel span { display: block; margin-bottom: 8px; color: #8f868a; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.tab-panel strong { display: block; font-size: 22px; }
.tab-panel p { max-width: 430px; color: #70686c; font-size: 11px; line-height: 1.7; }
.tab-panel a { font-size: 8px; font-weight: 900; letter-spacing: .12em; }

.trust-section { padding: 110px max(24px, calc((100vw - 1180px) / 2)); background: #e8e0d5; scroll-margin-top: 100px; }
.trust-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: clamp(50px, 8vw, 100px); align-items: start; }
.faq-column > h2 { margin: 0 0 38px; font-size: clamp(44px, 5vw, 68px); line-height: .95; letter-spacing: -.06em; text-transform: uppercase; }
.faq-column > h2 em { color: var(--pink); font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.faq-list { border-top: 1px solid rgba(21,18,22,.25); }
.faq-list details { border-bottom: 1px solid rgba(21,18,22,.25); }
.faq-list summary { padding: 21px 44px 21px 0; position: relative; cursor: pointer; list-style: none; font-size: 14px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 17px; right: 0; color: var(--pink); font-size: 23px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 690px; margin: -4px 0 22px; color: #61595d; font-size: 12px; line-height: 1.75; }
.evidence-column { display: grid; gap: 16px; }
.evidence-card { padding: 28px; color: #fff; background: var(--ink); }
.evidence-kicker { color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.evidence-card h3 { margin: 10px 0 22px; font-size: 25px; letter-spacing: -.035em; }
.evidence-card ol { margin: 0; padding: 0; list-style: none; }
.evidence-card li { padding: 13px 0; display: grid; grid-template-columns: 26px 1fr; gap: 12px; border-top: 1px solid rgba(255,255,255,.15); }
.evidence-card li > span { color: var(--pink); font-size: 8px; font-weight: 900; }
.evidence-card li a { display: block; font-size: 11px; font-weight: 800; }
.evidence-card li small { margin-top: 5px; display: block; color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.5; }
.source-date { margin: 19px 0 0; padding-top: 16px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.15); font-size: 9px; }
.update-card { color: var(--ink); background: var(--yellow); }
.update-card .evidence-kicker { color: #7f3452; }
.update-entry { padding-top: 15px; border-top: 1px solid rgba(21,18,22,.22); }
.update-entry time { font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.update-entry p { margin: 9px 0 0; font-size: 10px; line-height: 1.7; }

.source-banner { min-height: 300px; padding: 64px max(24px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 40px; background: linear-gradient(110deg, var(--yellow), #ffce42 55%, var(--orange)); }
.source-banner span, .source-banner > div > span { font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.source-banner h2 { margin: 12px 0 8px; font-size: clamp(38px, 5vw, 68px); line-height: .95; letter-spacing: -.06em; text-transform: uppercase; }
.source-banner p { margin: 0; font-size: 12px; }
.button-dark { color: #fff; background: var(--ink); white-space: nowrap; }

.site-footer { padding: 65px max(24px, calc((100vw - 1180px) / 2)) 28px; color: #fff; background: #110e11; display: grid; grid-template-columns: 1fr auto; gap: 55px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand p { margin: 0; color: rgba(255,255,255,.45); font-size: 10px; line-height: 1.7; }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a,
.footer-links button { color: rgba(255,255,255,.7); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.footer-links button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.copyright { grid-column: 1 / -1; padding-top: 20px; margin: 0; color: rgba(255,255,255,.3); border-top: 1px solid rgba(255,255,255,.1); font-size: 8px; line-height: 1.7; }

.cookie-consent {
  width: min(960px, calc(100vw - 32px));
  position: fixed;
  z-index: 1200;
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  background: rgba(21, 18, 22, .98);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent span { color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.cookie-consent h2 { margin: 8px 0 8px; font-size: 24px; line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.cookie-consent p { max-width: 690px; margin: 0; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.7; }
.cookie-consent-actions { display: flex; gap: 10px; align-items: center; justify-content: flex-end; }

dialog { border: 0; }
dialog::backdrop { background: rgba(12, 8, 13, .88); backdrop-filter: blur(8px); }
.search-dialog { width: min(700px, calc(100vw - 32px)); padding: 0; color: #fff; background: #1b161b; box-shadow: var(--shadow); }
.search-box { padding: 42px; position: relative; }
.search-box label { display: block; margin-bottom: 18px; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.search-box > div { display: flex; }
.search-box input { flex: 1; min-width: 0; padding: 16px; color: #fff; border: 1px solid rgba(255,255,255,.25); border-right: 0; outline: 0; background: transparent; }
.search-box input:focus { border-color: var(--yellow); }
.search-box > div button { padding: 0 22px; border: 0; background: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .12em; cursor: pointer; }
.search-box p { margin: 14px 0 0; color: rgba(255,255,255,.45); font-size: 10px; }
.dialog-close, .lightbox-close { position: absolute; top: 10px; right: 14px; border: 0; color: inherit; background: transparent; font-size: 30px; cursor: pointer; }
.lightbox { max-width: min(1100px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; background: transparent; overflow: visible; }
.lightbox img { max-height: calc(100vh - 48px); object-fit: contain; box-shadow: var(--shadow); }
.lightbox-close { z-index: 1; top: -40px; right: 0; color: #fff; }

@media (max-width: 980px) {
  :root { --content: min(100% - 36px, 840px); }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .mobile-menu.is-open { display: block; }
  .hero { min-height: 700px; height: calc(100vh - 116px); }
  .hero-media { background-position: 62% center; }
  .hero-side-card { display: none; }
  .quick-intel { grid-template-columns: 1fr 1fr; }
  .answer-summary { grid-template-columns: 140px 1fr; }
  .answer-summary dl { grid-column: 2; }
  .download-guide-grid { grid-template-columns: 1fr; }
  .download-guide-grid article { min-height: 0; }
  .editorial-wrap { grid-template-columns: 1fr; }
  .contents-card { display: none; }
  .section-rail { display: none; }
  .gallery-grid { grid-template-columns: 1.2fr 1fr; }
  .gallery-card:last-child { grid-column: 1 / -1; min-height: 300px; }
  .details-section { grid-template-columns: 1fr; gap: 45px; }
  .trust-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .copyright { grid-column: 1; }
}

@media (max-width: 680px) {
  :root { --content: calc(100% - 28px); }
  .announcement { padding-inline: 10px; font-size: 8px; }
  .announcement a { display: none; }
  .site-header { height: 72px; padding-inline: 14px; }
  .brand-copy { display: none; }
  .mobile-menu { inset: 106px 0 0; }
  .hero { height: 700px; min-height: 0; }
  .hero-content { padding-top: 62px; }
  .hero-shade { background: linear-gradient(90deg, rgba(20,8,16,.9), rgba(20,8,16,.3)), linear-gradient(0deg, rgba(20,8,16,.9), transparent 50%); }
  .hero h1 { font-size: clamp(42px, 13.2vw, 64px); }
  .hero-lead { max-width: 94%; font-size: 13px; }
  .button { min-height: 46px; padding-inline: 15px; }
  .scroll-cue { left: 14px; transform: none; }
  .quick-intel { grid-template-columns: 1fr; }
  .intel-item { min-height: 86px; padding: 20px; }
  .answer-summary { padding: 42px 0; grid-template-columns: 1fr; gap: 22px; }
  .answer-summary dl { grid-column: 1; }
  .download-guide-section { padding-top: 62px; }
  .download-guide-intro h2 { font-size: 40px; }
  .download-guide-grid article { padding: 23px; }
  .editorial-section { padding: 76px 0 80px; }
  .article-header h2, .gallery-header h2, .details-intro h2 { font-size: 43px; }
  .article-deck { font-size: 17px; }
  .article-copy, .two-column-copy { grid-template-columns: 1fr; gap: 16px; }
  .feature-image { margin: 40px 0 65px; }
  .feature-image img { aspect-ratio: 4/3; }
  .big-number { display: none; }
  blockquote { margin-bottom: 72px; padding: 27px 24px; font-size: 20px; }
  .location-block { grid-template-columns: 1fr; }
  .location-image { min-height: 330px; }
  .location-copy { padding: 36px 24px; }
  .gallery-section { padding-top: 76px; padding-bottom: 82px; }
  .gallery-header { display: block; }
  .gallery-header > p { margin-top: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:last-child { min-height: 340px; grid-column: auto; }
  .details-section { padding: 82px 0; }
  .trust-section { padding-top: 76px; padding-bottom: 76px; }
  .faq-list summary { padding-right: 34px; font-size: 13px; line-height: 1.45; }
  .tab-panel { grid-template-columns: 72px 1fr; gap: 18px; }
  .tab-panel > a { grid-column: 2; }
  .detail-number { font-size: 62px; }
  .tab-panel strong { font-size: 18px; }
  .source-banner { padding-block: 55px; display: block; }
  .source-banner .button { margin-top: 28px; }
  .source-banner h2 { font-size: 42px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .search-box { padding: 36px 20px 24px; }
  .cookie-consent { grid-template-columns: 1fr; padding: 18px; }
  .cookie-consent-actions { justify-content: stretch; }
  .cookie-consent-actions .button { flex: 1; }
}

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