:root {
  --bg: #f6f1e7;
  --bg-alt: #efe8da;
  --surface: #fffdf8;
  --ink: #22211f;
  --ink-soft: #55514a;
  --line: #d9d0bf;
  --dark: #181716;
  --dark-2: #2a2724;
  --on-dark: #f3ece0;
  --on-dark-soft: #d3c9b8;
  --accent: #a88c64;
  --accent-strong: #c7ab80;
  --rust: #a33a2a;
  --focus: #1f5fbf;
  --error: #a3261b;
  --error-bg: #fbeae7;
  --success: #2d5a3a;
  --success-bg: #e8f1e9;
  --radius: 10px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: inherit; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 16px; }
.narrow { max-width: 680px; }

.visually-hidden, .trap {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 10;
  background: var(--surface); color: var(--ink); padding: 10px 14px; border-radius: 6px;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header { background: var(--dark); color: var(--on-dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 56px; }
.brand { margin: 0; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; line-height: 1.2; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.brand-sub { display: block; font-family: var(--sans); font-size: .78rem; font-weight: 400; color: var(--on-dark-soft); letter-spacing: .02em; text-transform: none; }
.header-call {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 12px;
  border: 1px solid rgba(246, 241, 231, .4); border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: .95rem; white-space: nowrap;
}
.header-call:hover { background: var(--dark-2); }

/* Hero */
.logos { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.logo-gw { width: 136px; height: 136px; flex: none; }
.venue { margin: 0; display: grid; gap: 6px; }
.venue figcaption { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-soft); }
.logo-ly { width: 140px; height: auto; border-radius: 8px; border: 1px solid rgba(168, 140, 100, .45); }
.byline { font-size: 1.05rem; color: var(--on-dark); margin-bottom: 1em; }

.hero { background: var(--dark); color: var(--on-dark); padding: 18px 0 36px; border-top: 1px solid rgba(246, 241, 231, .12); }
.hero h1 { font-size: clamp(1.95rem, 1.3rem + 3vw, 3.25rem); max-width: 20ch; margin-bottom: .3em; }
.lead { font-size: 1.1rem; color: var(--on-dark-soft); max-width: 40rem; margin-bottom: 1.1em; }
.facts { list-style: none; margin: 0 0 1.3em; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.facts li { padding-left: 14px; border-left: 3px solid var(--accent); line-height: 1.35; }
.facts strong { display: block; font-size: 1.05rem; }
.facts span { color: var(--on-dark-soft); font-size: .95rem; }
.actions { display: grid; gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  min-height: 50px; padding: 12px 22px; border-radius: var(--radius);
  font: inherit; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: background-color .15s, color .15s;
}
.btn-light { background: var(--on-dark); color: var(--dark); }
.btn-light:hover { background: #fff; }
.btn-outline { border-color: rgba(246, 241, 231, .6); color: var(--on-dark); background: transparent; }
.btn-outline:hover { background: var(--dark-2); }
.btn-dark { background: var(--dark); color: var(--on-dark); }
.btn-dark:hover { background: #000; }
.btn-ghost { border-color: var(--dark); color: var(--dark); background: transparent; }
.btn-ghost:hover { background: var(--bg-alt); }
.btn[disabled] { opacity: .65; cursor: progress; }

/* Sections */
.section { padding: 48px 0; }
.section-alt { background: var(--bg-alt); }
.section-intro { color: var(--ink-soft); max-width: 42rem; }
.note { color: var(--ink-soft); font-size: .98rem; max-width: 42rem; margin-top: 1.25em; }

/* Photos */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.gallery figure { margin: 0; }
.gallery img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); background: var(--bg-alt); }

/* Menu */
.menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.menu-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.menu-item h3 { margin-bottom: .2em; }
.menu-item p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.price { margin-bottom: .5em; color: var(--ink-soft); }
.amount { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-right: 2px; }

/* Steps */
.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; display: grid; gap: 16px; max-width: 44rem; }
.steps li { counter-increment: step; position: relative; padding-left: 48px; min-height: 34px; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0; width: 34px; height: 34px;
  border-radius: 50%; background: var(--dark); color: var(--on-dark);
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
}
.steps strong { display: block; }

/* Find us */
.find { display: grid; gap: 20px; }
address { font-style: normal; margin-bottom: 1em; font-size: 1.1rem; }
.find-links { display: grid; gap: 10px; align-content: start; }

/* Form */
.form { display: grid; gap: 22px; }
.required-hint, .small { font-size: .92rem; color: var(--ink-soft); margin: 0; }
fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 16px; min-width: 0; }
legend { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; padding: 0; margin-bottom: 10px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; gap: 16px; }
label { font-weight: 600; }
.optional { font-weight: 400; color: var(--ink-soft); }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
input[type="time"], input[type="number"], textarea {
  width: 100%; min-height: 50px; padding: 11px 12px;
  font: inherit; color: var(--ink); background: var(--surface);
  border: 1.5px solid #8f877a; border-radius: 8px;
  -webkit-appearance: none; appearance: none;
}
input[type="date"], input[type="time"] { display: block; }
textarea { resize: vertical; min-height: 120px; }
input:focus-visible, textarea:focus-visible { border-color: var(--focus); outline-offset: 1px; }
[aria-invalid="true"] { border-color: var(--error) !important; }
.hint { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.error { margin: 0; color: var(--error); font-weight: 600; font-size: .95rem; }
.error::before { content: "! "; }

.choices { gap: 8px; }
.choice {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 8px;
  font-weight: 500; cursor: pointer;
}
.choice:has(input:checked) { border-color: var(--dark); box-shadow: inset 0 0 0 1px var(--dark); }
.choice input { width: 22px; height: 22px; margin: 2px 0 0; flex: none; accent-color: var(--dark); }
.choice small { display: block; color: var(--ink-soft); font-size: .9rem; font-weight: 400; }
.choices[aria-invalid="true"] .choice { border-color: var(--error); }

.privacy { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.privacy p { font-size: .95rem; color: var(--ink-soft); }
.consent, .consent:has(input:checked) { border: 0; padding: 0; background: none; box-shadow: none; }

.turnstile { min-height: 65px; }
.btn-submit { width: 100%; font-size: 1.1rem; }

.alert { border-radius: var(--radius); padding: 16px 18px; }
.alert p:last-child { margin-bottom: 0; }
.alert-error { background: var(--error-bg); border: 1px solid #e3b4ad; color: #5e160f; }
.alert-success { background: var(--success-bg); border: 1px solid #b7d1bb; color: var(--success); }
.alert-success h3 { color: var(--success); }
.alert-actions { display: grid; gap: 10px; margin-top: 12px; }

/* Footer */
.site-footer { background: var(--dark); color: var(--on-dark-soft); padding: 28px 0; font-size: .95rem; }
.site-footer strong { color: var(--on-dark); }
.site-footer p:last-child { margin-bottom: 0; }

/* Tablet and up */
@media (min-width: 600px) {
  .actions, .alert-actions, .find-links { grid-template-columns: repeat(2, max-content); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .menu { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: repeat(2, max-content); gap: 12px 32px; }
}

@media (min-width: 900px) {
  .hero { padding: 64px 0 72px; }
  .section { padding: 72px 0; }
  .menu { grid-template-columns: repeat(4, 1fr); }
  .find { grid-template-columns: 1fr auto; align-items: center; }
  .hero h1 { max-width: 22ch; }
  .logo-gw { width: 160px; height: 160px; }
  .logo-ly { width: 190px; }
  .logos { gap: 28px; margin-bottom: 22px; }
}

@media (max-width: 479px) {
  .brand-sub { display: none; }
}

@media (max-width: 360px) {
  .logo-gw { width: 112px; height: 112px; }
  .logo-ly { width: 120px; }
  .header-call span { font-size: .9rem; }
}
