/* ============================================================
   Decanter Consulting — Cellar-dark luxury
   Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --wine-950: #1c090e;
  --wine-900: #2b0e14;
  --wine-800: #3e1420;
  --wine-700: #521a2c;
  --wine-600: #6b2439;
  --gold: #c9a15a;
  --gold-soft: #ddbf8a;
  --cream: #f7f2ea;
  --cream-dim: #efe7da;
  --ink: #241418;
  --ink-soft: #5c4a4f;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', Arial, sans-serif;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

a { color: inherit; }

.container {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(28, 9, 14, 0.96);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
}
.brand span { color: var(--gold); font-style: italic; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.85);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.25s ease;
}
.main-nav a:hover { color: var(--gold-soft); }
.lang-switch {
  border: 1px solid rgba(201, 161, 90, 0.6);
  padding: 7px 14px;
  border-radius: var(--radius);
  color: var(--gold-soft) !important;
}
.lang-switch:hover { background: rgba(201,161,90,0.12); }
.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(247,242,234,0.4);
  border-radius: var(--radius);
  width: 44px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  left: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span { transform: translate(-50%, -50%); }
.nav-toggle span::before { top: -6px; left: 0; transform: none; }
.nav-toggle span::after { top: 6px; left: 0; transform: none; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: -1px; transform: rotate(45deg); }
.nav-toggle.open span::after { top: -1px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--wine-950);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,9,14,0.62) 0%, rgba(28,9,14,0.42) 45%, rgba(28,9,14,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 92%);
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
  padding-top: 40px;
}
.hero-content .eyebrow { justify-content: center; color: var(--gold-soft); }
.hero-content .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500;
  margin: 26px 0 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero p.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 640px;
  margin: 0 auto 38px;
  color: rgba(247,242,234,0.92);
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--wine-950);
  font-weight: 500;
}
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost {
  border: 1px solid rgba(247,242,234,0.55);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero .vo-g-mtrnoepw { z-index: 0; }

/* ---------- Serve strip ---------- */
.serve {
  background: var(--wine-950);
  color: var(--cream);
  padding: 34px 0;
  border-top: 1px solid rgba(201,161,90,0.25);
  border-bottom: 1px solid rgba(201,161,90,0.25);
}
.serve-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 44px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.65);
}
.serve-inner strong { color: var(--gold-soft); font-weight: 400; }

/* ---------- Section base ---------- */
.section { padding: 110px 0; }
.section-dark { background: var(--wine-900); color: var(--cream); }
.section-cream { background: var(--cream); color: var(--ink); }
.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin: 20px 0 18px;
}
.section-head p { color: var(--ink-soft); font-size: 18px; }
.section-dark .section-head p { color: rgba(247,242,234,0.75); }

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(36,20,24,0.14);
}
.service {
  padding: 44px 40px 44px 0;
  border-bottom: 1px solid rgba(36,20,24,0.14);
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  align-items: start;
}
.services .service:nth-child(odd) { padding-right: 56px; }
.services .service:nth-child(even) {
  border-left: 1px solid rgba(36,20,24,0.14);
  padding-left: 56px;
  padding-right: 0;
}
.service-num {
  font-family: var(--serif);
  font-size: 52px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.service h3 { font-size: 27px; margin-bottom: 10px; }
.service p { color: var(--ink-soft); font-size: 16px; }
.service p strong { font-weight: 500; color: var(--ink); }

/* ---------- Dessert feature ---------- */
.dessert-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}
.dessert-media { position: relative; }
.dessert-media .photo-main {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.dessert-media .photo-accent {
  position: absolute;
  width: 38%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  right: -26px;
  bottom: -54px;
  border-radius: var(--radius);
  border: 6px solid var(--wine-900);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}
.dessert-copy h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  margin: 20px 0 22px;
}
.dessert-copy p { color: rgba(247,242,234,0.78); margin-bottom: 18px; font-size: 17px; }
.dessert-copy .signature-list {
  list-style: none;
  margin: 28px 0 34px;
  display: grid;
  gap: 12px;
}
.dessert-copy .signature-list li {
  padding-left: 26px;
  position: relative;
  color: rgba(247,242,234,0.88);
  font-size: 16px;
}
.dessert-copy .signature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Pull quote ---------- */
.pull-quote {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-style: italic;
  color: var(--wine-800);
  max-width: 900px;
  margin: 0 auto 26px;
  line-height: 1.35;
}
.pull-quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Gallery section ---------- */
.gallery-section { background: var(--wine-950); padding: 110px 0; }
.gallery-section .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.gallery-section .section-head .eyebrow { justify-content: center; }
.gallery-section .section-head h2 { color: var(--cream); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-copy h2 { font-size: clamp(34px, 4vw, 52px); margin: 20px 0 22px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 17px; }
.about-facts {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about-facts div strong {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  color: var(--wine-700);
  line-height: 1.1;
}
.about-facts div span {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(34px, 4vw, 52px); margin: 20px 0 22px; }
.contact-info p { color: rgba(247,242,234,0.78); font-size: 17px; margin-bottom: 30px; }
.contact-lines { list-style: none; display: grid; gap: 18px; }
.contact-lines li a, .contact-lines li span {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  text-decoration: none;
  color: rgba(247,242,234,0.9);
  font-size: 16px;
}
.contact-lines li a:hover { color: var(--gold-soft); }
.contact-lines .k {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form {
  background: rgba(247,242,234,0.04);
  border: 1px solid rgba(201,161,90,0.3);
  padding: 44px 40px;
  border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(247,242,234,0.06);
  border: 1px solid rgba(247,242,234,0.25);
  color: var(--cream);
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  border-radius: var(--radius);
}
.field select { color: var(--cream); }
.field select option { background: var(--wine-900); color: var(--cream); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247,242,234,0.4); }
.contact-form .btn-gold { width: 100%; border: none; margin-top: 6px; }
.form-status { margin-top: 14px; font-size: 15px; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(247,242,234,0.65);
  margin-bottom: 6px;
}
.consent input { width: auto; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--wine-950);
  color: rgba(247,242,234,0.7);
  padding: 70px 0 36px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(247,242,234,0.12);
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { text-decoration: none; transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-brand { font-family: var(--serif); font-size: 30px; color: var(--cream); }
.footer-brand span { color: var(--gold); font-style: italic; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 13px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .dessert-feature, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .dessert-media { margin-right: 26px; margin-bottom: 30px; }
  .about-photo { max-width: 440px; }
  .services { grid-template-columns: 1fr; }
  .services .service:nth-child(even) { border-left: none; padding-left: 0; }
  .services .service:nth-child(odd) { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(28, 9, 14, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 16px; }
  .section { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dessert-media .photo-accent { display: none; }
  .dessert-media { margin-right: 0; }
  .service { grid-template-columns: 1fr; gap: 8px; padding-left: 0 !important; }
}
