/* ==========================================================================
   Skyline Celebrate — Design System Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --c-bg: #0a0a0d;
  --c-bg-alt: #111017;
  --c-surface: #17151f;
  --c-surface-2: #1e1b28;
  --c-gold: #d3a765;
  --c-gold-light: #e8caa0;
  --c-gold-deep: #a9793c;
  --c-magenta: #ff2fb0;
  --c-violet: #7c4dff;
  --c-cyan: #33e0ff;
  --c-white: #ffffff;
  --c-white-70: rgba(255, 255, 255, 0.72);
  --c-white-55: rgba(255, 255, 255, 0.55);
  --c-line: rgba(255, 255, 255, 0.12);
  --c-line-gold: rgba(211, 167, 101, 0.35);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --header-w: 232px;
  --header-h-mobile: 84px;
  --radius-card: 18px;
  --radius-pill: 999px;
  --radius-input: 10px;
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --shadow-card:
    0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(211, 167, 101, 0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--sp-2);
}
h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
h3 {
  font-size: 1.35rem;
}
p {
  margin: 0 0 var(--sp-2);
  color: var(--c-white-70);
}
p.lead {
  font-size: 1.05rem;
  color: var(--c-white-70);
}
strong {
  color: var(--c-white);
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--c-bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--c-gold-deep), var(--c-gold));
  border-radius: 99px;
  border: 2px solid var(--c-bg);
}
* {
  scrollbar-color: var(--c-gold) var(--c-bg);
  scrollbar-width: thin;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--c-gold);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.section-alt {
  background: var(--c-bg-alt);
}
.section > .container {
  position: relative;
  z-index: 2;
}

/* Decorators (shared, out-of-structure) */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.deco-skyline {
  width: 640px;
  max-width: 60vw;
  opacity: 0.06;
}
.deco-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.deco-glow.gold {
  background: var(--c-gold);
  opacity: 0.18;
}
.deco-glow.magenta {
  background: var(--c-magenta);
  opacity: 0.14;
}
.deco-glow.violet {
  background: var(--c-violet);
  opacity: 0.16;
}
.deco-sparks {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.deco-frame {
  position: absolute;
  border: 1px solid var(--c-line-gold);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2.1rem;
  min-height: 52px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  color: #191410;
  box-shadow: 0 10px 30px rgba(211, 167, 101, 0.28);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(211, 167, 101, 0.42);
}
.btn-outline {
  background: transparent;
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--c-gold);
  color: #191410;
}
.btn-block {
  width: 100%;
}
@media (max-width: 640px) {
  .btn {
    min-height: 56px;
    width: 100%;
  }
}

/* ==========================================================================
   Header — Skyline vertical dock (desktop) / top bar (mobile)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: var(--header-h-mobile);
  background: rgba(10, 10, 13, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.site-header .brand img {
  height: 38px;
  width: auto;
}
.site-header .brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.header-book {
  display: none;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--c-line-gold);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-gold);
  margin: 0 auto;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h-mobile);
  background: linear-gradient(180deg, #0d0c11, #0a0a0d);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  z-index: 999;
  padding: var(--sp-4) var(--sp-3) var(--sp-8);
}
.main-nav.is-open {
  transform: translateX(0);
}
.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.main-nav a {
  display: block;
  padding: 0.9rem 0.3rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.main-nav a span {
  position: relative;
}
.main-nav a span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--c-gold);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover span::after,
.main-nav a:focus-visible span::after,
.main-nav a.active span::after {
  width: 100%;
}
.main-nav a.active {
  color: var(--c-gold-light);
}
.nav-cta {
  margin-top: var(--sp-4);
}
.nav-social {
  margin-top: var(--sp-4);
  color: var(--c-white-55);
  font-size: 0.85rem;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  :root {
    --header-h-mobile: 0px;
  }
  .site-header {
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--header-w);
    min-height: 100vh;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-bottom: none;
    border-right: 1px solid var(--c-line);
    padding: var(--sp-5) var(--sp-3) var(--sp-4);
  }
  .site-header .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
    margin-bottom: var(--sp-6);
  }
  .site-header .brand img {
    height: 84px;
  }
  .nav-toggle {
    display: none;
  }
  .main-nav {
    position: static;
    inset: auto;
    transform: none;
    background: transparent;
    padding: 0;
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .main-nav ul {
    gap: 0.1rem;
  }
  .main-nav a {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.65rem 0.2rem;
    border-bottom: none;
    color: var(--c-white-70);
  }
  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.active {
    color: var(--c-white);
  }
  .header-book {
    display: block;
    margin-top: var(--sp-4);
  }
  .nav-social {
    display: none;
  }
  body {
    padding-left: var(--header-w);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h-mobile) + 2rem);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 8, 0.35) 0%,
    rgba(6, 6, 8, 0.55) 45%,
    rgba(6, 6, 8, 0.96) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sp-8);
  max-width: 760px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--sp-4);
}
.hero-scroll {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  display: none;
  color: var(--c-white-55);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@media (min-width: 768px) {
  .hero-scroll {
    display: block;
  }
}

/* Ken Burns background variant */
.kenburns {
  position: absolute;
  inset: 0;
  animation: kb 22s ease-in-out infinite alternate;
}
@keyframes kb {
  from {
    transform: scale(1.02) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1%, -1%);
  }
}

/* ==========================================================================
   Card grids
   ========================================================================== */
.grid {
  display: grid;
  gap: var(--sp-4);
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  border-color: var(--c-line-gold);
  transform: translateY(-4px);
}
.card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.06);
}
.card-body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.card-body h3 {
  margin-bottom: 0.5rem;
}
.card-body p {
  flex: 1;
}
.card-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--c-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.card-link::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.card:hover .card-link::after {
  transform: translateX(4px);
}

/* Feature split (image/text) */
.split {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split.reverse .split-media {
    order: 2;
  }
}
.split-media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Perfect-for tiles */
.tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--c-line);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.tile:hover img {
  transform: scale(1.08);
}
.tile-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Stat strip */
.stats {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--c-gold-light);
}
.stat span {
  color: var(--c-white-70);
  font-size: 0.85rem;
}

/* Quote */
.quote {
  border-left: 3px solid var(--c-gold);
  padding-left: var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--c-white);
}

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: var(--sp-8) var(--sp-4);
  text-align: center;
  border: 1px solid var(--c-line-gold);
}
.cta-banner .hero-actions {
  justify-content: center;
}

/* ==========================================================================
   Gallery + Lightbox
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--sp-4);
}
.filter-btn {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  color: var(--c-white-70);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--c-gold);
  color: var(--c-white);
}
.filter-btn.is-active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #191410;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 1px solid var(--c-line);
  background: none;
  padding: 0;
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.09);
}
.gallery-item .gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .gi-overlay,
.gallery-item:focus-visible .gi-overlay {
  opacity: 1;
}
.gi-overlay span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-white);
}
.gallery-item[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 6, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-figure {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  transform: scale(0.96);
  transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox-figure {
  transform: scale(1);
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.lightbox-caption {
  margin-top: 0.8rem;
  text-align: center;
  color: var(--c-white-70);
  font-size: 0.9rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-line-gold);
  color: var(--c-white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--c-gold);
  color: #191410;
}
.lightbox-close {
  top: -3.2rem;
  right: 0;
}
.lightbox-prev {
  left: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .lightbox-close {
    top: -3rem;
    right: 0;
  }
  .lightbox-prev {
    left: 0.2rem;
  }
  .lightbox-next {
    right: 0.2rem;
  }
}

/* ==========================================================================
   Contact — 3-step qualifier + form
   ========================================================================== */
.contact-wrap {
  display: grid;
  gap: var(--sp-5);
}
@media (min-width: 960px) {
  .contact-wrap {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}
.contact-side img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  max-height: 480px;
}
.contact-panel {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-card);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
}
.stepper-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--sp-4);
}
.stepper-progress span {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: var(--c-line);
}
.stepper-progress span.is-done,
.stepper-progress span.is-active {
  background: var(--c-gold);
}
.q-step {
  display: none;
}
.q-step.is-active {
  display: block;
  animation: fadein 0.4s var(--ease);
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.q-options {
  display: grid;
  gap: 0.7rem;
  margin-top: var(--sp-3);
}
@media (min-width: 520px) {
  .q-options {
    grid-template-columns: 1fr 1fr;
  }
}
.q-option {
  text-align: left;
  padding: 1rem 1.1rem;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-input);
  color: var(--c-white);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s var(--ease);
}
.q-option:hover,
.q-option:focus-visible {
  border-color: var(--c-gold);
}
.q-option.is-selected {
  border-color: var(--c-gold);
  background: rgba(211, 167, 101, 0.12);
  color: var(--c-gold-light);
}
.q-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-4);
  gap: 1rem;
}
.q-summary {
  background: var(--c-surface-2);
  border: 1px solid var(--c-line-gold);
  border-radius: var(--radius-input);
  padding: 1rem;
  margin-bottom: var(--sp-3);
  font-size: 0.9rem;
  color: var(--c-white-70);
}
.q-summary b {
  color: var(--c-gold-light);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 560px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-white);
}
.field input,
.field select,
.field textarea {
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-input);
  padding: 0.85rem 1rem;
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-gold);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field small {
  color: var(--c-white-55);
  font-size: 0.78rem;
}
.checkfield {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--c-white-70);
}
.checkfield input {
  margin-top: 0.2rem;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-input);
  font-size: 0.9rem;
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.success {
  background: rgba(60, 180, 110, 0.12);
  border: 1px solid rgba(60, 180, 110, 0.4);
  color: #9be3bb;
}
.form-status.error {
  background: rgba(220, 70, 70, 0.12);
  border: 1px solid rgba(220, 70, 70, 0.4);
  color: #f3a3a3;
}

/* ==========================================================================
   Compliance / disclaimer callout
   ========================================================================== */
.callout {
  background: var(--c-surface);
  border: 1px solid var(--c-line-gold);
  border-radius: var(--radius-card);
  padding: var(--sp-4);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.callout .callout-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(211, 167, 101, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-weight: 800;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  gap: var(--sp-5);
  padding: var(--sp-8) 0 var(--sp-4);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}
.footer-brand img {
  height: 44px;
  margin-bottom: var(--sp-2);
}
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
  font-family: var(--font-body);
}
.footer-col ul li {
  margin-bottom: 0.55rem;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--c-gold-light);
}
.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding: var(--sp-3) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--c-white-55);
  position: relative;
  z-index: 1;
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1500;
  background: var(--c-surface);
  border: 1px solid var(--c-line-gold);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  max-width: 640px;
}
.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  padding: 0.75rem 1.3rem;
  min-height: 44px;
  font-size: 0.85rem;
}
@media (min-width: 1024px) {
  .cookie-banner {
    left: calc(var(--header-w) + 1rem);
  }
}

/* ==========================================================================
   404
   ========================================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  color: var(--c-gold);
  line-height: 1;
}

/* ==========================================================================
   Extra content-section components (added for expanded page content)
   ========================================================================== */

/* Timeline / process steps */
.timeline {
  display: grid;
  gap: var(--sp-4);
  position: relative;
}
@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--c-line-gold);
    z-index: 0;
  }
}
.timeline-step {
  position: relative;
}
.timeline-step .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  color: #191410;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.timeline-step h3 {
  margin-bottom: 0.4rem;
}

/* Mosaic multi-image grid */
.mosaic {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 110px;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.mosaic .m-large {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 640px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
  }
}

/* Duo image pair */
.duo {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr 1fr;
}
.duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: block;
}

/* Floating overlapping photo collage */
.photo-collage {
  position: relative;
}
.photo-collage .pc-main {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.photo-collage .pc-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-collage .pc-float {
  position: absolute;
  width: 48%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    0 0 0 4px var(--c-bg);
  border: 2px solid var(--c-line-gold);
}
.photo-collage .pc-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature band — rounded background-image band with scrim + overlaid text */
.feature-band {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.feature-band .fb-media {
  position: absolute;
  inset: 0;
}
.feature-band .fb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-band .fb-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 8, 0.92) 0%,
    rgba(6, 6, 8, 0.6) 55%,
    rgba(6, 6, 8, 0.2) 100%
  );
}
.feature-band .fb-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-6);
  max-width: 560px;
}
@media (max-width: 768px) {
  .feature-band {
    min-height: auto;
  }
  .feature-band .fb-media::after {
    background: linear-gradient(
      180deg,
      rgba(6, 6, 8, 0.5) 0%,
      rgba(6, 6, 8, 0.94) 75%
    );
  }
  .feature-band .fb-content {
    padding: var(--sp-4);
  }
}

/* Framed highlight panel (corner-bracket decorator) */
.frame-panel {
  position: relative;
  padding: var(--sp-5);
  background: var(--c-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--c-line);
}
.deco-frame.corner-tl {
  border-right: none;
  border-bottom: none;
}
.deco-frame.corner-br {
  border-left: none;
  border-top: none;
}

/* Scattered gold spark decorator (SVG-free, CSS dots) */
.deco-sparks .spark {
  position: absolute;
  border-radius: 50%;
  background: var(--c-gold-light);
  box-shadow: 0 0 8px rgba(232, 202, 160, 0.8);
}

/* Skyline silhouette decorator */
.deco-skyline img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.15;
}

/* FAQ accordion */
.faq-list {
  display: grid;
  gap: 0.9rem;
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  color: var(--c-gold);
  font-size: 1.4rem;
  font-weight: 400;
  flex: none;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 1.3rem 1.2rem;
  margin: 0;
}

/* Comparison pair (used inside frame-panel) */
.compare-pair {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
@media (min-width: 640px) {
  .compare-pair {
    grid-template-columns: 1fr 1fr;
  }
}
.compare-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  overflow: hidden;
}
.compare-card .cc-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.compare-card .cc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.compare-card .cc-body {
  padding: 1rem 1.1rem;
}
.compare-card .cc-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--c-gold-light);
  margin: 0 0 0.4rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Breadcrumb / page banner */
.page-banner {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h-mobile) + 2rem);
  overflow: hidden;
}
.page-banner .hero-media {
  position: absolute;
  inset: 0;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sp-6);
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--c-white-55);
  margin-bottom: 0.6rem;
}
.breadcrumb a:hover {
  color: var(--c-gold-light);
}

/* Legal content */
.legal-content h2 {
  margin-top: var(--sp-6);
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: var(--sp-2);
}
.legal-content ul li {
  color: var(--c-white-70);
  margin-bottom: 0.4rem;
}
.legal-content a {
  color: var(--c-gold-light);
  text-decoration: underline;
}

/* Utility */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-prose {
  max-width: 700px;
}
.mt-4 {
  margin-top: var(--sp-4);
}
.gold {
  color: var(--c-gold-light);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-gold);
  color: #191410;
  padding: 0.8rem 1.2rem;
  z-index: 3000;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}
