:root {
  --cream: #fffaf0;
  --paper: #ffffff;
  --gold: #c47b16;
  --gold-dark: #9a5d0a;
  --navy: #101d33;
  --ink: #1c2433;
  --muted: #667085;
  --line: #eadfcf;
  --shadow: 0 24px 80px rgba(16, 29, 51, 0.12);
  --radius: 8px;
  --display: "DM Serif Display", Georgia, serif;
  --body: "Work Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.brand strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
}

nav a:hover {
  background: #f4eadb;
  color: var(--navy);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.header-call {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
}

.btn {
  border: 1px solid transparent;
  padding: 12px 20px;
}

.btn.primary {
  background: var(--gold);
  color: #fff;
}

.btn.primary:hover {
  background: var(--gold-dark);
}

.btn.secondary {
  background: var(--paper);
  border-color: var(--line);
  color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  max-width: 760px;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
}

h3 {
  font-size: 27px;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 620px;
}

.actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-card div {
  display: grid;
  gap: 2px;
  padding: 22px;
  background: var(--navy);
  color: #fff;
}

.hero-card span {
  color: #f4c46d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  font-size: 22px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.proof article {
  display: grid;
  gap: 4px;
  min-height: 120px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.proof article:last-child {
  border-right: 0;
}

.proof strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

.proof span {
  color: var(--muted);
  font-weight: 700;
}

.section,
.photo-band,
footer {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.section-head {
  max-width: 760px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.menu-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.menu-grid p,
.photo-copy p,
.visit-card p {
  color: var(--muted);
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--navy);
  color: #fff;
}

.photo-band h2 {
  color: #fff;
}

.photo-band .eyebrow {
  color: #f4c46d;
}

.photo-copy p {
  color: #ccd5e4;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: var(--radius);
  object-fit: cover;
}

.photo-grid .wide {
  grid-row: span 2;
  min-height: 454px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.visit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 36px);
}

.visit-card a:not(.btn) {
  color: var(--gold-dark);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--gold-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .photo-band,
  .visit {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: stretch;
    display: grid;
  }

  nav {
    overflow-x: auto;
  }

  .header-call {
    justify-self: start;
  }

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

@media (max-width: 620px) {
  .brand strong {
    font-size: 20px;
  }

  h1 {
    font-size: 43px;
  }

  .proof,
  .menu-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .proof article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .photo-grid .wide {
    grid-row: auto;
    min-height: 260px;
  }

  footer {
    flex-direction: column;
  }
}
