:root {
  --cream: #f3f1ed;
  --paper: #faf8f5;
  --ink: #161513;
  --ink-soft: #3a372f;
  --muted: #6f6a60;
  --line: #d9d3c8;
  --shadow: 0 16px 36px rgba(22, 21, 19, 0.07);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}
h1, h2, h3, .display, .brand-script {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
a { color: inherit; }
button { font: inherit; }
.app-shell { max-width: 1040px; margin: 0 auto; padding: 0 16px 56px; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(243, 241, 237, 0.94);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 64px; height: 64px; object-fit: contain; }
.brand-text small {
  display: block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--muted);
}
.brand-script { font-size: 20px; line-height: 1.05; font-style: italic; }
.menu-toggle {
  border: 1px solid var(--ink);
  background: var(--paper);
  min-width: 46px;
  min-height: 42px;
  border-radius: 999px;
  cursor: pointer;
}
.nav {
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 84px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.nav.open { display: grid; }
.nav a, .nav button.nav-link, .drop-title {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 12px 12px;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}
.nav a:hover, .nav button.nav-link:hover { background: var(--cream); }
.nav a.cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  margin-top: 6px;
}
.dropdown { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dropdown-panel { display: none; padding: 0 8px 8px; }
.dropdown.open .dropdown-panel { display: block; }
.dropdown-panel a { font-size: 15px; color: var(--ink-soft); padding-left: 20px; }
.hero, .section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 20px;
  margin: 12px 0;
}
.logo-hero {
  width: min(240px, 70vw);
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}
.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}
.display { font-size: clamp(30px, 7vw, 50px); line-height: 0.98; margin-bottom: 12px; }
.lede { color: var(--ink-soft); max-width: 38em; font-size: 17px; }
.cta-stack { display: grid; gap: 10px; margin-top: 20px; max-width: 420px; }
.btn {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-weight: 600;
  text-align: center;
}
.btn.solid { background: var(--ink); color: var(--cream); }
.btn.full { width: 100%; }
.grid { display: grid; gap: 12px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.card h3 { font-size: 28px; margin: 4px 0 8px; }
.price { font-family: "Cormorant Garamond", serif; font-size: 32px; }
.offer { font-weight: 600; margin: 6px 0 10px; }
.card ul { margin: 8px 0 14px 18px; color: var(--ink-soft); }
.card li { margin: 4px 0; }
.fine { font-size: 13px; color: var(--muted); }
.footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .topbar { position: relative; }
  .nav {
    display: flex;
    position: static;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    align-items: center;
    gap: 4px;
  }
  .nav a, .nav button.nav-link, .drop-title {
    width: auto;
    padding: 8px 10px;
    font-size: 14px;
  }
  .nav a.cta { margin-top: 0; padding: 10px 14px; }
  .dropdown { position: relative; border: 0; }
  .dropdown-panel {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 240px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--shadow);
  }
  .dropdown-panel a { padding-left: 10px; }
  .grid.three { grid-template-columns: repeat(3, 1fr); }
  .grid.two { grid-template-columns: 1fr 1fr; }
  .hero, .section { padding: 36px 34px; }
}
