:root {
  --ink: #201613;
  --cream: #f5eee3;
  --paper: #fffaf2;
  --line: rgba(32, 22, 19, .14);
  --green: #142820;
  --wine: #8f2f27;
  --wine-hover: #a0362d;
  --gold: #d7a64e;
  --cream-text: #fff8ec;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
}

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

/* Topbar */
.topbar {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 10;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(16, 25, 20, .82);
  color: var(--cream-text);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.mark {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.brand strong {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .82;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}

nav a:not(.pill):hover { color: var(--gold); }

/* Buttons */
.pill,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.pill,
.primary {
  color: var(--cream-text);
  background: var(--wine);
  border: 1px solid var(--wine);
}

.secondary {
  color: var(--cream-text);
  background: transparent;
  border: 1px solid rgba(255, 248, 236, .72);
}

.pill:hover,
.primary:hover {
  background: var(--wine-hover);
  border-color: var(--wine-hover);
}

.secondary:hover {
  background: rgba(255, 248, 236, .1);
  border-color: var(--cream-text);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 130px clamp(18px, 4vw, 74px) 78px;
  color: var(--cream-text);
  background: #101914;
}

.hero img,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center top;
}

.shade {
  background:
    linear-gradient(90deg, rgba(14, 20, 16, .84), rgba(14, 20, 16, .5) 45%, rgba(14, 20, 16, .12)),
    linear-gradient(0deg, rgba(14, 20, 16, .72), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 11px;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  font-size: clamp(32px, 4.2vw, 58px);
  max-width: 640px;
}

h2 {
  font-size: clamp(26px, 3vw, 40px);
  max-width: 660px;
}

h3 { font-size: 22px; }

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 248, 236, .9);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Quick contact bar */
.quick {
  position: sticky;
  top: 82px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #1d100f;
  color: var(--cream-text);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.quick a {
  min-height: 54px;
  display: grid;
  place-items: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  border-right: 1px solid rgba(255, 255, 255, .12);
  transition: background .2s ease, color .2s ease;
}

.quick a:last-child { border-right: 0; }
.quick a:hover { background: rgba(255, 255, 255, .06); color: var(--gold); }

/* Section padding */
.intro,
.menu,
.info,
footer {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 120px);
}

.intro { max-width: 920px; }
.intro .eyebrow { margin-bottom: 14px; }
.intro h2 { margin-bottom: 22px; }

.intro p:not(.eyebrow),
.info > div p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(32, 22, 19, .76);
}

/* Menu */
.menu { background: var(--paper); }
.menu > .eyebrow { margin-bottom: 14px; }
.menu > h2 { max-width: 720px; margin-bottom: 40px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

article {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(32, 22, 19, .08);
}

article img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

article > div { padding: 24px; }

article span,
aside > span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

article h3 { margin-bottom: 8px; }

article p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(32, 22, 19, .68);
}

/* Info */
.info {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 48px;
  align-items: center;
  background: var(--green);
  color: var(--cream-text);
}

.info > div .eyebrow { margin-bottom: 14px; }
.info > div h2 { margin-bottom: 22px; }
.info > div p { color: rgba(255, 248, 236, .82); }

aside {
  border: 1px solid rgba(255, 248, 236, .22);
  border-radius: 10px;
  padding: 30px;
  background: rgba(255, 255, 255, .05);
}

aside h3 { margin-bottom: 6px; }

aside > p {
  margin: 0 0 22px;
  color: rgba(255, 248, 236, .78);
  font-size: 15px;
  line-height: 1.6;
}

aside .primary,
aside .secondary {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
footer {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: baseline;
  background: #0e1713;
  color: rgba(255, 248, 236, .74);
  font-size: 13px;
  letter-spacing: 0.04em;
}

footer strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  color: var(--cream-text);
  font-size: 15px;
}

/* Mobile */
@media (max-width: 760px) {
  .topbar {
    height: 72px;
    padding: 0 14px;
  }
  .brand { gap: 10px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 9px; letter-spacing: 0.12em; }
  .mark { width: 40px; height: 40px; font-size: 12px; }
  nav a:not(.pill) { display: none; }
  nav { gap: 0; }
  .pill { min-height: 40px; padding: 0 16px; font-size: 11px; }

  .hero {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .hero img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .shade {
    display: none;
  }

  .hero-copy {
    width: 100%;
    padding: 30px 18px 34px;
    background: #101914;
  }

  h1 { font-size: 31px; line-height: 1.2; }
  h2 { font-size: 24px; line-height: 1.2; }
  h3 { font-size: 20px; }

  .hero-copy p:not(.eyebrow),
  .intro p:not(.eyebrow),
  .info > div p { font-size: 15px; line-height: 1.72; }

  .actions { gap: 10px; }
  .actions a { flex: 1 1 100%; }

  .quick { top: 72px; }
  .quick a {
    font-size: 11px;
    letter-spacing: 0.1em;
    min-height: 48px;
    padding: 0 8px;
    text-align: center;
  }

  .intro,
  .menu,
  .info,
  footer {
    padding: 48px 18px;
  }

  .menu > h2 { margin-bottom: 26px; }

  .cards,
  .info { grid-template-columns: 1fr; }
  .cards { gap: 16px; }
  .info { gap: 28px; }

  article img { height: 220px; }
  article > div { padding: 20px; }

  aside { padding: 24px; }

  footer { padding: 32px 18px; }
  footer strong { font-size: 14px; }
}
