:root {
  --cream: #f5f1e8;
  --stone: #ebe6dc;
  --paper: #fbf9f4;
  --ink: #3b3a33;
  --muted: #6d6a5f;
  --gold: #a88a52;
  --blush: #e7b9bb;
  --blush-ink: #5b3437;
  --sage: #8f9e82;
  --sage-dark: #74836a;
  --line: #d9d2c3;
  --radius: 18px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 17px/1.65 var(--sans);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
h2 { font-size: clamp(2rem, 6vw, 2.8rem); }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.small { font-size: .92rem; color: var(--muted); }
.eyebrow {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6em; font-weight: 500;
}

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Top bar */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; letter-spacing: .04em; }
.brand img { width: 36px; height: 36px; border-radius: 50%; }
.nav { display: flex; gap: 4px; }
.nav a {
  text-decoration: none; font-size: .92rem; padding: 10px 10px; border-radius: 10px;
  color: var(--ink);
}
.nav a:hover { background: var(--stone); }
@media (max-width: 420px) {
  .brand span { display: none; }
  .nav a { padding: 10px 8px; font-size: .9rem; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  font: 500 1rem var(--sans); letter-spacing: .02em; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-blush { background: var(--blush); color: var(--blush-ink); min-width: 220px; }
.btn-blush:hover { background: #dfa9ac; }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-dark); }
.btn-outline { border-color: var(--sage); color: var(--sage-dark); background: transparent; }
.btn-outline:hover { background: var(--paper); }
.btn.full { width: 100%; border-radius: 12px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row .btn { flex: 1 1 200px; }

/* Hero */
.hero { background: var(--stone); padding: 36px 0 56px; border-bottom: 1px solid var(--line); }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-logo { width: min(82vw, 420px); border-radius: 50%; box-shadow: 0 18px 50px -24px rgba(90, 70, 40, .45); }
.tagline {
  font-family: var(--serif); font-size: clamp(1.05rem, 4vw, 1.35rem);
  letter-spacing: .16em; text-transform: uppercase; margin: 26px 0 26px; max-width: 30ch;
}
.quick { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(3, auto); gap: 6px; }
.quick a {
  display: flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 14px;
  text-decoration: none; font-size: .95rem; border-radius: 999px;
}
.quick a:hover { background: var(--paper); }
.quick span { color: var(--gold); }
@media (max-width: 560px) {
  .quick { grid-template-columns: 1fr; width: 100%; max-width: 320px; }
  .quick a { justify-content: center; border: 1px solid var(--line); background: var(--paper); }
}

/* Visit */
.visit { padding: 64px 0; }
.visit-grid { display: grid; gap: 32px; align-items: center; }
.booth { margin: 0; }
.booth img { border-radius: var(--radius); width: 100%; aspect-ratio: 800 / 951; object-fit: cover; box-shadow: 0 20px 50px -30px rgba(60, 50, 30, .6); }
address { font-style: normal; font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; margin: 0 0 1em; padding-left: 16px; border-left: 2px solid var(--gold); }
@media (min-width: 820px) {
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* FAQ */
.faq { background: var(--paper); padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-group { font-size: 1.5rem; margin: 36px 0 10px; color: var(--sage-dark); }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; cursor: pointer; padding: 18px 36px 18px 0; position: relative;
  font-weight: 500; font-size: 1.05rem; min-height: 44px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold); transition: transform .2s ease;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details p { color: var(--muted); padding-bottom: 8px; }

/* Contact */
.contact { padding: 64px 0 72px; }
.contact-grid { display: grid; gap: 36px; }
.contact-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list .label { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.contact-list a { font-size: 1.1rem; word-break: break-word; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; display: grid; gap: 16px; }
label { display: grid; gap: 6px; font-size: .9rem; font-weight: 500; }
input, textarea {
  font: 400 16px/1.4 var(--sans); color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 14px; width: 100%;
}
input:focus, textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sage) 25%, transparent); }
textarea { resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin: 0; text-align: center; }
@media (min-width: 820px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
  .card { padding: 32px; }
}

/* Footer */
.footer { background: var(--stone); text-align: center; padding: 32px 0 calc(32px + env(safe-area-inset-bottom)); font-size: .88rem; color: var(--muted); border-top: 1px solid var(--line); }
.footer p { margin: 8px 0 0; }
.ig { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; color: var(--ink); }
.ig:hover { background: var(--paper); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
