@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --wine:    #5C1A1A;
  --blush:   #E8C9B0;
  --cream:   #FAF6F1;
  --gold:    #B8975A;
  --charcoal:#2A2118;
  --mid:     #7A6A58;
  --sand:    #EDE4D8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(250,246,241,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92,26,26,0.1);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 1.4rem; letter-spacing: 0.1em;
  color: var(--wine); text-decoration: none; white-space: nowrap;
}
.logo em { font-style: italic; color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2.2rem; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--charcoal);
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--wine); }
.nav-links a.active {
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}

.nav-cta {
  background: var(--wine); color: var(--cream) !important;
  padding: 0.55rem 1.3rem; font-size: 0.76rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold) !important; }

/* hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--wine); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* mobile drawer — hidden until JS opens it */
.mobile-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; letter-spacing: 0.06em;
  color: var(--wine); text-decoration: none;
}
.mobile-drawer a:hover { color: var(--gold); }
.mobile-drawer hr {
  width: 40px; border: none; border-top: 1px solid var(--blush);
}
.mobile-drawer .drawer-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--wine); color: var(--cream) !important;
  padding: 0.8rem 2rem; margin-top: 0.5rem;
}

/* ─── PAGE BODY OFFSET ─── */
.page-body { padding-top: 68px; }

/* ─── TYPOGRAPHY ─── */
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; line-height: 1.08; color: var(--wine);
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; line-height: 1.15; color: var(--wine);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}
h2 em, h1 em { font-style: italic; color: var(--charcoal); }
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.4rem; color: var(--wine);
}
p { line-height: 1.85; color: var(--mid); font-size: 0.98rem; }

.label {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.label-center { justify-content: center; }
.label-center::before { display: none; }
.centered { text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 640px; margin-left: auto; margin-right: auto; }

.label::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; text-decoration: none;
  background: var(--wine); color: var(--cream);
  padding: 0.85rem 2.2rem; font-size: 0.76rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 0.2s; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.btn:hover { background: var(--gold); color: var(--cream); }
.btn-outline {
  background: transparent; border: 1px solid var(--wine); color: var(--wine);
}
.btn-outline:hover { background: var(--wine); color: var(--cream); }
.btn-ghost {
  background: transparent; border: 1px solid var(--blush); color: var(--blush);
}
.btn-ghost:hover { background: rgba(232,201,176,0.15); }

/* ─── SECTION WRAPPERS ─── */
.section { padding: 6rem 6rem; }
.section-narrow { padding: 6rem 10rem; }
.section-dark { background: var(--charcoal); }
.section-sand { background: var(--sand); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 36vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 6rem 4rem;
  position: relative; overflow: hidden;
  background: var(--charcoal);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.page-hero-content { position: relative; }
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem); color: var(--cream);
}
.page-hero h1 em { color: var(--blush); }
.page-hero .label { color: var(--gold); }
.page-hero .label-center { justify-content: center; }
.label-center::before { display: none; }
.centered { text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 640px; margin-left: auto; margin-right: auto; }

.label::before { background: var(--gold); }
.page-hero p { color: rgba(250,246,241,0.65); margin-top: 0.8rem; max-width: 50ch; }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 2.5rem 6rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: rgba(250,246,241,0.6); text-decoration: none;
}
.footer-logo em { font-style: italic; color: var(--gold); opacity: 0.7; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,246,241,0.45); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
footer .copy {
  font-size: 0.72rem; color: rgba(250,246,241,0.3); letter-spacing: 0.08em;
}

/* ─── FORMS ─── */
.form-group { display: flex; flex-direction: column; gap: 1rem; }
.form-group input, .form-group textarea, .form-group select {
  border: 1px solid rgba(92,26,26,0.2);
  background: rgba(250,246,241,0.7);
  padding: 0.8rem 1rem; font-family: 'Jost', sans-serif;
  font-size: 0.9rem; color: var(--charcoal);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--wine);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 4rem 1.5rem; }
  .section-narrow { padding: 4rem 1.5rem; }
  .page-hero { padding: 4rem 1.5rem 3rem; min-height: 28vh; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ─── NAV DROPDOWN ─── */
.has-dropdown {
  position: relative;
}
.has-dropdown > a::after {
  content: ' ↓';
  font-size: 0.6em;
  opacity: 0.5;
}
.has-dropdown:hover > a { color: var(--wine); }
.dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid rgba(92,26,26,0.12);
  border-top: 3px solid var(--gold);
  min-width: 230px;
  padding: 0.6rem 0;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: opacity 0.18s, visibility 0.18s;
  /* invisible bridge fills the gap between nav link and dropdown box */
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.dropdown a {
  display: block !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.73rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--charcoal) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.15s, color 0.15s !important;
  border-bottom: none !important;
}
.dropdown a:hover {
  background: var(--sand) !important;
  color: var(--wine) !important;
}
/* mobile drawer deeper dive links */
.drawer-sub {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  width: 100%; padding: 0.3rem 0;
}
.drawer-sub a {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  color: var(--mid) !important;
  padding: 0.2rem 0 !important;
}