:root {
  --ink: #241611;
  --ink-soft: rgba(36, 22, 17, 0.78);
  --ink-muted: rgba(36, 22, 17, 0.6);
  --cream: #f8f1e5;
  --paper: #fff9ef;
  --line: rgba(36, 22, 17, 0.12);
  --green: #153428;
  --wine: #9b3326;
  --wine-hover: #7f2820;
  --gold: #d0a050;
  --light: #fff8ec;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ---------- Header ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 58px);
  background: rgba(25, 16, 12, 0.82);
  color: var(--light);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

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

.mark {
  width: 44px;
  height: 44px;
  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;
  flex-shrink: 0;
}

.wordmark {
  min-width: 0;
}

.wordmark strong {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

nav a {
  transition: color 0.2s ease;
}

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-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

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

.pill:hover,
.primary:hover {
  background: var(--wine-hover);
  transform: translateY(-1px);
}

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

.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 130px clamp(18px, 5vw, 74px) 72px;
  color: var(--light);
  background: #160f0c;
}

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

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

.shade {
  background:
    linear-gradient(90deg, rgba(16, 10, 8, 0.82), rgba(16, 10, 8, 0.5) 55%, rgba(16, 10, 8, 0.15)),
    linear-gradient(0deg, rgba(16, 10, 8, 0.7), transparent 55%);
}

.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;
  font-size: 11px;
  letter-spacing: 0.24em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

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

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

h3 {
  font-size: 22px;
}

.lede {
  max-width: 580px;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 248, 236, 0.88);
}

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

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

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

.quick a:last-child {
  border-right: none;
}

.quick a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
}

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

.intro {
  max-width: 940px;
}

.intro p:not(.eyebrow),
.info p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}

.intro h2 {
  margin-bottom: 22px;
}

/* ---------- Menu ---------- */
.menu {
  background: var(--paper);
}

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

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

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

article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(36, 22, 17, 0.09);
}

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

article > div {
  padding: 24px 22px 26px;
}

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

article h3 {
  margin-bottom: 10px;
}

article p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ---------- Info ---------- */
.info {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 44px;
  align-items: center;
  background: var(--green);
  color: var(--light);
}

.info h2 {
  margin-bottom: 20px;
}

.info p {
  color: rgba(255, 248, 236, 0.82);
}

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

aside h3 {
  margin-bottom: 6px;
}

aside p {
  margin: 0 0 22px;
  color: rgba(255, 248, 236, 0.75);
  font-size: 15px;
}

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

/* ---------- Footer ---------- */
footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  background: #101d17;
  color: rgba(255, 248, 236, 0.68);
  font-size: 13px;
  padding-block: 34px;
}

footer strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 248, 236, 0.9);
}

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

  .hero {
    min-height: 84vh;
    padding: 108px 20px 52px;
  }
  .shade {
    background: linear-gradient(0deg, rgba(16, 10, 8, 0.86), rgba(16, 10, 8, 0.28));
  }

  h1 {
    font-size: 31px;
    line-height: 1.18;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  .lede,
  .intro p:not(.eyebrow),
  .info p {
    font-size: 15px;
    line-height: 1.7;
  }

  .actions {
    width: 100%;
  }
  .actions a {
    flex: 1 1 100%;
  }

  .quick {
    top: 68px;
  }
  .quick a {
    min-height: 48px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

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

  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .info {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  article img {
    height: 240px;
  }
  aside {
    padding: 24px;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 10px;
  }
  .wordmark strong {
    font-size: 14px;
  }
  .pill {
    padding: 0 14px;
  }
}
