/* PASS EG — Cairo Floor System (v2) */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --void: #0a0c0e;
  --ink: #12151a;
  --panel: #1c2128;
  --paper: #f7f4ef;
  --paper-2: #ebe6dc;
  --fog: #9a958c;
  --line: #d5cfc3;
  --line-dark: rgba(247, 244, 239, 0.12);
  --signal: #ff6b2c;
  --signal-2: #ff8f5a;
  --acid: #b8f000;
  --nile: #0e6b5c;
  --max: 1240px;
  --nav-h: 78px;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Archivo', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.0625rem;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(255,107,44,0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(14,107,92,0.06), transparent 50%);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
code { font-size: 0.9em; background: var(--paper-2); padding: 0.1em 0.35em; }

.container { width: min(100% - 2.75rem, var(--max)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.75rem, 760px); margin-inline: auto; }

/* Topbar */
.topbar {
  background: var(--void);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 0.65rem 0; flex-wrap: wrap;
}
.topbar a:hover { color: var(--acid); }
.topbar-right { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-pulse {
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.topbar-pulse::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--acid); box-shadow: 0 0 0 0 rgba(184,240,0,0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(184,240,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,240,0,0); }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,239,0.9);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h); gap: 1.25rem;
}
.logo {
  font-family: var(--display);
  font-weight: 700; font-size: 1.65rem;
  letter-spacing: -0.04em; display: flex; align-items: center; gap: 0.4rem;
}
.logo b {
  background: var(--ink); color: var(--acid);
  padding: 0.12em 0.32em; font-size: 0.68em; letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 0.2rem 1.4rem; flex-wrap: wrap; }
.nav-links > a {
  font-size: 0.92rem; font-weight: 600; color: #3d4248;
  position: relative; padding: 0.2rem 0;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--ink); }
.nav-links > a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--signal);
}
.nav-cta {
  background: var(--ink) !important; color: var(--paper) !important;
  padding: 0.65rem 1.15rem !important; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--signal) !important; color: #fff !important; }
.nav-cta.active::after { display: none; }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line);
  width: 46px; height: 46px; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 0.5rem 1.25rem 1.25rem; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 0.65rem; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.55rem; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--signal); color: #fff; }
.btn-primary:hover { background: var(--signal-2); box-shadow: 0 10px 28px rgba(255,107,44,0.28); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--nile); }
.btn-ghost {
  background: transparent; color: var(--paper);
  border: 1.5px solid rgba(247,244,239,0.35);
}
.btn-ghost:hover { border-color: var(--acid); color: var(--acid); }
.btn-outline { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-acid { background: var(--acid); color: var(--ink); }
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.85rem; }

/* Hero */
.hero {
  position: relative; min-height: min(94vh, 860px);
  display: grid; align-items: end; background: var(--void); color: var(--paper);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0.48; animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.05); }
  to { transform: scale(1.12) translate(-1%, 1%); }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(10,12,14,0.94) 0%, rgba(10,12,14,0.72) 42%, rgba(10,12,14,0.25) 100%),
    linear-gradient(to top, rgba(10,12,14,0.9) 0%, transparent 45%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.15; pointer-events: none;
  background-image:
    linear-gradient(rgba(184,240,0,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,240,0,0.35) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2; padding: 5rem 0 4.5rem; max-width: 680px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--acid); margin-bottom: 1.35rem;
}
.hero-kicker::before { content: ''; width: 28px; height: 2px; background: var(--acid); }
.brand-mark {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.4rem, 10vw, 6rem); line-height: 0.9;
  letter-spacing: -0.05em; margin-bottom: 1.4rem;
}
.brand-mark em { font-style: normal; color: var(--signal); }
.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.3; letter-spacing: -0.02em;
  margin-bottom: 1rem; max-width: 26ch; color: #e8e4dc;
}
.hero > .container > .hero-content > p,
.hero-content > .lede {
  color: rgba(247,244,239,0.72); margin-bottom: 1.85rem;
  max-width: 42ch; font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, auto); gap: 1.75rem;
  border-top: 1px solid var(--line-dark); padding-top: 1.5rem; width: fit-content;
}
.hero-meta strong {
  display: block; font-family: var(--display); font-size: 1.35rem;
  color: var(--acid); letter-spacing: -0.02em;
}
.hero-meta span { font-size: 0.8rem; color: rgba(247,244,239,0.55); }

/* Sections */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.75rem 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-panel { background: var(--panel); color: var(--paper); }
.section-muted { background: var(--paper-2); }
.section-void { background: var(--void); color: var(--paper); }

.eyebrow {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--signal); margin-bottom: 0.75rem;
}
.section-dark .eyebrow, .section-panel .eyebrow, .section-void .eyebrow { color: var(--acid); }

.section-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3rem); letter-spacing: -0.035em;
  line-height: 1.08; margin-bottom: 1rem; max-width: 16ch;
}
.section-lead {
  color: var(--fog); max-width: 52ch; margin-bottom: 2.75rem; font-size: 1.05rem;
}
.section-dark .section-lead, .section-panel .section-lead, .section-void .section-lead {
  color: rgba(247,244,239,0.62);
}
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 2.75rem;
}
.section-head .section-lead { margin-bottom: 0; }

/* Marquee */
.marquee-wrap {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--ink); color: var(--paper); padding: 0.95rem 0;
}
.marquee {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 32s linear infinite; font-family: var(--display);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.marquee span { white-space: nowrap; opacity: 0.85; }
.marquee span::before { content: '◆'; color: var(--signal); margin-right: 2.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Category mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.85rem;
}
.mosaic a:first-child { grid-row: 1 / 3; }
.mosaic-card {
  position: relative; overflow: hidden; background: var(--void); color: var(--paper);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.35rem;
  min-height: 180px;
}
.mosaic-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5; transition: transform 0.55s ease, opacity 0.4s;
}
.mosaic-card:hover img { transform: scale(1.07); opacity: 0.65; }
.mosaic-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,12,14,0.92) 0%, transparent 55%);
}
.mosaic-card > * { position: relative; z-index: 1; }
.mosaic-card strong {
  font-family: var(--display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em;
}
.mosaic-card p { font-size: 0.88rem; color: rgba(247,244,239,0.65); margin-top: 0.25rem; }
@media (max-width: 800px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic a:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 280px; }
}

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: var(--ink);
  box-shadow: 0 16px 40px rgba(18,21,26,0.08);
}
.product-card .thumb {
  aspect-ratio: 5/4; overflow: hidden; background: var(--panel); position: relative;
}
.product-card .thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .badge-float {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--acid); color: var(--ink);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.3rem 0.5rem;
}
.product-body { padding: 1.35rem 1.3rem 1.45rem; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--nile); margin-bottom: 0.4rem;
}
.product-card h3 {
  font-family: var(--display); font-size: 1.22rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.5rem; line-height: 1.2;
}
.product-card .desc { font-size: 0.92rem; color: var(--fog); flex: 1; margin-bottom: 1.1rem; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.1rem; }
.spec-chips span {
  font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.5rem;
  background: var(--paper-2); color: #4a4f56; border: 1px solid var(--line);
}
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.price {
  font-family: var(--display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em;
}
.price small { display: block; font-family: var(--body); font-size: 0.72rem; font-weight: 500; color: var(--fog); }

/* Split */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 520px; }
.split.reverse > :first-child { order: 2; }
.split-media {
  min-height: 380px; background-size: cover; background-position: center; position: relative;
}
.split-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,12,14,0.4), transparent 40%);
}
.split-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.25rem, 5vw, 4.25rem); background: var(--ink); color: var(--paper);
}
.split-copy.light { background: var(--paper); color: var(--ink); }
.split-copy.light .eyebrow { color: var(--signal); }
.split-copy.light .section-lead { color: var(--fog); }
.split-copy .checklist { margin: 0.5rem 0 1.75rem; }
.split-copy .checklist li {
  padding: 0.55rem 0 0.55rem 1.6rem; position: relative;
  border-bottom: 1px solid var(--line-dark); font-size: 0.98rem;
  color: rgba(247,244,239,0.8);
}
.split-copy.light .checklist li {
  border-color: var(--line); color: #3d4248;
}
.split-copy .checklist li::before {
  content: ''; position: absolute; left: 0; top: 0.95rem;
  width: 10px; height: 10px; background: var(--acid);
}
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
}

/* Process / steps */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); background: #fff;
}
.process-step {
  padding: 1.85rem 1.5rem; border-right: 1px solid var(--line); position: relative;
}
.process-step:last-child { border-right: none; }
.process-step .num {
  font-family: var(--display); font-size: 2.4rem; font-weight: 700;
  color: var(--paper-2); line-height: 1; margin-bottom: 0.85rem; letter-spacing: -0.04em;
}
.process-step h3 {
  font-family: var(--display); font-size: 1.1rem; margin-bottom: 0.45rem; letter-spacing: -0.02em;
}
.process-step p { font-size: 0.9rem; color: var(--fog); }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
}

/* Quote */
.pull-quote {
  max-width: 720px; margin: 0 auto; text-align: center; padding: 1rem 0;
}
.pull-quote blockquote {
  font-family: var(--display); font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600; line-height: 1.35; letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.pull-quote cite {
  font-style: normal; font-size: 0.88rem; font-weight: 600; color: var(--fog);
}

/* Stats band */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.stat-block {
  padding: 1.5rem; background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
}
.stat-block strong {
  display: block; font-family: var(--display); font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--acid); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-block span { font-size: 0.88rem; color: rgba(247,244,239,0.55); }
@media (max-width: 700px) { .stats-band { grid-template-columns: 1fr 1fr; } }

/* Feature list dense */
.feature-dense {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 800px) { .feature-dense { grid-template-columns: 1fr; } }
.feature-block {
  background: #fff; border: 1px solid var(--line); padding: 1.85rem 1.6rem;
  border-top: 3px solid var(--signal);
}
.feature-block h3 {
  font-family: var(--display); font-size: 1.2rem; margin-bottom: 0.6rem; letter-spacing: -0.02em;
}
.feature-block p { color: var(--fog); font-size: 0.95rem; }

/* Page hero */
.page-hero {
  background: var(--void); color: var(--paper);
  padding: 4rem 0 3.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -8%; top: -50%;
  width: 48%; height: 200%;
  background: linear-gradient(160deg, rgba(255,107,44,0.22), transparent 60%);
  transform: rotate(-8deg);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.08; pointer-events: none;
  background-image:
    linear-gradient(rgba(184,240,0,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,240,0,0.5) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.85rem; color: rgba(247,244,239,0.5); margin-bottom: 1.15rem;
}
.breadcrumb a:hover { color: var(--acid); }
.page-hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  letter-spacing: -0.04em; line-height: 1.02; margin-bottom: 1rem; max-width: 18ch;
}
.page-hero .lede {
  max-width: 54ch; color: rgba(247,244,239,0.68); font-size: 1.08rem; margin-bottom: 1.5rem;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Two-col layout for long pages */
.layout-aside {
  display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start;
}
.aside-nav {
  position: sticky; top: calc(var(--nav-h) + 1.25rem);
  padding: 1.25rem; background: #fff; border: 1px solid var(--line);
}
.aside-nav h4 {
  font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.85rem; color: var(--signal);
}
.aside-nav a {
  display: block; padding: 0.4rem 0; font-size: 0.9rem; font-weight: 600;
  color: #4a4f56; border-bottom: 1px solid var(--line);
}
.aside-nav a:hover { color: var(--ink); }
@media (max-width: 860px) {
  .layout-aside { grid-template-columns: 1fr; }
  .aside-nav { position: static; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
  .aside-nav a { border: none; padding: 0.25rem 0; }
}

/* Prose */
.prose { max-width: 720px; }
.prose.wide { max-width: none; }
.prose h2 {
  font-family: var(--display); font-size: 1.65rem; letter-spacing: -0.025em;
  margin: 2.75rem 0 0.85rem; line-height: 1.15;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--display); font-size: 1.2rem; margin: 2rem 0 0.55rem; letter-spacing: -0.02em;
}
.prose p, .prose li { margin-bottom: 1rem; color: #3a3f45; }
.prose ul, .prose ol { padding-left: 1.3rem; margin-bottom: 1.25rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--nile); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.callout {
  background: var(--ink); color: var(--paper); padding: 1.5rem 1.65rem;
  margin: 1.75rem 0; border-left: 4px solid var(--signal);
}
.callout p { color: rgba(247,244,239,0.8) !important; margin-bottom: 0 !important; }
.callout strong { color: var(--acid) !important; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 1.75rem 0; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; background: #fff; }
th, td { text-align: left; padding: 0.95rem 1.1rem; border-bottom: 1px solid var(--line); }
th {
  font-family: var(--display); font-weight: 700; background: var(--ink); color: var(--paper);
  font-size: 0.88rem; letter-spacing: 0.02em;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,107,44,0.04); }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); background: #fff; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  font-family: var(--display); font-weight: 700; font-size: 1.12rem;
  padding: 1.35rem 1.15rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-weight: 500; color: var(--signal); font-size: 1.4rem; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body {
  padding: 0 1.15rem 1.35rem; color: var(--fog); max-width: 62ch;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--void); color: var(--paper); padding: 2.25rem;
}
.contact-card h2 {
  font-family: var(--display); font-size: 1.55rem; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.contact-line {
  margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line-dark);
}
.contact-line:last-of-type { border: none; margin-bottom: 0; padding-bottom: 0; }
.contact-line dt {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acid); margin-bottom: 0.4rem; font-weight: 700;
}
.contact-line dd { font-size: 1.05rem; line-height: 1.55; }
.contact-line a:hover { color: var(--signal-2); }

.form-panel { background: #fff; border: 1px solid var(--line); padding: 2rem; }
.form-stack { display: flex; flex-direction: column; gap: 1.05rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-stack label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 700;
}
.form-stack input, .form-stack textarea, .form-stack select {
  padding: 0.9rem 1rem; border: 1.5px solid var(--line);
  background: var(--paper); color: var(--ink); outline: none;
}
.form-stack input:focus, .form-stack textarea:focus, .form-stack select:focus {
  border-color: var(--signal);
}
.form-note { font-size: 0.85rem; color: var(--fog); margin-top: 0.35rem; }

/* Guides */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
@media (max-width: 860px) { .guide-grid { grid-template-columns: 1fr; } }
.guide-card {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color 0.2s;
}
.guide-card:hover { border-color: var(--ink); }
.guide-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.guide-card .body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.guide-card time {
  font-size: 0.75rem; color: var(--fog); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.guide-card h3 {
  font-family: var(--display); font-size: 1.2rem; margin: 0.5rem 0 0.6rem; letter-spacing: -0.02em;
}
.guide-card p { color: var(--fog); font-size: 0.92rem; flex: 1; margin-bottom: 1rem; }
.guide-card .read { font-weight: 700; font-size: 0.9rem; color: var(--signal); }

/* CTA */
.cta-band {
  padding: 4.5rem 0; background: linear-gradient(125deg, var(--void) 0%, #1a2e2a 55%, #3d1f12 100%);
  color: var(--paper); position: relative; overflow: hidden;
}
.cta-band::after {
  content: 'PASS'; position: absolute; right: -1%; bottom: -22%;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(9rem, 24vw, 18rem); opacity: 0.05;
  letter-spacing: -0.07em; line-height: 1; pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.cta-band h2 {
  font-family: var(--display); font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.03em; max-width: 14ch; margin-bottom: 0.85rem;
}
.cta-band p { max-width: 40ch; color: rgba(247,244,239,0.7); margin-bottom: 0; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-end; }
@media (max-width: 760px) {
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band .cta-actions { justify-content: flex-start; }
}

/* Footer */
.site-footer {
  background: var(--void); color: var(--paper); padding: 4.5rem 0 0; font-size: 0.95rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3.25rem; border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { margin-bottom: 1rem; color: var(--paper); }
.footer-brand .logo b { background: var(--acid); color: var(--ink); }
.footer-brand p {
  color: rgba(247,244,239,0.55); max-width: 34ch; font-size: 0.92rem; margin-bottom: 1.25rem;
}
.footer-brand .addr {
  font-size: 0.85rem; color: rgba(247,244,239,0.45); line-height: 1.55; max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--display); font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1.1rem; color: var(--acid);
}
.footer-col a {
  display: block; color: rgba(247,244,239,0.62); padding: 0.32rem 0; font-size: 0.92rem;
}
.footer-col a:hover { color: var(--signal-2); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.35rem 0; font-size: 0.8rem; color: rgba(247,244,239,0.4);
}

/* Cookie */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--void); color: var(--paper);
  border-top: 3px solid var(--signal); padding: 1.35rem 0;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -16px 48px rgba(0,0,0,0.35);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1; min-width: 240px; font-size: 0.92rem;
  color: rgba(247,244,239,0.75); max-width: 64ch;
}
.cookie-inner a { color: var(--acid); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* Misc */
.map-note {
  background: var(--paper-2); padding: 1.35rem 1.55rem;
  border-left: 4px solid var(--signal); margin-top: 1.75rem; font-size: 0.95rem;
}
.timeline { border-left: 2px solid var(--line); margin: 2rem 0; padding-left: 1.75rem; }
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -2.15rem; top: 0.35rem;
  width: 12px; height: 12px; background: var(--signal); border: 2px solid var(--paper);
}
.timeline-item h3 {
  font-family: var(--display); font-size: 1.15rem; margin-bottom: 0.35rem;
}
.timeline-item .when {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--signal); margin-bottom: 0.4rem;
}
.timeline-item p { color: var(--fog); font-size: 0.95rem; }

.gallery-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 2rem 0;
}
.gallery-3 img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 600px) { .gallery-3 { grid-template-columns: 1fr; } }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
