/* ── Base ─────────────────────────────────────────────── */
:root {
  --dark: #121212;
  --darker: #0a0a0a;
  --gold: #c9a962;
  --amber: #d4a853;
  --muted: #8a8a8a;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background-color: var(--dark);
  scrollbar-gutter: stable;
}

body {
  background-color: var(--dark);
  overflow-x: clip;
  max-width: 100%;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

::selection {
  background: rgba(201, 169, 98, 0.3);
  color: #fff;
}

/* ── Preloader ────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  letter-spacing: 0.3em;
  color: #fff;
  animation: pulse-logo 1.2s ease-in-out infinite;
}

.preloader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  animation: load-bar 1.4s ease forwards;
}

@keyframes pulse-logo {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes load-bar {
  from { width: 0; }
  to { width: 100%; }
}

/* ── Scroll progress ──────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  z-index: 100;
  transition: width 0.1s linear;
}

/* ── Typography accents ───────────────────────────────── */
.gold-gradient {
  background: linear-gradient(135deg, #c9a962 0%, #d4a853 50%, #e8c97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero-bg {
  background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center top;
  animation: ken-burns 20s ease-in-out infinite alternate;
  opacity: 0.32;
}

@media (min-width: 1024px) {
  .hero-bg {
    opacity: 0.22;
  }
}

@media (min-width: 1536px) {
  .hero-bg {
    opacity: 0.18;
  }
}

@keyframes ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.82) 50%,
    #121212 100%
  );
}

@media (min-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.65) 0%,
      rgba(10, 10, 10, 0.88) 55%,
      #121212 100%
    );
  }
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

#hero h1,
#hero .section-label,
#hero p {
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.9);
}

/* ── Navigation ─────────────────────────────────────── */
#navbar {
  background-color: transparent;
  transition: background-color 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 98, 0.22),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-scrolled {
  background-color: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  isolation: isolate;
}

.nav-scrolled::after {
  opacity: 1;
}

#navbar.nav-menu-open {
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#navbar.nav-menu-open::after {
  opacity: 1;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.mobile-menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu ul {
  gap: 0.35rem;
}

.mobile-link {
  display: block;
  width: 100%;
  padding: 1.1rem 1rem;
  min-height: 3.25rem;
  line-height: 1.4;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu a.mobile-link:active {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu button.mobile-link {
  margin-top: 0.5rem;
  padding: 1.15rem 1.25rem;
  min-height: 3.5rem;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold);
}

/* ── Buttons ──────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, #c9a962, #b8943f);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d4a853, #c9a962);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.25);
  transform: translateY(-1px);
}

.btn-outline {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 98, 0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-outline:hover::before {
  transform: translateX(0);
}

/* ── Animations ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Marquee ──────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  contain: paint;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--darker);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2rem;
  white-space: nowrap;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Pricing cards ────────────────────────────────────── */
.price-card {
  position: relative;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.price-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.12) 0%, transparent 65%);
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card:hover {
  border-color: rgba(201, 169, 98, 0.55);
  transform: translateY(-8px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 169, 98, 0.1);
}

.price-card:hover::after {
  opacity: 1;
}

.price-card--featured {
  background: linear-gradient(160deg, rgba(201, 169, 98, 0.06) 0%, rgba(18, 18, 18, 0.9) 60%);
}

.price-card--featured:hover {
  border-color: rgba(201, 169, 98, 0.65);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(201, 169, 98, 0.15);
}

.price-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(201, 169, 98, 0.5), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Process steps ────────────────────────────────────── */
.process-track {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-track {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
}

.process-step-card {
  position: relative;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(201, 169, 98, 0.05) 0%, rgba(10, 10, 10, 0.6) 50%);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step-card:hover {
  border-color: rgba(201, 169, 98, 0.25);
  transform: translateY(-4px);
}

.process-step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.process-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--gold);
  background: rgba(201, 169, 98, 0.06);
}

.process-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.85;
  color: rgba(201, 169, 98, 0.18);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process-step-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.process-step-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.process-connector {
  display: none;
}

@media (min-width: 768px) {
  .process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.5rem;
    padding-top: 3.5rem;
    align-self: start;
  }

  .process-connector::before {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(201, 169, 98, 0.08),
      rgba(201, 169, 98, 0.45),
      rgba(201, 169, 98, 0.08)
    );
    position: relative;
  }

  .process-connector::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    box-shadow: 0 0 8px rgba(201, 169, 98, 0.4);
  }
}

/* ── Gallery ──────────────────────────────────────────── */
.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 1;
}

/* ── Team (compact editorial cards) ───────────────────── */
.team-showcase {
  display: grid;
  gap: 2.5rem 1.5rem;
}

@media (min-width: 720px) {
  .team-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.team-member {
  position: relative;
  display: flex;
  flex-direction: column;
}

.team-member-visual {
  position: relative;
  isolation: isolate;
}

/* Ghost index number tucked in the top corner */
.team-member-index {
  position: absolute;
  top: -1.5rem;
  right: 0.35rem;
  z-index: 3;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 98, 0.35);
  pointer-events: none;
  transition: -webkit-text-stroke 0.4s ease, color 0.4s ease;
}

.team-member:hover .team-member-index {
  color: rgba(201, 169, 98, 0.08);
  -webkit-text-stroke: 1px rgba(201, 169, 98, 0.5);
}

.team-member-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--darker);
  line-height: 0;
  font-size: 0;
}

/* Thin gold hairline that draws in from the bottom on hover */
.team-member-photo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-member:hover .team-member-photo::after {
  transform: scaleX(1);
}

.team-member-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.04);
  filter: grayscale(0.7) contrast(1.02);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  will-change: transform;
}

.team-member:hover .team-member-photo img {
  transform: scale(1.09);
  filter: grayscale(0) contrast(1.05);
}

.team-member-years {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.35rem 0.65rem;
}

.team-member-content {
  position: relative;
  z-index: 2;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-member-role {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.team-member-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.005em;
  margin-bottom: 0.9rem;
}

.team-member-name span {
  color: var(--gold);
  font-style: italic;
}

.team-member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.team-card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.5rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.team-member:hover .team-card-tag {
  border-color: rgba(201, 169, 98, 0.28);
  color: rgba(255, 255, 255, 0.72);
}

.team-member-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.team-member-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.team-card-social {
  display: flex;
  gap: 0.75rem;
}

.team-card-social a {
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.team-card-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.team-member-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.35);
  padding: 0.55rem 1rem;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-member-btn span {
  transition: transform 0.3s ease;
}

.team-member-btn:hover {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(201, 169, 98, 0.22);
}

.team-member-btn:hover span {
  transform: translateX(3px);
}

/* ── Works gallery ────────────────────────────────────── */
.works-gallery {
  position: relative;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(11rem, 1fr);
  gap: 0.65rem;
}

.works-item--tall {
  grid-row: span 2;
}

.works-item--wide {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(9.5rem, 1fr);
    gap: 0.75rem;
  }

  .works-item--tall {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .works-item--wide {
    grid-column: span 2;
  }
}

.works-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--darker);
  line-height: 0;
  cursor: default;
  min-height: 11rem;
}

@media (min-width: 768px) {
  .works-item {
    min-height: 9.5rem;
  }

  .works-item--tall {
    min-height: 24rem;
  }
}

.works-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-item:hover::after {
  transform: scaleX(1);
}

.works-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 11rem;
  transform: scale(1.04);
  filter: grayscale(0.55) contrast(1.03);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

@media (min-width: 768px) {
  .works-item img {
    min-height: 0;
    position: absolute;
    inset: 0;
  }

  .works-item--tall {
    min-height: 24rem;
  }
}

.works-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.05);
}

.works-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, transparent 55%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.works-item:hover .works-caption {
  opacity: 1;
}

@media (max-width: 767px) {
  .works-caption {
    opacity: 1;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
  }
}

.works-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Reviews ──────────────────────────────────────────── */
#reviews-carousel {
  overflow: hidden;
}

#reviews-track {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  left: auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(201, 169, 98, 0.08);
  pointer-events: none;
}

.review-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .review-card-inner {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.review-avatar {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 0 24px rgba(201, 169, 98, 0.15);
}

@media (min-width: 768px) {
  .review-avatar {
    width: 7rem;
    height: 7rem;
  }
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-stars {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.review-stars svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(201, 169, 98, 0.3));
}

.review-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 768px) {
  .review-text {
    font-size: 1.65rem;
  }
}

.review-card.is-entering {
  animation: review-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes review-enter {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.review-dot.active {
  background-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── CTA section ──────────────────────────────────────── */
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Section divider ──────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.25), transparent);
}

/* ── Booking modal ────────────────────────────────────── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: min(90vh, 720px);
  background: var(--darker);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.booking-modal.is-open .booking-dialog {
  transform: translateY(0) scale(1);
}

.booking-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.booking-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 98, 0.28) transparent;
}

.booking-body::-webkit-scrollbar {
  width: 4px;
}

.booking-body::-webkit-scrollbar-track {
  background: transparent;
}

.booking-body::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 98, 0.28);
  border-radius: 4px;
}

.booking-body::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 169, 98, 0.45);
}

.booking-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.booking-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--muted);
  padding: 0.25rem;
  transition: color 0.2s ease;
  z-index: 1;
}

.booking-close:hover {
  color: var(--gold);
}

.booking-steps {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.booking-step-indicator {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.booking-step-indicator.is-active,
.booking-step-indicator.is-done {
  background: linear-gradient(90deg, var(--gold), var(--amber));
}

.booking-panel {
  display: none;
  animation: booking-fade-in 0.35s ease;
}

.booking-panel.is-active {
  display: block;
}

@keyframes booking-fade-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.booking-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  background: rgba(18, 18, 18, 0.6);
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.booking-option:hover {
  border-color: rgba(201, 169, 98, 0.35);
}

.booking-option.is-selected {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.08);
}

.booking-option.is-selected .booking-option-check {
  border-color: var(--gold);
  background: var(--gold);
}

.booking-option-check {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.booking-option-check svg {
  width: 10px;
  height: 10px;
  color: var(--darker);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.booking-option.is-selected .booking-option-check svg {
  opacity: 1;
}

.booking-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.25s ease;
}

.booking-option.is-selected .booking-avatar {
  border-color: var(--gold);
}

.booking-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-avatar--any {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.12);
  color: var(--gold);
}

.booking-dates {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 98, 0.28) transparent;
}

.booking-dates::-webkit-scrollbar {
  height: 4px;
}

.booking-dates::-webkit-scrollbar-track {
  background: transparent;
}

.booking-dates::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 98, 0.28);
  border-radius: 4px;
}

.booking-date {
  flex-shrink: 0;
  width: 4.5rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: rgba(18, 18, 18, 0.6);
  color: inherit;
}

.booking-date:hover:not(:disabled) {
  border-color: rgba(201, 169, 98, 0.35);
}

.booking-date.is-selected {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.1);
}

.booking-date-day {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-date-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0.15rem 0;
}

.booking-date-month {
  font-size: 0.65rem;
  color: var(--muted);
}

.booking-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 400px) {
  .booking-times {
    grid-template-columns: repeat(4, 1fr);
  }
}

.booking-time {
  padding: 0.6rem 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: rgba(18, 18, 18, 0.6);
  color: inherit;
}

.booking-time:hover:not(:disabled) {
  border-color: rgba(201, 169, 98, 0.35);
}

.booking-time.is-selected {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

.booking-time:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-field {
  margin-bottom: 1rem;
}

.booking-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  color: #ffffff;
  caret-color: var(--gold);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: var(--muted);
  opacity: 1;
  font-weight: 300;
  font-style: italic;
  -webkit-text-fill-color: var(--muted);
}

.booking-field input:-webkit-autofill,
.booking-field input:-webkit-autofill:hover,
.booking-field input:-webkit-autofill:focus,
.booking-field textarea:-webkit-autofill {
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 0 0 1000px rgba(18, 18, 18, 0.95) inset;
  transition: background-color 9999s ease-out 0s;
}

.booking-field input:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.booking-field input.is-invalid,
.booking-field textarea.is-invalid {
  border-color: #c45c5c;
}

.booking-field-error,
.booking-step-error {
  font-size: 0.75rem;
  color: #c45c5c;
  margin-top: 0.35rem;
  display: none;
}

.booking-field-error.is-visible,
.booking-step-error.is-visible {
  display: block;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.booking-summary-label {
  color: var(--muted);
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.booking-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: success-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes success-pop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.booking-confirmation-code {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.booking-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  gap: 1.25rem;
}

.booking-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(201, 169, 98, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.booking-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
}

/* ── Reduced motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg,
  .marquee-track,
  .preloader-logo,
  .booking-panel,
  .booking-dialog,
  .booking-success-icon,
  .booking-spinner {
    animation: none;
    transition: none;
  }
}
