:root {
  --ink: #080808;
  --soft-ink: #141414;
  --paper: #f7f7f4;
  --white: #fff;
  --muted: #9b9b94;
  --line: rgba(255,255,255,.16);
  --dark-line: rgba(8,8,8,.14);
  --coffee: #9c6a43;
  --coffee-dark: #5a3825;
  --green: #6f8467;
  --max: 1380px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}
img { width: 100%; height: 100%; object-fit: cover; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.65; }
section { position: relative; overflow: hidden; }
section[id] { scroll-margin-top: 92px; }

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: rgba(8,8,8,.72);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { background: rgba(8,8,8,.92); }
.brand { display: grid; gap: 2px; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.brand strong { font-family: Georgia, serif; font-size: 20px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.site-nav a:not(.btn) { opacity: .82; transition: opacity .25s ease, color .25s ease; }
.site-nav a:hover { opacity: 1; color: var(--white); }
.nav-subtle { color: #d8c5b4; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--white);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 750;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); background: #e7ded4; border-color: #e7ded4; }
.btn-small { min-height: 38px; padding: 0 16px; font-size: 13px; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-dark:hover { background: var(--coffee-dark); border-color: var(--coffee-dark); color: var(--white); }

.section-dark { background: var(--ink); color: var(--white); }
.section-light { background: var(--paper); color: var(--ink); }
.eyebrow {
  margin: 0 0 16px;
  color: #c8a480;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--coffee-dark); }
h1, h2, h3 { margin: 0; line-height: .95; letter-spacing: 0; }
h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.4vw, 92px);
  font-weight: 850;
}
h2 { font-size: clamp(38px, 6vw, 82px); font-weight: 820; }
h3 { font-size: clamp(22px, 2.4vw, 34px); }

.hero {
  min-height: 100svh;
  padding: 98px clamp(18px, 4vw, 56px) 58px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.82) 42%, rgba(8,8,8,.28) 100%),
    radial-gradient(circle at 70% 10%, rgba(156,106,67,.24), transparent 35%);
  z-index: -1;
}
.hero-grid {
  max-width: 1380px;
  min-height: calc(100svh - 156px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.hero-lead { margin: 18px 0 0; font-size: clamp(24px, 2.6vw, 36px); color: #efebe6; }
.hero-text { max-width: 660px; color: #c7c2bc; font-size: clamp(17px, 1.5vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.trust-badges span {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: #e7e1dc;
  font-size: 13px;
}
.brand-note {
  display: inline-flex;
  margin-top: 22px;
  color: #d8c5b4;
  border-bottom: 1px solid rgba(216,197,180,.45);
}
.hero-media { position: relative; min-height: 560px; }
.hero-image { margin: 0; position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.14); }
.hero-image-main { inset: 0 0 72px 8%; }
.hero-image-float {
  left: 0;
  bottom: 0;
  width: min(330px, 48%);
  height: 390px;
  box-shadow: 0 30px 70px rgba(0,0,0,.42);
}
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.22);
}
.scroll-indicator::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: -3px;
  top: 0;
  border-radius: 50%;
  background: var(--white);
  animation: scrollDot 1.8s infinite ease;
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 0; } 35% { opacity: 1; } 100% { transform: translateY(44px); opacity: 0; } }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(84px, 11vw, 150px) clamp(18px, 4vw, 32px);
}
.section-copy p, .section-heading p { max-width: 720px; color: #4c4a46; font-size: 18px; }
.experience-panel { position: relative; height: clamp(440px, 58vw, 700px); }
.taste, .events, .gallery, .process, .faq, .why {
  padding: clamp(82px, 10vw, 140px) clamp(18px, 4vw, 48px);
}
.section-heading { max-width: var(--max); margin: 0 auto clamp(38px, 5vw, 70px); }
.taste-cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.image-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.image-card img { transition: transform .7s ease, opacity .7s ease; opacity: .86; }
.image-card:hover img { transform: scale(1.05); opacity: .68; }
.image-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
}
.image-card p { color: #ddd; }

.features { padding: clamp(86px, 10vw, 150px) clamp(18px, 4vw, 48px); }
.features .section-heading p, .booking-intro p, .final-cta p, .about-copy p, .wedding-copy p { color: #c8c3bd; }
.feature-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature-card {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}
.feature-card:hover { background: rgba(255,255,255,.06); transform: translateY(-4px); }
.feature-card span { color: #c8a480; font-weight: 850; }
.feature-card h3 { margin-top: 34px; font-size: 24px; }
.feature-card p { color: #bab5af; }

.event-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 18px;
}
.event-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--ink);
}
.event-card img {
  position: absolute;
  inset: 0;
  opacity: .74;
  transition: transform .7s ease, opacity .7s ease;
}
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.86));
}
.event-card:hover img { transform: scale(1.06); opacity: .58; }
.event-card h3, .event-card p, .event-card a { position: relative; z-index: 1; }
.event-card p { margin: 10px 0 14px; color: #e6e1dd; }
.event-card a { width: fit-content; color: #d8c5b4; border-bottom: 1px solid currentColor; font-weight: 800; }

.audience { padding: clamp(82px, 10vw, 140px) clamp(18px, 4vw, 48px); }
.audience-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 38px;
  align-items: end;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 750;
}
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coffee);
  flex: 0 0 auto;
}
.check-list.light li::before { background: #d8c5b4; }
.ideal-box {
  padding: 34px;
  min-height: 260px;
  color: var(--white);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ideal-box span { color: #d8c5b4; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 850; }
.ideal-box ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.ideal-box li {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 760;
}

.weddings, .about {
  padding: clamp(80px, 9vw, 130px) clamp(18px, 4vw, 56px);
}
.split-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}
.wedding-media, .about-media { height: clamp(420px, 55vw, 720px); }
.wedding-copy, .about-copy { max-width: 620px; }

.why-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}
.why-grid p {
  min-height: 220px;
  margin: 0;
  padding: 24px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.25;
  display: grid;
  place-items: center;
  text-align: center;
}

.steps {
  max-width: var(--max);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  position: relative;
  padding: 32px;
  min-height: 260px;
  background: var(--white);
  border: 1px solid var(--dark-line);
}
.step span { font-size: 72px; font-weight: 850; color: transparent; -webkit-text-stroke: 1px var(--coffee); }
.step h3 { margin-top: 26px; font-size: 25px; }
.center { text-align: center; }

.booking { padding: clamp(86px, 10vw, 150px) clamp(18px, 4vw, 48px); }
.booking-intro { max-width: var(--max); margin: 0 auto; }
.booking-intro { margin-bottom: 36px; }
.booking-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}
.request-form {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
}
.request-form label {
  display: grid;
  gap: 8px;
  color: #dcd6d0;
  font-size: 13px;
  font-weight: 750;
}
.request-form input, .request-form select, .request-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  padding: 14px 13px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  font: inherit;
}
.request-form input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}
.request-form input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}
.request-form input[type="date"]:hover,
.request-form input[type="date"]:focus {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.11);
}
.request-form textarea { resize: vertical; }
.request-form .full { grid-column: 1 / -1; }
.consent-label {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  font-weight: 650;
  line-height: 1.5;
}
.consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: #c8a480;
}
.consent-label a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.availability-note {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.availability-note span {
  color: #c8a480;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.availability-note p {
  margin: 0;
  color: #dcd6d0;
}
.form-note { grid-column: 1 / -1; margin: 0; color: #bcb6b0; font-size: 14px; }
.form-note.success { color: #e7ded4; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(200,164,128,.16), transparent 34%),
    rgba(0,0,0,.82);
  backdrop-filter: blur(14px);
}
.modal[hidden] { display: none; }
.modal-card {
  position: relative;
  width: min(100%, 520px);
  overflow: hidden;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%),
    #0b0b0b;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 36px 100px rgba(0,0,0,.62);
}
.modal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #c8a480;
}
.modal-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200,164,128,.8);
  color: #c8a480;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 850;
}
.modal-card h2 {
  margin: 10px 0 12px;
  max-width: 420px;
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: 0;
  line-height: .92;
}
.modal-card p {
  max-width: 430px;
}
.modal-card p:not(.eyebrow) {
  margin: 0 0 12px;
  color: #dcd6d0;
  font-size: 17px;
  line-height: 1.55;
}
.modal-card p:last-child {
  margin-bottom: 0;
  color: #f2ece5;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.24);
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 3;
}
.gallery-grid img { transition: transform .7s ease, opacity .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); opacity: .82; }
.text-link { font-weight: 850; border-bottom: 1px solid currentColor; }

.about .address { color: #d8c5b4; font-weight: 800; }
.about-media { order: 2; }

.faq-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--dark-line);
}
.faq-list details { border-bottom: 1px solid var(--dark-line); }
.faq-list summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 20px;
  font-weight: 850;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list p { margin: 0 0 24px; color: #555; }

.final-cta {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: clamp(86px, 10vw, 150px) clamp(18px, 4vw, 48px);
  text-align: center;
}
.final-cta div { max-width: 920px; }
.final-cta .hero-actions { justify-content: center; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 48px);
  color: #d7d2cc;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.12);
}
.site-footer div { display: grid; gap: 8px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: #d7d2cc; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    gap: 7px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.22);
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; background: var(--white); }
  .site-nav {
    position: fixed;
    inset: 75px 14px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(8,8,8,.96);
    border: 1px solid rgba(255,255,255,.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px; }
  .hero-grid, .split-section, .audience-grid, .split-inner, .booking-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 116px; }
  .hero-media { min-height: 560px; }
  .hero-image-main { inset: 0 0 110px 0; }
  .taste-cards, .feature-grid, .steps { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-media { order: 0; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .brand span { font-size: 10px; }
  .brand strong { font-size: 17px; }
  h1 { font-size: clamp(46px, 15vw, 72px); }
  h2 { font-size: clamp(34px, 11vw, 52px); }
  .hero-media { min-height: 470px; }
  .hero-image-float { width: 58%; height: 260px; }
  .event-grid, .gallery-grid, .why-grid, .request-form { grid-template-columns: 1fr; }
  .event-grid { grid-auto-rows: 330px; }
  .why-grid p { min-height: 150px; }
  .site-footer nav { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
