/* ==========================================================================
   SoundStar — soundstar.co.uk
   Hand-written stylesheet. No framework, no build step.
   Edit freely: everything is driven by the custom properties in :root.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour */
  --bg:            #0A0A0D;
  --bg-alt:        #101015;
  --surface:       #16161D;
  --surface-2:     #1D1D26;
  --line:          #2A2A35;
  --line-soft:     #1F1F28;

  --text:          #F6F6F8;
  --text-muted:    #A3A3B0;
  --text-dim:      #74747F;

  --accent:        #FFB020;
  --accent-soft:   #FFC761;
  --accent-deep:   #E08A00;
  --accent-tint:   rgba(255, 176, 32, 0.10);
  --accent-line:   rgba(255, 176, 32, 0.28);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 1.9rem);
  --step-3:  clamp(1.75rem, 1.45rem + 1.5vw, 2.6rem);
  --step-4:  clamp(2.1rem, 1.6rem + 2.5vw, 3.6rem);
  --step-5:  clamp(2.5rem, 1.7rem + 4vw, 4.8rem);

  /* Space */
  --gap:      1.25rem;
  --gap-lg:   2rem;
  --section:  clamp(3.5rem, 2rem + 7vw, 7rem);
  --radius:   14px;
  --radius-lg: 22px;

  --shell: 1180px;
  --shell-narrow: 760px;

  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 0 1px var(--accent-line), 0 24px 60px -24px rgba(255, 176, 32, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: #10100A; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #10100A;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--alt { background: var(--bg-alt); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem);
}
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head--center .eyebrow::before { display: none; }

.lede {
  font-size: var(--step-1);
  color: var(--text-muted);
  margin-top: 1.1rem;
  line-height: 1.6;
}

.muted { color: var(--text-muted); }

.grid { display: grid; gap: var(--gap-lg); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-deep));
  color: #14100A;
  box-shadow: 0 10px 30px -12px rgba(255, 176, 32, 0.7);
}
.btn--primary:hover { box-shadow: 0 16px 40px -14px rgba(255, 176, 32, 0.85); }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent-line); background: var(--accent-tint); }

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}
.text-link:hover { gap: 0.7rem; }
.text-link::after { content: "→"; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  background: rgba(10, 10, 13, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.brand span { color: var(--accent); }

.brand-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a[aria-current="page"] { color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  padding: 0.5rem 0.6rem;
  transition: color 0.2s var(--ease);
}
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { width: 17px; height: 17px; color: var(--accent); }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem clamp(1.1rem, 4vw, 2rem) 1.5rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s var(--ease);
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 0.9rem 0.5rem; font-size: 1.05rem; border-radius: 0; }
  .nav-links li + li a { border-top: 1px solid var(--line-soft); }
  .nav-actions .btn { display: none; }
}

@media (max-width: 520px) {
  .nav-phone span { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 2rem + 8vw, 7.5rem) clamp(3rem, 2rem + 5vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: 640px; height: 640px;
  top: -280px; right: -180px;
  background: radial-gradient(circle, rgba(255,176,32,0.20), transparent 68%);
}
.hero::after {
  width: 520px; height: 520px;
  bottom: -320px; left: -200px;
  background: radial-gradient(circle, rgba(124,92,255,0.16), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent-soft), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede { max-width: 34rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  padding: 0.45rem 0.9rem;
}
.hero-badges li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--shadow);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }

.hero-figure figcaption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(10, 10, 13, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-size: var(--step--1);
  color: var(--text-muted);
}
.hero-figure figcaption strong { color: var(--text); display: block; font-family: var(--font-display); }

/* Placeholder artwork used until real photos land */
.ph {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,176,32,0.22), transparent 55%),
    radial-gradient(circle at 75% 78%, rgba(124,92,255,0.20), transparent 55%),
    var(--surface-2);
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* --------------------------------------------------------------------------
   7. Stats bar
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
.stat {
  background: var(--bg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem) 1.25rem;
  text-align: center;
}
.stat dt {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat dd {
  margin: 0.35rem 0 0;
  font-size: var(--step--1);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.1rem);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              background 0.3s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line);
  background: var(--surface-2);
}
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--text-muted); }
.card .text-link { margin-top: auto; padding-top: 1.3rem; }

.card-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 23px; height: 23px; }

/* Occasion cards with an image top */
.occasion {
  overflow: hidden;
  padding: 0;
}
.occasion-media { aspect-ratio: 16 / 10; overflow: hidden; }
.occasion-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.occasion:hover .occasion-media img { transform: scale(1.05); }
.occasion-body {
  padding: clamp(1.4rem, 1rem + 1vw, 1.9rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --------------------------------------------------------------------------
   9. Package tiers
   -------------------------------------------------------------------------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1rem + 1.6vw, 2.2rem);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--accent-line); }

.tier--featured {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, rgba(255,176,32,0.07), var(--surface) 45%);
  box-shadow: var(--shadow-glow);
}

.tier-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-deep));
  color: #14100A;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tier-for {
  font-size: var(--step--1);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 1.3rem 0 0.3rem;
  font-family: var(--font-display);
}
.tier-price .from { font-size: var(--step--1); color: var(--text-dim); font-weight: 500; }
.tier-price .amount { font-size: var(--step-3); font-weight: 700; letter-spacing: -0.035em; }
.tier-price .unit { font-size: var(--step--1); color: var(--text-dim); font-weight: 500; }

.tier-note {
  font-size: var(--step--1);
  color: var(--text-dim);
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 1.3rem;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.7rem;
  font-size: 0.96rem;
  color: var(--text-muted);
}
.tier-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.6rem;
  align-items: start;
}
.tier-list li::before {
  content: "";
  width: 17px; height: 17px;
  margin-top: 0.28em;
  border-radius: 50%;
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB020' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.tier .btn { margin-top: auto; }

.tier-footnote {
  text-align: center;
  color: var(--text-dim);
  font-size: var(--step--1);
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   10. Steps / how it works
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.8rem 1.4rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  position: absolute;
  top: 1.3rem; right: 1.3rem;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--line);
  letter-spacing: -0.04em;
}
.step h4 { margin-bottom: 0.5rem; padding-right: 2.5rem; }
.step p { color: var(--text-muted); font-size: 0.96rem; }

/* --------------------------------------------------------------------------
   11. Included / kit list
   -------------------------------------------------------------------------- */
.kit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.kit-item {
  background: var(--surface);
  padding: 1.5rem 1.35rem;
}
.kit-item svg { width: 22px; height: 22px; color: var(--accent); margin-bottom: 0.9rem; }
.kit-item h4 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.kit-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }

/* --------------------------------------------------------------------------
   12. Split feature block
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 5 / 4;
  background: var(--surface);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.9rem;
}
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  color: var(--text-muted);
}
.check-list li strong { color: var(--text); font-weight: 600; }
.check-list svg { width: 20px; height: 20px; color: var(--accent); margin-top: 0.22em; }

/* --------------------------------------------------------------------------
   13. Coverage area
   -------------------------------------------------------------------------- */
.areas { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.area-group {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.area-group h3 {
  font-size: var(--step-1);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.area-group h3 svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }
.area-group ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.area-group li {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  padding: 0.3rem 0.65rem;
}

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }

.quote {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}
.quote-stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 1.1rem; }
.quote-stars svg { width: 16px; height: 16px; }
.quote blockquote { font-size: 1.02rem; line-height: 1.65; margin: 0 0 1.3rem; }
.quote figcaption { margin-top: auto; font-size: var(--step--1); color: var(--text-dim); }
.quote figcaption strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.7rem; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease);
}
.faq details[open] { border-color: var(--accent-line); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 11px; height: 11px;
  margin-top: -6px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .faq-body { padding: 0 1.4rem 1.35rem; color: var(--text-muted); }
.faq .faq-body p + p { margin-top: 0.8rem; }

/* --------------------------------------------------------------------------
   16. Forms
   -------------------------------------------------------------------------- */
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.6rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 0.45rem; }

.field label {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field label .req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A3A3B0' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}
.field select option { background: var(--bg-alt); color: var(--text); }

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #F0523F; }

.field-error {
  font-size: 0.82rem;
  color: #FF8C7A;
  min-height: 1em;
}

/* Checkbox labels are sentence case — the uppercase .field label rule
   must not reach them, hence the extra specificity. */
.consent,
.field .consent,
.field label.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-muted);
}
.consent input { width: 18px; height: 18px; margin-top: 0.2em; accent-color: var(--accent); }
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot — must stay invisible to humans, reachable to bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok {
  background: rgba(58, 190, 120, 0.12);
  border: 1px solid rgba(58, 190, 120, 0.4);
  color: #7BE0A6;
}
.form-status--err {
  background: rgba(240, 82, 63, 0.12);
  border: 1px solid rgba(240, 82, 63, 0.4);
  color: #FF9C8C;
}

/* --------------------------------------------------------------------------
   17. Contact details block
   -------------------------------------------------------------------------- */
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.contact-list .ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  color: var(--accent);
}
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list dt {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}
.contact-list dd { margin: 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.contact-list dd a:hover { color: var(--accent); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--surface);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) contrast(0.85); }

/* --------------------------------------------------------------------------
   18. Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: var(--surface);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.8rem 1rem 0.85rem;
  font-size: 0.88rem;
  background: linear-gradient(transparent, rgba(10,10,13,0.9));
  color: var(--text);
}
.gallery-item--wide { grid-column: span 2; aspect-ratio: 8 / 3; }
@media (max-width: 620px) { .gallery-item--wide { grid-column: span 1; aspect-ratio: 4 / 3; } }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 8, 0.94);
  backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  padding: 1.5rem;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox-close svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   19. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-line);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,176,32,0.16), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(124,92,255,0.14), transparent 55%),
    var(--surface);
  padding: clamp(2.2rem, 1.5rem + 3vw, 3.8rem);
  text-align: center;
}
.cta-band h2 { font-size: var(--step-3); margin-bottom: 0.9rem; }
.cta-band p { color: var(--text-muted); max-width: 42rem; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   20. Breadcrumb
   -------------------------------------------------------------------------- */
.crumbs {
  font-size: var(--step--1);
  color: var(--text-dim);
  padding-top: 1.6rem;
}
.crumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.crumbs li + li::before { content: "/"; margin-right: 0.45rem; color: var(--line); }
.crumbs a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   21. Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) clamp(2rem, 1.5rem + 3vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  content: "";
  position: absolute;
  width: 700px; height: 500px;
  top: -260px; right: -160px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(255,176,32,0.16), transparent 68%);
  z-index: -1;
}
.page-head h1 { font-size: var(--step-4); }

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4rem) 2rem;
  margin-top: var(--section);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer-about p { color: var(--text-muted); font-size: 0.95rem; margin-top: 1rem; max-width: 30rem; }
.footer-col h4 {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent); }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.86rem;
  color: var(--text-dim);
}
.footer-base ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-base a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   23. Sticky mobile call bar
   -------------------------------------------------------------------------- */
.call-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem;
  background: rgba(10, 10, 13, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.call-bar .btn { flex: 1; padding-block: 0.85rem; font-size: 0.95rem; }

@media (max-width: 700px) {
  .call-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* --------------------------------------------------------------------------
   24. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   25. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .call-bar, .site-footer, .cta-band { display: none; }
  body { background: #fff; color: #000; }
}
