:root {
  --bg: #faf6ef;
  --surface: #ffffff;
  --ink: #2a1d12;
  --ink-soft: #5b4a3b;
  --line: #e7dccb;
  --amber: #c8801a;
  --amber-dark: #9a5f0c;
  --stout: #1e140c;
  --radius: 14px;
  --max: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Oswald", "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed", var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--amber-dark); }
a:hover { color: var(--amber); }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--stout);
  color: #fff;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.25rem; letter-spacing: .04em; text-transform: uppercase;
}
.brand:hover { color: #fff; }
.brand img { height: 40px; width: auto; }
.brand .brand-mark {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--amber); color: var(--stout); font-size: .95rem;
}
.brand small { display: block; font-size: .7rem; font-weight: 400; letter-spacing: .08em; opacity: .75; }

.nav-toggle { display: none; }
.nav-btn {
  display: none; cursor: pointer; padding: 10px; margin-right: -10px;
  color: #fff; background: none; border: 0;
}
.nav-btn span, .nav-btn span::before, .nav-btn span::after {
  display: block; width: 24px; height: 2px; background: #fff; position: relative; content: "";
}
.nav-btn span::before { position: absolute; top: -7px; }
.nav-btn span::after { position: absolute; top: 7px; }

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.site-nav a {
  display: block; padding: 8px 12px; border-radius: 8px;
  color: #f1e6d6; text-decoration: none; font-weight: 500; font-size: .95rem;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(255,255,255,.1); color: #fff; }
.site-nav .cta a { background: var(--amber); color: var(--stout); font-weight: 700; }
.site-nav .cta a:hover { background: #e0962b; color: var(--stout); }

@media (max-width: 860px) {
  .nav-btn { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 64px;
    background: var(--stout); border-top: 1px solid rgba(255,255,255,.08);
    display: none;
  }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav ul { flex-direction: column; padding: 8px 12px 16px; }
  .site-nav a { padding: 12px; font-size: 1.05rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background: var(--stout) center/cover no-repeat;
  min-height: 460px; display: flex; align-items: flex-end;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,20,12,.15) 0%, rgba(30,20,12,.85) 100%);
}
.hero .wrap { position: relative; padding-top: 80px; padding-bottom: 56px; width: 100%; }
.hero p.lead { font-size: 1.2rem; max-width: 640px; color: #f5ebdc; }
.hero.small { min-height: 300px; }
.eyebrow {
  display: inline-block; margin-bottom: 12px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber);
}
.hero .eyebrow { color: #f2b75b; }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  background: var(--amber); color: var(--stout); text-decoration: none;
  font-weight: 700; border: 2px solid var(--amber);
}
.btn:hover { background: #e0962b; border-color: #e0962b; color: var(--stout); }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn.ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 680px; margin-bottom: 32px; }
.section-head p { color: var(--ink-soft); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,29,18,.12); color: var(--ink); }
.card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; background: var(--line); }
.card .body { padding: 20px 22px 24px; }
.card .body p { color: var(--ink-soft); margin: 0 0 12px; }
.card .more { color: var(--amber-dark); font-weight: 700; }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--line); }
.split.reverse > :first-child { order: 2; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse > :first-child { order: 0; }
}

.prose { max-width: 720px; }
.prose p { font-size: 1.08rem; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; background: var(--line); }

.checklist { list-style: none; padding: 0; margin: 0 0 1.5em; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: 12px; }
.checklist li::before {
  content: "🍺"; position: absolute; left: 0; top: 0;
}

.band {
  background: var(--stout); color: #f5ebdc; border-radius: var(--radius);
  padding: 40px; display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
}
.band h2 { color: #fff; margin: 0 0 .25em; }
.band p { margin: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.contact-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.contact-item .label {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
}
.contact-item a, .contact-item strong { font-size: 1.1rem; font-weight: 700; word-break: break-word; }

.legal h2 { font-size: 1.35rem; margin-top: 1.8em; }
.legal ul { padding-left: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--stout); color: #cdbfae; padding: 40px 0 28px; font-size: .95rem; }
.site-footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.site-footer h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a { color: #f1e6d6; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer .bottom {
  grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px; font-size: .85rem; color: #9d8e7d;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
}
@media (max-width: 760px) { .site-footer .wrap { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 600px) { .band { padding: 28px 24px; } section { padding: 48px 0; } }
.band-amber { background: var(--amber); color: var(--stout); }
.band-amber h2 { color: var(--stout); }
.btn.dark { background: var(--stout); border-color: var(--stout); color: #fff; }
.btn.dark:hover { background: #3a2a1c; border-color: #3a2a1c; color: #fff; }
.btn.small { padding: 8px 16px; font-size: .9rem; }
.cf-box { background: var(--surface); border: 2px dashed var(--amber); border-radius: var(--radius); padding: 20px 22px; }
.cf-box .label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.cf-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.cf { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 1.6rem; letter-spacing: .08em; }
.steps { padding-left: 1.3em; margin: 0 0 24px; }
.steps li { margin-bottom: 10px; }
