:root {
  --black: #0a0906;
  --black-soft: #141210;
  --gold: #c9a24c;
  --gold-light: #e8c97a;
  --gold-deep: #8f6f2a;
  --ivory: #f4ede0;
  --cream: #ebe0cc;
  --bordeaux: #6e1f2e;
  --rose: #c4475a;
  --sand: #d9c8a9;
  --ink: #2a201b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* === TOPBAR === */
.topbar {
  background: var(--black);
  color: var(--gold-light);
  padding: 0.6rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 101;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.topbar-sep {
  display: inline-block; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  vertical-align: middle;
}
.lang-switcher {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.lang-switcher a {
  padding: 0.2rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 500;
}
.lang-switcher a.active {
  border-color: var(--gold);
  color: var(--gold);
}

/* === NAV === */
nav {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 9, 6, 0.95);
  backdrop-filter: blur(14px);
  padding: 0.9rem 3rem;
  top: 0;
  border-bottom: 1px solid rgba(201, 162, 76, 0.2);
}
.logo-link { display: flex; align-items: center; gap: 1rem; color: var(--ivory); text-decoration: none; }
.logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  transition: transform 0.6s;
  filter: drop-shadow(0 2px 8px rgba(201, 162, 76, 0.25));
}
.logo-link:hover .logo-img { transform: rotate(-5deg) scale(1.05); }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-wordmark .brand {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--ivory);
  font-weight: 500;
}
.logo-wordmark .sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  margin-top: 4px;
  font-weight: 300;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.4s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-cta::after { display: none !important; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.burger span { width: 26px; height: 1.5px; background: var(--ivory); transition: all 0.3s; }

/* === HERO === */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding: 100px 1rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(110, 31, 46, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(201, 162, 76, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0a0906 0%, #1a1410 50%, #0a0906 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23c9a24c' stroke-width='0.5'><path d='M100 30 Q130 60 100 90 Q70 60 100 30'/><path d='M100 110 Q130 140 100 170 Q70 140 100 110'/><path d='M30 100 Q60 130 90 100 Q60 70 30 100'/><path d='M110 100 Q140 130 170 100 Q140 70 110 100'/><circle cx='100' cy='100' r='8'/><circle cx='100' cy='100' r='16'/></g></svg>");
  background-size: 180px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  padding: 2rem;
  max-width: 1000px;
}
.hero-logo-img {
  width: 140px; height: 140px;
  object-fit: contain;
  margin: 0 auto 2rem;
  display: block;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.2s forwards;
  filter: drop-shadow(0 0 40px rgba(201, 162, 76, 0.4));
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-brand {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: 0.15em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1.3s ease 0.7s forwards;
  color: var(--ivory);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-ornament {
  display: flex; justify-content: center;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-ornament svg { width: 180px; max-width: 100%; opacity: 0.7; }
.hero p {
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: rgba(244, 237, 224, 0.85);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}
.hero-cta-group {
  display: flex; gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 162, 76, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(244, 237, 224, 0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-arrow::after { content: '→'; transition: transform 0.3s; }
.btn-arrow:hover::after { transform: translateX(4px); }
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ivory);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.5;
  writing-mode: vertical-lr;
  animation: bounce 2.5s infinite;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(30px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold-deep);
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }

/* === INTRO === */
.intro { padding: 8rem 3rem 6rem; background: var(--ivory); position: relative; }
.intro-ornament-top {
  position: absolute; top: 3rem; left: 50%;
  transform: translateX(-50%);
  width: 200px; max-width: 80%; opacity: 0.4;
}
.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.intro-mark {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  border-radius: 4px;
  padding: 3rem;
  box-shadow: 0 30px 70px rgba(10, 9, 6, 0.25);
}
.intro-mark::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-deep);
  border-radius: 2px;
  pointer-events: none;
}
.intro-logo-img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(201, 162, 76, 0.4));
}
.intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--black);
}
.intro h2 em { font-style: italic; color: var(--bordeaux); }
.intro p {
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 1.25rem;
  max-width: 520px;
}
.signature {
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bordeaux);
}

/* === VIDEO SHOWCASE === */
.video-showcase {
  padding: 7rem 3rem;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  position: relative;
}
.video-header {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}
.video-header .section-label {
  justify-content: center;
  display: inline-flex;
}
.video-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.video-header h2 em { font-style: italic; color: var(--bordeaux); }
.video-header p {
  color: var(--ink);
  opacity: 0.75;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.video-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--black);
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(10, 9, 6, 0.2);
  transition: all 0.5s ease;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(10, 9, 6, 0.3);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 6, 0.9) 0%, transparent 40%, transparent 80%, rgba(10, 9, 6, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.video-info {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  right: 1.75rem;
  color: var(--ivory);
  z-index: 2;
}
.video-info .tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(232, 201, 122, 0.4);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(4px);
}
.video-info h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}
.video-info p {
  font-size: 0.85rem;
  opacity: 0.8;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.video-play-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201, 162, 76, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  pointer-events: none;
}
.video-card.paused .video-play-hint { opacity: 1; }
.video-play-hint svg { width: 24px; height: 24px; margin-left: 3px; }
.video-mute-btn {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10, 9, 6, 0.6);
  border: 1px solid rgba(201, 162, 76, 0.4);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s;
}
.video-mute-btn:hover { background: rgba(201, 162, 76, 0.2); }
.video-mute-btn svg { width: 16px; height: 16px; }

/* === SERVICES === */
.services { padding: 7rem 3rem; background: var(--black); color: var(--ivory); position: relative; overflow: hidden; }
.services::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(110, 31, 46, 0.3) 0%, transparent 70%);
}
.services::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 76, 0.15) 0%, transparent 70%);
}
.services-header { max-width: 900px; margin: 0 auto 5rem; text-align: center; position: relative; }
.services-header .section-label { justify-content: center; display: inline-flex; }
.services-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--ivory);
  font-weight: 300;
}
.services-header h2 em { font-style: italic; color: var(--gold-light); }
.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
}
.service-card {
  padding: 3rem 2.5rem;
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid rgba(201, 162, 76, 0.2);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(244, 237, 224, 0.07);
  border-color: rgba(201, 162, 76, 0.5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 1.75rem;
  color: var(--gold-light);
}
.service-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
  color: var(--ivory);
  font-weight: 400;
}
.service-card p {
  color: rgba(244, 237, 224, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}
.service-tags {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(232, 201, 122, 0.3);
  color: var(--gold-light);
  border-radius: 2px;
}

/* === ZONES === */
.zones { padding: 6rem 3rem; background: var(--cream); }
.zones-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.zones h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.zones h2 em { font-style: italic; color: var(--bordeaux); }
.zones p {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--ink);
  opacity: 0.75;
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.zone-chip {
  padding: 0.9rem 1rem;
  background: var(--ivory);
  border: 1px solid rgba(143, 111, 42, 0.2);
  border-radius: 2px;
  font-size: 0.88rem;
  color: var(--ink);
  transition: all 0.3s;
  font-weight: 400;
}
.zone-chip:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-2px);
}
.zone-chip strong {
  color: var(--bordeaux);
  font-weight: 500;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.zone-chip span {
  font-size: 0.72rem;
  opacity: 0.65;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* === PROCESS === */
.process { padding: 7rem 3rem; background: var(--ivory); position: relative; }
.process-container { max-width: 1200px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--black);
}
.process-header h2 em { font-style: italic; color: var(--bordeaux); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold-deep), transparent);
  opacity: 0.4;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--bordeaux);
  font-style: italic;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(10, 9, 6, 0.08);
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--black); }
.step p { font-size: 0.9rem; color: var(--ink); opacity: 0.7; padding: 0 0.5rem; }

/* === FAQ === */
.faq { padding: 7rem 3rem; background: var(--cream); }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header h2 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1rem;
}
.faq-header h2 em { font-style: italic; color: var(--bordeaux); }
.faq-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--ink);
  opacity: 0.75;
}
.faq-item {
  background: var(--ivory);
  border: 1px solid rgba(143, 111, 42, 0.15);
  border-radius: 2px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(10, 9, 6, 0.08);
}
.faq-item summary {
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  position: relative;
  list-style: none;
  padding-right: 3.5rem;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-deep);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}
.faq-item[open] summary { color: var(--bordeaux); }
.faq-item-body {
  padding: 0 1.75rem 1.5rem;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.7;
  font-size: 0.98rem;
}
.faq-item-body p { margin-bottom: 0.75rem; }
.faq-item-body p:last-child { margin-bottom: 0; }
.faq-item-body strong { color: var(--bordeaux); font-weight: 500; }

/* === TESTIMONIALS === */
.testimonials {
  padding: 7rem 3rem;
  background: var(--bordeaux);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 25rem;
  color: rgba(244, 237, 224, 0.08);
  line-height: 1;
}
.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
}
.testimonial-author {
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.testimonial-author span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0.5rem;
  opacity: 0.7;
}
.testimonial-dots {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(244, 237, 224, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold-light);
  width: 24px;
  border-radius: 4px;
}

/* === BOOKING === */
.booking {
  padding: 7rem 3rem;
  background: var(--black);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.booking-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23c9a24c' stroke-width='0.5'><path d='M100 30 Q130 60 100 90 Q70 60 100 30'/><path d='M100 110 Q130 140 100 170 Q70 140 100 110'/></g></svg>");
  background-size: 180px;
}
.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}
.booking-info h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.booking-info h2 em { font-style: italic; color: var(--gold-light); }
.booking-info p { opacity: 0.8; margin-bottom: 2.5rem; max-width: 420px; }
.contact-list { list-style: none; margin-top: 2.5rem; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(201, 162, 76, 0.18);
  font-size: 0.95rem;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201, 162, 76, 0.1);
  border: 1px solid rgba(201, 162, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.contact-list a { color: var(--ivory); text-decoration: none; transition: color 0.3s; }
.contact-list a:hover { color: var(--gold-light); }
.booking-form {
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid rgba(201, 162, 76, 0.2);
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--gold-light);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 162, 76, 0.3);
  color: var(--ivory);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(244, 237, 224, 0.35); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4 L6 8 L10 4' stroke='%23e8c97a' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
  padding-right: 20px;
  cursor: pointer;
}
.form-group select option { background: var(--black); color: var(--ivory); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Outfit', sans-serif;
}
.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 1.15rem;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* === FOOTER === */
footer {
  padding: 5rem 3rem 2rem;
  background: #050403;
  color: rgba(244, 237, 224, 0.6);
  text-align: center;
}
.footer-logo-img { width: 70px; height: 70px; object-fit: contain; margin: 0 auto 1.5rem; display: block; }
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.footer-sub {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.footer-social a {
  width: 44px; height: 44px;
  border: 1px solid rgba(201, 162, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-divider { width: 60px; height: 1px; background: rgba(201, 162, 76, 0.3); margin: 2rem auto; }
.copyright { font-size: 0.75rem; letter-spacing: 0.1em; }
.copyright a { color: var(--gold-light); text-decoration: none; }

/* === FLOAT CTA === */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-cta a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10, 9, 6, 0.3);
  transition: all 0.3s;
}
.float-cta a:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--gold);
  color: var(--black);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.18em; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-container { gap: 3rem; }
}

@media (max-width: 900px) {
  .topbar {
    font-size: 0.6rem;
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.15em;
  }
  .topbar-sep { display: none; }
  .lang-switcher { margin-left: 0; }

  nav { padding: 1rem 1.25rem; top: 50px; }
  nav.scrolled { padding: 0.85rem 1.25rem; top: 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .logo-wordmark .brand { font-size: 1rem; }
  .logo-wordmark .sub { font-size: 0.56rem; }
  .logo-img { width: 38px; height: 38px; }

  .hero { padding-top: 140px; }
  .hero-logo-img { width: 100px; height: 100px; }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .btn { justify-content: center; width: 100%; }

  .intro { padding: 5rem 1.25rem 4rem; }
  .intro-container { grid-template-columns: 1fr; gap: 3rem; }
  .intro-mark { max-width: 280px; margin: 0 auto; padding: 2rem; }

  .video-showcase { padding: 5rem 1.25rem; }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 380px;
    margin: 0 auto;
  }

  .services { padding: 5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-card { padding: 2.25rem 1.75rem; }

  .zones { padding: 4rem 1.25rem; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .process { padding: 5rem 1.25rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }

  .faq { padding: 5rem 1.25rem; }
  .faq-item summary { font-size: 0.98rem; padding: 1.2rem 3rem 1.2rem 1.25rem; }
  .faq-item summary::after { right: 1.25rem; }
  .faq-item-body { padding: 0 1.25rem 1.2rem; font-size: 0.92rem; }

  .testimonials { padding: 5rem 1.25rem; }

  .booking { padding: 5rem 1.25rem; }
  .booking-container { grid-template-columns: 1fr; gap: 3rem; }
  .booking-form { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .form-group.full { grid-column: span 1; }

  footer { padding: 4rem 1.25rem 2rem; }

  .float-cta { bottom: 1rem; right: 1rem; }
  .float-cta a { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .topbar { font-size: 0.55rem; letter-spacing: 0.1em; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.28em; gap: 0.5rem; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .intro, .video-showcase, .services, .zones, .process, .faq, .testimonials, .booking { padding-left: 1rem; padding-right: 1rem; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* === PRINT === */
@media print {
  .topbar, nav, .float-cta, .scroll-indicator, .video-showcase, .booking-form { display: none; }
  body { background: white; color: black; }
}
