:root {
  color-scheme: dark;
  --bg: #1a1510;
  --bg-secondary: #2d2820;
  --bg-elevated: #352f28;
  --gold: #c9a84c;
  --gold-light: #e8d49a;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --text: #f5f0e8;
  --text-muted: #6b5e4e;
  --text-soft: #a89880;
  --white: #fdfaf5;
  --line: rgba(201, 168, 76, 0.15);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.2);
  --radius: 4px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --space-3xl: 5.5rem;
  --max: 1120px;
  --gallery-max: 1280px;
  --page-pad: clamp(1.25rem, 4vw, 2.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 168, 76, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 40%, rgba(201, 168, 76, 0.04), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 60%, rgba(45, 40, 32, 0.6), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: 300;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--gold);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: var(--space-md);
  color: var(--bg);
}

/* ─── UTILITIES ─── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 24px 0;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-sm);
}

.text-link {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.text-link:hover {
  border-bottom-color: var(--gold);
  color: var(--gold-light);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.reveal-from-left {
  transform: translate3d(-48px, 36px, 0);
}

.reveal.reveal-from-right {
  transform: translate3d(48px, 36px, 0);
}

.reveal.reveal-from-left.visible,
.reveal.reveal-from-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.no-js .reveal,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }
.reveal-delay-4 { transition-delay: 0.8s; }
.reveal-delay-5 { transition-delay: 1s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  touch-action: manipulation;
}

.btn-primary {
  color: var(--bg);
  background: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block {
  width: 100%;
}

/* ─── NAVIGATION ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(min-content, 1fr) minmax(0, auto) minmax(min-content, 1fr);
  align-items: center;
  column-gap: var(--space-md);
  padding-top: calc(var(--space-md) + env(safe-area-inset-top, 0px));
  padding-bottom: var(--space-md);
  padding-left: max(var(--page-pad), env(safe-area-inset-left, 0px));
  padding-right: max(var(--page-pad), env(safe-area-inset-right, 0px));
  width: 100%;
  max-width: 100%;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: var(--space-xs);
  column-gap: clamp(0.75rem, 2vw, 1.75rem);
  justify-self: center;
  max-width: 100%;
}

.site-header.is-scrolled {
  background: rgba(26, 21, 16, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header.is-scrolled {
    background: rgba(26, 21, 16, 0.99);
  }
}

.logo {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  justify-self: start;
  white-space: nowrap;
}

.site-nav a {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-book {
  padding: 12px 28px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  padding: max(env(safe-area-inset-top), 1.5rem) max(env(safe-area-inset-right), 1.25rem)
    max(env(safe-area-inset-bottom), 1.5rem) max(env(safe-area-inset-left), 1.25rem);
  box-sizing: border-box;
  background: rgba(26, 21, 16, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .btn {
  margin-top: var(--space-md);
  font-size: 0.72rem;
}

@media (max-width: 768px) {
  .site-nav,
  .nav-book {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-top: calc(var(--space-sm) + env(safe-area-inset-top, 0px));
    padding-bottom: var(--space-sm);
    padding-left: max(var(--page-pad), env(safe-area-inset-left, 0px));
    padding-right: max(var(--page-pad), env(safe-area-inset-right, 0px));
  }

  .logo {
    grid-column: 1;
  }

  .header-end {
    grid-column: 2;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) max(var(--page-pad), env(safe-area-inset-left))
    var(--space-3xl) max(var(--page-pad), env(safe-area-inset-right));
  overflow: hidden;
  background-color: #14110d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('hero_bridal_bg_1778917515990.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(20, 17, 13, 0.4) 0%, rgba(20, 17, 13, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

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

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.hero-line-left {
  left: 5%;
}

.hero-line-right {
  right: 5%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-md);
  color: var(--white);
  text-wrap: balance;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-soft);
  margin: 0 0 var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── STATS ─── */
.stats {
  background: linear-gradient(180deg, rgba(45, 40, 32, 0.98), var(--bg-secondary));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-xl) var(--page-pad);
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: center;
  align-items: stretch;
}

.stat {
  padding: var(--space-md) var(--space-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
}

.stat-value-row {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.06em;
  min-height: 1.2em;
}

.stat-star {
  font-size: 1.15em;
  line-height: 1;
  transform: translateY(-0.06em);
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--line);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  margin-top: 0;
  max-width: 12rem;
  margin-inline: auto;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .stat:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 400px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9vw, 3.25rem);
  }
}

/* ─── SECTIONS ─── */
.section {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--page-pad);
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.section-header::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.5rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.45;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin: 0 0 var(--space-sm);
  color: var(--white);
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
  font-weight: 200;
  font-size: 1.05rem;
}

/* ─── ABOUT ─── */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: var(--bg-secondary);
}

.about-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.video-mute-btn {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(26, 21, 16, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  outline: none;
}

.video-mute-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: scale(1.1);
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  right: -0.5rem;
  background: var(--gold);
  color: var(--bg);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.6;
  box-shadow: var(--shadow);
}

.about-badge span {
  display: block;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  color: var(--white);
}

.about-text h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}

.about-text > p {
  color: var(--text-soft);
  font-weight: 200;
  margin: 0 0 var(--space-md);
  max-width: 480px;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ─── SERVICES ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.service-card {
  background: linear-gradient(165deg, rgba(45, 40, 32, 0.95), var(--bg-secondary));
  border: 1px solid var(--line);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 17.5rem;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  width: 100%;
}

/* Photo service cards — shared layout (set --svc-bg on each card) */
.service-card--color-photo {
  background: transparent;
  border-color: rgba(201, 168, 76, 0.28);
  padding: 0;
  min-height: clamp(22rem, 52vw, 32rem);
}

.service-card--color-photo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.service-card--color-photo::before {
  content: "";
  position: absolute;
  top: -1px; /* Offset for border */
  left: 0;
  width: 100%;
  height: 81%; /* Slight overlap to prevent gap */
  z-index: 0;
  background-color: var(--bg-secondary);
  background-image: var(--svc-bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.service-card--color-photo:hover::before,
.service-card--color-photo:focus-within::before {
  transform: scale(1.012);
}

.service-card--color-photo .service-card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.service-card--color-photo-name {
  margin: 0;
  padding: 0 1rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  pointer-events: none;
}

.service-card.service-card--color-photo .service-card-bottom > h3 {
  margin: 0;
}

.service-card-details {
  opacity: 1;
  padding: 0;
  background: transparent;
}

/* Remove hover triggers */
.service-card--color-photo:hover .service-card-details,
.service-card--color-photo:focus-within .service-card-details {
  max-height: none;
}

.service-card--color-photo::after {
  z-index: 4;
}

.service-card.service-card--color-photo .service-card-details .service-num {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
  margin: 0;
  line-height: 1.3;
}

.service-card.service-card--color-photo .service-card-details p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
}

.service-card.service-card--color-photo .service-card-details .service-price {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-md);
  display: block;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 var(--space-xs);
  color: var(--white);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 200;
  margin: 0 0 var(--space-md);
  line-height: 1.6;
}

.service-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold);
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.view-details {
  display: none;
}

/* ─── SERVICE CAROUSEL ─── */
.service-carousel-container {
  position: relative;
  width: 100%;
  padding: 0 40px; /* Space for buttons */
}

.service-carousel-viewport {
  overflow: hidden;
  padding: 0 0 30px;
  cursor: grab;
  touch-action: pan-y;
}

.service-carousel-viewport:active {
  cursor: grabbing;
}

.service-track {
  display: flex;
  gap: var(--space-md);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.service-track .service-card {
  flex: 0 0 calc(33.333% - (var(--space-md) * 2 / 3));
  min-width: 280px;
  user-select: none;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.carousel-nav--prev { left: -10px; }
.carousel-nav--next { right: -10px; }

.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .service-track .service-card {
    flex: 0 0 calc(50% - (var(--space-md) / 2));
  }
}

@media (max-width: 640px) {
  .service-carousel-container {
    padding: 0;
  }
  .service-track .service-card {
    flex: 0 0 85%;
  }
  .carousel-nav {
    display: none; /* Swipe on mobile */
  }
}

/* ─── SERVICE DIALOG ─── */
.service-dialog {
  width: min(94vw, 900px);
  max-height: 90vh;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  color: var(--text);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.service-dialog::backdrop {
  background: rgba(15, 12, 10, 0.9);
  backdrop-filter: blur(10px);
}

.service-dialog-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 90vh; /* Match dialog max-height */
}

.service-dialog-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(45, 40, 32, 0.6);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.service-dialog-close:hover {
  background: var(--gold);
  color: var(--bg);
}

.service-dialog-content {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-secondary);
  -webkit-overflow-scrolling: touch;
}

.sd-header {
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.sd-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--bg-secondary));
}

.sd-body {
  padding: var(--space-xl);
}

.sd-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.sd-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.sd-desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.sd-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
}

.sd-section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sd-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.sd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sd-list-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}

.sd-step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--line);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}

.sd-list-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.sd-list-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sd-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sd-product-tag {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.sd-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sd-price-info span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.sd-price-info strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gold);
}

@media (max-width: 768px) {
  .sd-grid {
    grid-template-columns: 1fr;
  }
  .sd-header {
    height: 200px;
  }
  .sd-body {
    padding: var(--space-lg);
  }
}

@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--color-photo {
    min-height: clamp(20rem, 56vw, 30rem);
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card--color-photo {
    min-height: clamp(19rem, 78vw, 28rem);
  }

  .service-card--color-photo .service-card-details {
    max-height: 18rem;
  }

  .service-card--color-photo:hover .service-card-details,
  .service-card--color-photo:focus-within .service-card-details {
    max-height: 18rem;
  }
}

/* ─── GALLERY ─── */
.section.gallery {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-inline: 0;
}

.gallery-section-head {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  box-sizing: border-box;
}

.gallery-section-head .section-header {
  margin-bottom: var(--space-md);
}

.gallery-section-head .gallery-filters {
  margin-bottom: var(--space-xl);
}

.gallery-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: var(--page-pad);
  box-sizing: border-box;
}

.gallery-shell {
  max-width: var(--gallery-max);
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: var(--space-lg);
}

.gallery-filter {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0.35rem 0.25rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
  color: var(--gold-light);
  outline: none;
}

.gallery-filter.active {
  color: var(--gold);
}

.gallery-filter-sep {
  color: var(--line);
  font-size: 0.5rem;
  user-select: none;
}

.gallery-carousel-container {
  position: relative;
  width: 100%;
  padding: 0 40px;
}

.gallery-carousel-viewport {
  overflow: hidden;
  padding: 10px 0 20px;
  cursor: grab;
  touch-action: pan-y;
}

.gallery-carousel-viewport:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: var(--space-sm);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.gallery-track .gallery-tile {
  flex: 0 0 calc(25% - (var(--space-sm) * 3 / 4));
  min-width: 240px;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-secondary);
}

.gallery-track .gallery-tile:first-child {
  grid-column: auto;
  grid-row: auto;
}

.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  cursor: zoom-in;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-tile:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile--maps {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background-color: var(--bg-secondary);
  background-image: linear-gradient(
      165deg,
      rgba(26, 21, 16, 0.82) 0%,
      rgba(26, 21, 16, 0.45) 42%,
      rgba(26, 21, 16, 0.75) 100%
    ),
    url("gallery/maps-listing-preview.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.gallery-tile--maps:hover,
.gallery-tile--maps:focus-visible {
  transform: scale(1.02);
  box-shadow: var(--shadow);
  outline: none;
}

.gallery-tile-maps-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-lg) var(--space-md);
  gap: 0.35rem;
}

.gallery-tile-maps-kicker {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-tile-maps-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  max-width: 16rem;
}

.gallery-tile-maps-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.gallery-tile--maps::after {
  content: "";
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 2.25rem;
  height: 2.25rem;
  background: var(--gold);
  opacity: 0.92;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.gallery-tile:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-tile:hover img {
  transform: scale(1.08);
}

.gallery-tile-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: left;
  color: var(--white);
  background: linear-gradient(transparent, rgba(26, 21, 16, 0.88));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  line-height: 1.4;
}

.gallery-tile:hover .gallery-tile-label {
  opacity: 1;
}

.gallery-tile.is-filtered-out {
  display: none !important;
}

.gallery-empty {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  border: 1px dashed var(--line);
  background: var(--bg-secondary);
}

.gallery-empty[hidden] {
  display: none !important;
}

.gallery-empty-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0 var(--space-sm);
  color: var(--text-soft);
}

.gallery-empty-text,
.gallery-empty-note {
  margin: 0 0 var(--space-sm);
  color: var(--text-muted);
  font-weight: 200;
  font-size: 0.9rem;
}

.gallery-empty code {
  color: var(--gold);
  font-size: 0.85em;
}

.gallery-cmd {
  margin: var(--space-md) auto;
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  background: var(--bg);
  color: var(--gold);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  overflow-x: auto;
  max-width: 100%;
}

.gallery-cmd code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: inherit;
}

@media (max-width: 1024px) {
  .gallery-track .gallery-tile {
    flex: 0 0 calc(33.333% - (var(--space-sm) * 2 / 3));
  }
}

@media (max-width: 768px) {
  .gallery-carousel-container {
    padding: 0;
  }
  .gallery-track .gallery-tile {
    flex: 0 0 calc(50% - (var(--space-sm) / 2));
    height: 280px;
  }
}

@media (max-width: 480px) {
  .gallery-track .gallery-tile {
    flex: 0 0 75%;
    height: 320px;
  }
}

/* Gallery Dialog */
.gallery-dialog {
  width: min(96vw, 1100px);
  max-height: 92vh;
  max-height: 92dvh;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(26, 21, 16, 0.98); /* Solid bg for scrollable content */
  color: var(--text);
  overflow-y: auto; /* Enable scroll if needed */
}

.gallery-dialog::backdrop {
  background: rgba(26, 21, 16, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.gallery-dialog-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
}

.gallery-dialog-figure {
  margin: 0;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.gallery-dialog-img {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-dialog-caption {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 200;
  color: var(--text-soft);
  text-align: center;
}

.gallery-dialog-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 2;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 240, 232, 0.3);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.gallery-dialog-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-dialog-nav {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.gallery-dialog-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 640px) {
  .gallery-dialog-inner {
    grid-template-columns: 1fr;
    padding-top: var(--space-xl);
  }

  .gallery-dialog-nav {
    display: none;
  }
}

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.team-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card:hover .team-photo {
  box-shadow: var(--shadow-gold);
}

.team-card:hover .team-photo::after {
  opacity: 1;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-elevated) 100%);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.team-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 4px;
  color: var(--white);
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.team-social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.team-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--bg-secondary);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
  max-width: 100%;
  width: 100%;
}

.testimonial-slider {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 var(--space-lg);
  padding: 0;
  max-width: 550px;
}

.testimonial-slide cite {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-lg);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  background: var(--gold);
}

/* ─── MULTI-SELECT CHECKBOXES ─── */
.services-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  user-select: none;
}

.checkbox-item:hover {
  border-color: var(--gold);
  background: var(--bg-elevated);
}

.checkbox-item input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-item input:checked + .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-item input:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 900;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 300;
  transition: color 0.3s ease;
}

.checkbox-item input:checked ~ .checkbox-label {
  color: var(--white);
}

@media (max-width: 576px) {
  .services-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CONTACT ─── */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  color: var(--white);
}

.contact-info h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}

.contact-info > p {
  color: var(--text-soft);
  font-weight: 200;
  margin: 0 0 var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 2px;
}

.contact-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 200;
}

.contact-item a {
  color: var(--text-soft);
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  padding: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  font-family: var(--font-sans);
  /* 16px minimum avoids iOS Safari zooming the viewport on field focus */
  font-size: 1rem;
  font-weight: 300;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group select {
  cursor: pointer;
}

.form-group input[type="date"] {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

/* Customizing the native date picker icon for Chrome/Safari */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
  cursor: pointer;
}

.contact-form .btn {
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-3xl) var(--page-pad) var(--space-lg);
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  color: var(--text-muted);
  font-weight: 200;
  font-size: 0.9rem;
  margin: 0 0 var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-md);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 200;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 200;
  margin: 0 0 var(--space-sm);
  line-height: 1.7;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-legal a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-legal-sep {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

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

  body {
    background-attachment: scroll;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal.reveal-from-left,
  .reveal.reveal-from-right {
    transform: none;
  }
}
