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

:root {
  --black: #0a0908;
  --deep: #12100e;
  --charcoal: #1c1916;
  --gold: #c9a46c;
  --pale: #e0c48a;
  --cream: #f3ede3;
  --white: #faf6f0;
  --muted: #8c8074;
  --line: rgba(201, 164, 108, 0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 40px;
  background: rgba(10, 9, 8, 0.92);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.22em;
  font-size: 22px;
  text-decoration: none;
  color: var(--white);
}

.logo span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.wrap,
.hero-inner {
  width: min(1100px, calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
}

.wrap { padding: 72px 0 90px; }

.kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.04em;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--white);
}

.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--muted);
  max-width: 34em;
  margin: 22px 0 36px;
}

p { color: var(--muted); margin-bottom: 16px; }
.narrow { max-width: 640px; }

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 80px 28px 60px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, #1f160c 0%, transparent 55%), var(--black);
}

.hero-inner { max-width: 1100px; margin: 0 auto; }

.btns { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 14px 26px;
}

.btn-gold { background: var(--gold); color: var(--black); }
.btn-line { border: 1px solid rgba(201,164,108,0.45); color: var(--cream); }

.notice {
  border: 1px solid var(--line);
  background: var(--deep);
  padding: 22px 24px;
  margin: 36px 0;
  max-width: 720px;
}

.notice strong { color: var(--white); font-weight: 400; }

.grid-4, .grid-2, .grid-3 {
  display: grid;
  gap: 20px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  nav { padding: 16px 18px; }
}

@media (max-width: 620px) {
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

.card {
  background: var(--deep);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  display: block;
}

.card img { width: 100%; height: 260px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body p { font-size: 14px; margin-bottom: 0; }
.format {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.recipe {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.recipe ul { margin: 8px 0 0 18px; color: var(--muted); }

form { display: grid; gap: 12px; max-width: 480px; }
label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
input, select, textarea {
  background: var(--deep);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 120px; }
button.btn { border: 0; cursor: pointer; justify-self: start; }

footer {
  border-top: 1px solid var(--line);
  padding: 48px 28px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.2em;
  font-size: 24px;
  color: var(--white);
}

.footer-meta { font-size: 13px; color: var(--muted); margin: 10px 0 22px; }

.footer-links { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; list-style: none; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; letter-spacing: 0.08em; }
.legal { font-size: 12px; color: rgba(140,128,116,0.65); margin-top: 22px; }

.recipe-photo {
  width: 100%;
  max-width: 520px;
  height: 340px;
  object-fit: cover;
  object-position: center;
  margin: 14px 0 16px;
  border: 1px solid var(--line);
  background: var(--charcoal);
  display: block;
}

.drinks-preview .card img {
  height: 320px;
  background: var(--charcoal);
}
