﻿/* ============================================================
   components.css — Tactile Neo-Skeuomorphic UI components
   CloudSaveCircuit — cloudsavecircuit.games
   Soft shadows, inset chips, pill buttons, paper-clay cards,
   raised cards, inset controls, tactile score badges.
   ============================================================ */

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--surface);
  font-size: var(--fs-sm);
}
.trust-strip .row {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 4vw;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}
.trust-strip a { color: var(--accent-soft); }
.trust-strip a:hover { color: #fff; }
.trust-strip .sep { opacity: 0.4; padding: 0 4px; }
.trust-strip .age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-strip .age-badge .pill {
  background: var(--accent);
  color: var(--on-accent);
  padding: 2px 9px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.78rem;
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 248, 241, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 4vw;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-inset), 0 2px 6px rgba(60,50,35,0.10);
  display: grid; place-items: center;
  color: var(--accent);
}
.brand .mark svg { width: 24px; height: 24px; }
.brand .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  display: block;
}
.brand .tag {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

.nav-strip {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-strip a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  transition: color 160ms var(--ease), background 160ms var(--ease);
}
.nav-strip a:hover { color: var(--ink); background: var(--accent-tint); text-decoration: none; }
.nav-strip a.is-active { color: var(--ink); background: var(--surface-sunk); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-1);
  color: var(--ink);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-btn svg { width: 22px; height: 22px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 4vw 16px;
  gap: 2px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-weight: 500;
}
.mobile-menu a:hover { background: var(--accent-tint); text-decoration: none; }

/* ---------- Buttons (pill, tactile press depth) ---------- */
.btn {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-1);
  transition: transform 160ms var(--ease-press), box-shadow 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(1px); box-shadow: var(--shadow-inset-soft); }
.btn-primary {
  --btn-bg: var(--accent);
  --btn-fg: var(--on-accent);
  border-color: rgba(0,0,0,0.05);
  box-shadow: var(--shadow-accent), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { --btn-bg: var(--accent-bright); }
.btn-positive {
  --btn-bg: var(--positive);
  --btn-fg: var(--on-accent);
  border-color: rgba(0,0,0,0.05);
  box-shadow: 0 10px 26px rgba(47,125,92,0.22), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-ghost {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  box-shadow: var(--shadow-inset-soft), 0 1px 2px rgba(60,50,35,0.06);
}
.btn-ghost:hover { --btn-bg: var(--surface-2); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Concierge layout (hero + sticky enquiry rail) ---------- */
.concierge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: start;
}
.concierge-main { min-width: 0; }

/* ---------- Hero ---------- */
.hero { padding: clamp(32px, 5vw, 64px) 0 clamp(40px, 6vw, 72px); }
.hero h1 { margin-bottom: 0.4em; }
.hero .hero-intro { color: var(--text-muted); font-size: 1.1rem; max-width: 52ch; margin-bottom: 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero-frame {
  position: relative;
  border-radius: var(--r-xl);
  padding: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-raise);
  border: 1px solid var(--border);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: calc(var(--r-xl) - 6px);
  box-shadow: var(--shadow-inset-soft);
  pointer-events: none;
}
.hero-frame img {
  border-radius: calc(var(--r-xl) - 12px);
  width: 100%;
  display: block;
  box-shadow: var(--shadow-inset-soft);
}
.hero-frame .frame-cap {
  position: absolute;
  left: 26px; bottom: 24px;
  background: rgba(34,32,28,0.62);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

/* ---------- Enquiry card (sticky concierge) ---------- */
.enquiry-card {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow-raise);
  border: 1px solid var(--border);
}
.enquiry-card .ec-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.enquiry-card .ec-bell {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: var(--surface-sunk);
  box-shadow: var(--shadow-inset);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.enquiry-card .ec-bell svg { width: 22px; height: 22px; }
.enquiry-card h3 { margin: 0; font-size: 1.35rem; }
.enquiry-card .ec-sub { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 18px; }
.enquiry-card .ec-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin: 12px 0 0;
  text-align: center;
}

/* ---------- Forms (inset controls) ---------- */
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.input, .select, .textarea {
  width: 100%;
  background: var(--surface-sunk);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--ink);
  box-shadow: var(--shadow-inset);
  transition: box-shadow 160ms var(--ease), border-color 160ms var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent-line);
  box-shadow: var(--shadow-inset), 0 0 0 3px var(--accent-tint);
}
.textarea { min-height: 96px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235C564C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.check-row { display: flex; flex-wrap: wrap; gap: 8px; }
.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: var(--r-pill);
  background: var(--surface-sunk);
  box-shadow: var(--shadow-inset-soft);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.check-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-chip:has(input:checked) {
  background: var(--accent-tint);
  color: var(--accent-ink);
  border-color: var(--accent-line);
  box-shadow: var(--shadow-inset-soft), inset 0 0 0 1px var(--accent-line);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 4px 0 14px;
}
.consent input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---------- Tactile cards (raised, paper-clay) ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-raise); }
.card-img {
  border-radius: var(--r-md);
  overflow: hidden;
  margin: -22px -22px 18px;
  box-shadow: var(--shadow-inset-soft);
}
.card-img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* ---------- Feature block (casino full-width) ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.feature-block .fb-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-raise);
  border: 1px solid var(--border);
  padding: 10px;
  background: var(--surface);
}
.feature-block .fb-img img { border-radius: var(--r-lg); width: 100%; display: block; }
.feature-block.reverse { grid-template-columns: 1fr 1.1fr; }
.feature-block.reverse .fb-img { order: 2; }

/* ---------- Room comparison cards ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.room-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.room-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-raise); }
.room-card .rc-img { overflow: hidden; }
.room-card .rc-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 400ms var(--ease); }
.room-card:hover .rc-img img { transform: scale(1.04); }
.room-card .rc-body { padding: 18px 20px 22px; }
.room-card .rc-body h3 { margin-bottom: 4px; }
.room-card .rc-price { color: var(--accent-ink); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.room-card .rc-price small { font-weight: 400; color: var(--text-faint); font-size: 0.8rem; }
.room-card .rc-list { list-style: none; padding: 0; margin: 0 0 16px; font-size: 0.88rem; color: var(--text-muted); }
.room-card .rc-list li { padding-left: 22px; position: relative; margin-bottom: 6px; }
.room-card .rc-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: var(--r-pill); background: var(--positive-tint); box-shadow: inset 0 0 0 2px var(--positive); }
.room-card.is-pick { border-color: var(--accent-line); box-shadow: var(--shadow-accent), var(--shadow-2); }
.room-card .pick-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}

/* ---------- Tactile score badges ---------- */
.score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--surface);
  border-radius: var(--r-pill);
  padding: 6px 14px 6px 12px;
  box-shadow: var(--shadow-inset), 0 1px 3px rgba(60,50,35,0.08);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  color: var(--ink);
}
.score-badge .num { font-size: 1.25rem; line-height: 1; }
.score-badge .num small { font-size: 0.72rem; color: var(--text-faint); font-family: var(--font-sans); }
.score-badge .lbl { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-left: 6px; }
.score-badge.is-positive .num { color: var(--positive-ink); }

.score-bars { list-style: none; padding: 0; margin: 18px 0 0; }
.score-bars li { margin-bottom: 12px; }
.score-bars .sb-top { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; color: var(--text-muted); }
.score-bars .sb-top b { color: var(--ink); font-weight: 600; }
.score-bars .track {
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--surface-sunk);
  box-shadow: var(--shadow-inset);
  overflow: hidden;
}
.score-bars .track > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
  transition: width 900ms var(--ease);
}

/* ---------- Venue grid (dining) ---------- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.venue-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.venue-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-raise); }
.venue-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.venue-card .vc-body { padding: 16px 18px 20px; }
.venue-card .vc-time { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); }
.venue-card h3 { font-size: 1.2rem; margin: 4px 0 6px; }
.venue-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 12px; }
.venue-card .vc-foot { display: flex; gap: 8px; flex-wrap: wrap; }
.venue-card .chip {
  background: var(--surface-sunk);
  box-shadow: var(--shadow-inset-soft);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- Spa feature + checklist ---------- */
.spa-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.spa-feature .spa-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-raise);
  border: 1px solid var(--border);
  padding: 10px;
  background: var(--surface);
}
.spa-feature .spa-img img { border-radius: var(--r-lg); width: 100%; display: block; }
.checklist { list-style: none; padding: 0; margin: 18px 0 0; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.checklist li .ck {
  width: 26px; height: 26px;
  border-radius: var(--r-pill);
  background: var(--positive-tint);
  box-shadow: var(--shadow-inset-soft), inset 0 0 0 2px var(--positive);
  display: grid; place-items: center;
  color: var(--positive);
  flex-shrink: 0;
}
.checklist li .ck svg { width: 15px; height: 15px; }
.checklist li .meta { margin-left: auto; color: var(--text-faint); font-size: 0.78rem; font-weight: 600; }

/* ---------- Location: map + transport cards ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
}
.map-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-raise);
  border: 1px solid var(--border);
  padding: 12px;
  background: var(--surface);
}
.map-card svg { width: 100%; height: auto; display: block; border-radius: var(--r-lg); }
.transport-cards { display: grid; gap: 14px; align-content: start; }
.transport-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.transport-card .tc-ico {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--surface-sunk);
  box-shadow: var(--shadow-inset);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.transport-card .tc-ico svg { width: 22px; height: 22px; }
.transport-card h4 { margin: 0 0 4px; }
.transport-card p { margin: 0; color: var(--text-muted); font-size: 0.88rem; }

/* ---------- Gallery (masonry) ---------- */
.gallery-wall {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
  cursor: zoom-in;
  background: var(--surface);
  padding: 8px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-raise); }
.gallery-item img { width: 100%; display: block; border-radius: var(--r-md); }
.gallery-item figcaption { padding: 8px 10px 4px; font-size: 0.8rem; color: var(--text-faint); }
.gallery-item figcaption b { color: var(--ink); font-weight: 600; margin-right: 6px; }

/* ---------- Responsible-gambling panel ---------- */
.rg-panel {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
.rg-panel .rg-stance h3 { margin-bottom: 10px; }
.rg-panel .rg-stance p { color: var(--text-muted); margin-bottom: 14px; }
.rg-panel .rg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.85rem;
}
.rg-links { display: grid; gap: 12px; }
.rg-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface-sunk);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-inset-soft);
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}
.rg-link:hover { text-decoration: none; background: var(--accent-tint); color: var(--accent-ink); }
.rg-link .rg-ico { color: var(--accent); flex-shrink: 0; }
.rg-link .rg-ico svg { width: 22px; height: 22px; }
.rg-link small { margin-left: auto; color: var(--text-faint); font-weight: 400; font-size: 0.78rem; }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 12px; max-width: var(--maxw-narrow); margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q .chev { transition: transform 200ms var(--ease); color: var(--accent); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease);
}
.faq-a-inner { padding: 0 20px 18px; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--surface-2);
  margin-top: clamp(48px, 7vw, 96px);
}
.site-footer .fbar { max-width: var(--maxw); margin: 0 auto; padding: clamp(36px, 5vw, 64px) 4vw 28px; }
.site-footer .ftop { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .fbrand .name { font-family: var(--font-display); font-size: 1.5rem; color: var(--surface); margin-bottom: 8px; }
.site-footer .fbrand p { color: var(--text-faint); font-size: 0.9rem; max-width: 38ch; }
.site-footer h4 { color: var(--accent-soft); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--surface-2); font-size: 0.9rem; }
.site-footer a:hover { color: var(--accent-soft); }
.site-footer .fdisclaim {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 230, 200, 0.10);
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.6;
}
.site-footer .fdisclaim a { color: var(--accent-soft); }
.site-footer .fbase {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.site-footer .fbase .legal { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer .fbase .legal a { color: var(--text-faint); }
.ai-disclose {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(183,120,42,0.16);
  color: var(--accent-soft);
  border: 1px solid rgba(183,120,42,0.3);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 600;
  margin-top: 14px;
}

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 460px;
  margin-left: auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-raise);
  border: 1px solid var(--border);
  padding: 20px;
  z-index: 120;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 320ms var(--ease), opacity 320ms var(--ease);
}
.cookie.show { transform: none; opacity: 1; }
.cookie h4 { margin: 0 0 6px; font-size: 1.05rem; }
.cookie p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 14px; }
.cookie .actions { display: flex; gap: 10px; }
.cookie .actions .btn { flex: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 18, 14, 0.82);
  display: none;
  align-items: center; justify-content: center;
  z-index: 150;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: 92vw; max-height: 86vh; text-align: center; }
.lightbox img { max-width: 92vw; max-height: 80vh; border-radius: var(--r-lg); box-shadow: var(--shadow-raise); }
.lightbox figcaption { color: #fff; margin-top: 12px; font-size: 0.9rem; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 0;
  border-radius: var(--r-pill);
  width: 46px; height: 46px;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 160ms var(--ease);
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,0.24); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Section heading row ---------- */
.sec-head { max-width: var(--maxw-narrow); margin-bottom: clamp(24px, 4vw, 40px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .lead { margin-top: 10px; }

/* ---------- Mini CTA strip (subpages) ---------- */
.mini-cta {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
  text-align: center;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}
.mini-cta h3 { margin-bottom: 8px; }
.mini-cta p { color: var(--text-muted); margin-bottom: 20px; }
.mini-cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.stat {
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border);
  padding: 16px 18px;
  text-align: center;
}
.stat .k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.stat .v { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); margin-top: 4px; }
.stat .v small { font-family: var(--font-sans); font-size: 0.78rem; color: var(--text-faint); font-weight: 400; }
