/* ═══════════════════════════════════════════════════════════
   DOLCINO ART · STYLE.CSS · Stage 1
   Editorial luxury design system
   ═══════════════════════════════════════════════════════════ */

/* ──── Design Tokens ──── */
:root {
  /* Colors */
  --cream: #faf6f0;
  --cream-2: #f4ebe0;
  --gold: #b8956b;
  --gold-light: #d4a574;
  --gold-soft: #c9a878;
  --burgundy: #8b3a3a;
  --burgundy-deep: #722d2d;
  --brown: #4a2c1a;
  --brown-deep: #2c1810;
  --brown-darkest: #1a0e08;
  --brown-night: #0d0704;
  --text-mute: #6b4a35;
  --text-light: #8b6f47;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 100px;

  /* Layout */
  --max-width: 1320px;
  --side-padding: 60px;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ──── Reset ──── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--brown-deep);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ──── Typography Helpers ──── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-dash {
  width: 24px;
  height: 0.5px;
  background: var(--gold);
  display: inline-block;
}
.gold-line {
  height: 0.5px;
  background: var(--gold);
  width: 60px;
  margin: 24px 0;
}

/* ──── Reveal Animations ──── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.2s; }

/* ═══════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--brown-darkest);
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px var(--side-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lang-switch a { padding: 0 4px; transition: color 0.3s var(--ease); }
.lang-switch a:hover { color: var(--cream); opacity: 1; }
.lang-switch a.active { color: var(--cream); }
.lang-switch .divider { opacity: 0.4; padding: 0 2px; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(120, 80, 50, 0.12);
  transition: background 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 246, 240, 0.98);
  border-bottom-color: rgba(120, 80, 50, 0.2);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--side-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--burgundy);
  transition: all 0.4s var(--ease);
}
.brand:hover .brand-mark {
  background: var(--burgundy);
  color: var(--cream);
  transform: rotate(360deg);
  border-color: var(--burgundy);
}
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--brown-deep);
}
.brand-est {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  border-left: 0.5px solid var(--gold);
  padding-left: 8px;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--brown);
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.5px;
  background: var(--brown-deep);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { opacity: 1; color: var(--brown-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 11px 20px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--burgundy);
  opacity: 1;
  letter-spacing: 3px;
}

/* Mobile menu toggle */
.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--brown-deep);
  transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 0.5px solid var(--gold);
  padding: 30px var(--side-padding);
  display: none;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-deep);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.nav-drawer.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.drawer-cta {
  background: var(--brown-deep);
  color: var(--cream) !important;
  padding: 14px 24px;
  text-align: center;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--cream-2);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184, 149, 107, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(139, 58, 58, 0.03) 1px, transparent 1px);
  background-size: 32px 32px, 24px 24px;
  overflow: hidden;
}
.hero-side-label {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  z-index: 2;
  white-space: nowrap;
}
.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  align-items: center;
}
.hero-text {
  padding: 80px 60px 80px 100px;
}
.hero-title {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -1.5px;
  color: var(--brown-darkest);
  margin: 24px 0 0;
}
.hero-title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 300;
}
.hero-lead {
  font-size: 14px;
  line-height: 1.85;
  color: var(--brown);
  margin: 0 0 36px;
  max-width: 400px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--brown-deep);
  color: var(--cream-2);
  padding: 16px 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--burgundy);
  transition: left 0.4s var(--ease);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { opacity: 1; }
.btn-primary:hover::before { left: 0; }
.btn-primary .arrow {
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-text {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-mute);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s var(--ease);
}
.btn-text:hover { color: var(--burgundy); opacity: 1; }
.btn-text .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  transition: transform 0.3s var(--ease);
}
.btn-text:hover .dot { transform: scale(1.4); }

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(120, 80, 50, 0.15);
}
.stat-num {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--brown-darkest);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  padding: 60px 60px 60px 0;
  height: 640px;
}
.hero-photo-main {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 65%;
  height: 75%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--burgundy) 60%, var(--brown) 100%);
  box-shadow: -10px 10px 0 rgba(184, 149, 107, 0.18);
  overflow: hidden;
}
.hero-photo-detail {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 45%;
  height: 50%;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--text-mute) 100%);
  border: 5px solid var(--cream);
  overflow: hidden;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 2px;
  text-align: center;
  opacity: 0.7;
  line-height: 1.6;
}
.photo-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(250, 246, 240, 0.95);
  color: var(--brown-deep);
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 2px;
  z-index: 2;
}
.circle-decor {
  position: absolute;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
}
.circle-decor-1 {
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
}
.circle-decor-2 {
  top: 40px;
  right: 40px;
  width: 32px;
  height: 32px;
  background: rgba(184, 149, 107, 0.12);
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-light);
  text-transform: uppercase;
}
.scroll-line {
  width: 0.5px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════ */
.marquee {
  background: var(--brown-darkest);
  color: var(--gold-light);
  padding: 18px 0;
  overflow: hidden;
  border-top: 0.5px solid var(--gold);
  border-bottom: 0.5px solid var(--gold);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 60px;
  padding-left: 60px;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 2px;
}
.marquee-sep { color: var(--text-light); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: var(--space-2xl) var(--side-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.photo-tall {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--brown) 100%);
}
.quote-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--cream);
  padding: 28px 32px;
  max-width: 250px;
  border: 0.5px solid var(--gold);
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--brown-deep);
}
.quote-attr {
  margin-top: 14px;
  color: var(--burgundy);
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--brown-darkest);
  margin: 24px 0;
  letter-spacing: -1px;
}
.section-title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 300;
}
.about-quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.6;
  color: var(--brown-deep);
  font-style: italic;
  margin: 0 0 20px;
  font-weight: 400;
}
.about-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--brown);
  margin: 0 0 18px;
  font-weight: 300;
}
.about-text:last-of-type { margin-bottom: 32px; }
.signature-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(120, 80, 50, 0.15);
}
.signature-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--burgundy);
  line-height: 1;
}
.signature-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--brown-deep);
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════
   COMING SOON SECTION
   ═══════════════════════════════════════════════════════════ */
.coming-soon {
  background: var(--brown-darkest);
  color: var(--cream);
  padding: var(--space-2xl) var(--side-padding);
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: 'Dolcino';
  position: absolute;
  top: 30%;
  left: -40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 220px;
  color: rgba(212, 165, 116, 0.05);
  letter-spacing: -8px;
  line-height: 1;
  pointer-events: none;
}
.coming-soon-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.coming-soon-inner .eyebrow { color: var(--gold-light); justify-content: center; }
.coming-soon-inner .eyebrow-dash { background: var(--gold-light); }
.coming-soon-inner .section-title { color: var(--cream); }
.coming-soon-inner .section-title em { color: var(--gold-light); }
.coming-soon-inner .gold-line { margin: 24px auto; }
.coming-soon-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--gold-soft);
  margin-bottom: 14px;
  font-weight: 300;
}
.coming-soon .btn-primary {
  background: var(--gold-light);
  color: var(--brown-darkest);
}
.coming-soon .btn-primary::before { background: var(--cream); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--brown-night);
  color: var(--text-light);
  padding: 60px var(--side-padding) 30px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid rgba(184, 149, 107, 0.15);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.footer-est {
  font-size: 9px !important;
  letter-spacing: 2px;
  color: var(--gold) !important;
  text-transform: uppercase;
  margin-top: 16px !important;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col .eyebrow {
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  font-size: 11px;
  line-height: 2;
  color: var(--text-light);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover {
  color: var(--gold-light);
  opacity: 1;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--brown);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --side-padding: 40px;
    --space-2xl: 80px;
  }
  .hero-title { font-size: 60px; }
  .section-title { font-size: 44px; }
  .hero-text { padding: 60px 40px 60px 80px; }
  .about-grid { gap: 60px; }
  .nav-links { gap: 24px; font-size: 10px; }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 30px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --side-padding: 24px;
    --space-2xl: 60px;
  }

  .top-bar-text { display: none; }
  .top-bar-inner { justify-content: center; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 18px var(--side-padding); }

  .hero-side-label { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text { padding: 50px 24px 30px; }
  .hero-title { font-size: 44px; line-height: 1; }
  .hero-lead { font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 30px; margin-top: 40px; }
  .stat-num { font-size: 26px; }

  .hero-visual {
    height: 360px;
    padding: 0 24px 50px;
  }
  .hero-photo-main {
    width: 78%;
    height: 80%;
    right: 24px;
    top: 0;
  }
  .hero-photo-detail {
    width: 50%;
    height: 50%;
    left: 24px;
    bottom: 0;
  }
  .scroll-indicator { display: none; }

  .marquee-item { font-size: 14px; }

  .about {
    padding: var(--space-2xl) var(--side-padding);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .about-photo { padding: 0; max-width: 400px; margin: 0 auto; width: 100%; }
  .quote-card {
    right: 0;
    bottom: -24px;
    max-width: 220px;
    padding: 22px 24px;
  }
  .quote-text { font-size: 16px; }
  .section-title { font-size: 36px; }
  .about-quote { font-size: 18px; }

  .coming-soon::before { font-size: 120px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-title { font-size: 38px; }
  .section-title { font-size: 30px; }
  .hero-stats { gap: 20px; }
  .stat { flex: 1; min-width: 0; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 9px; letter-spacing: 1.5px; }
  .footer-inner { grid-template-columns: 1fr; }
}

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

/* Fix poze hero pe mobil */
.hero-photo-main picture,
.hero-photo-main img,
.hero-photo-detail picture,
.hero-photo-detail img,
.about-photo picture,
.about-photo .photo-tall,
.about-photo .photo-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CAKE CAROUSEL */
.cake-carousel {
  overflow: hidden;
  margin: 20px 0;
  position: relative;
  width: 100%;
}
.cake-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.cake-track--left {
  animation: carouselLeft 45s linear infinite;
}
.cake-track--right {
  animation: carouselRight 50s linear infinite;
}
.cake-carousel:hover .cake-track {
  animation-play-state: paused;
}
@keyframes carouselLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes carouselRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.cake-slide {
  flex-shrink: 0;
  width: 220px;
  max-width: 220px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,149,107,0.15);
}
.cake-slide img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  display: block;
}
.cake-label {
  display: block;
  padding: 10px 14px;
  background: rgba(26,14,8,0.85);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: #c9a878;
  text-align: center;
}
.cake-carousel::before,
.cake-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.cake-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #1a0e08 0%, transparent 100%);
}
.cake-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #1a0e08 0%, transparent 100%);
}


/* CONTACT FORM */
.contact-form-wrap {
  max-width: 780px;
  margin: 56px auto 0;
  padding: 0 24px;
}
.cf-inner {
  border-top: 0.5px solid rgba(184,149,107,0.2);
  padding-top: 56px;
}
.cf-header {
  text-align: center;
  margin-bottom: 44px;
}
.cf-header .eyebrow {
  color: #d4a574;
  justify-content: center;
}
.cf-header .eyebrow-dash {
  background: #d4a574;
}
.cf-header .section-title {
  color: #faf6f0;
}
.cf-header .section-title em {
  color: #d4a574;
}
.cf-header .gold-line {
  margin: 24px auto;
}
.cf-subtitle {
  font-size: 14px;
  line-height: 1.85;
  color: #c9a878;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cf-row {
  display: flex;
  gap: 24px;
}
.cf-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-field--half {
  flex: 0.5;
}
.cf-field label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4a574;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: rgba(250,246,240,0.04);
  border: 1px solid rgba(184,149,107,0.2);
  border-radius: 0;
  color: #faf6f0;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.cf-field input:hover,
.cf-field select:hover,
.cf-field textarea:hover {
  border-color: rgba(184,149,107,0.4);
  background: rgba(250,246,240,0.06);
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: #d4a574;
  background: rgba(250,246,240,0.08);
  box-shadow: 0 0 0 3px rgba(212,165,116,0.08);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(201,168,120,0.35);
  font-style: italic;
}
.cf-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a878' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.cf-field select option {
  background: #1a0e08;
  color: #faf6f0;
  padding: 12px;
}
.cf-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}
.cf-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding-top: 12px;
}
.cf-submit-row .btn-primary {
  padding: 18px 40px;
  letter-spacing: 3px;
}
.cf-status {
  font-size: 14px;
  color: #c9a878;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.cf-status.success {
  color: #7ab87a;
}
.cf-status.error {
  color: #b87a7a;
}
@media (max-width: 768px) {
  .cf-row {
    flex-direction: column;
    gap: 20px;
  }
  .cf-field--half {
    flex: 1;
  }
  .contact-form-wrap {
    padding: 0 16px;
    margin-top: 40px;
  }
  .cf-submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cf-submit-row .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
