:root {
  --bg: #f4efe3;
  --bg-soft: #fffaf1;
  --card: rgba(255, 252, 245, 0.88);
  --card-strong: rgba(11, 44, 79, 0.94);
  --ink: #1d2c39;
  --muted: #617281;
  --line: rgba(20, 44, 72, 0.12);
  --navy: #0c3b68;
  --navy-deep: #082742;
  --gold: #d9a441;
  --coral: #cc6441;
  --shadow: 0 28px 70px rgba(7, 28, 48, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.22), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(41, 122, 177, 0.18), transparent 24%),
    linear-gradient(180deg, #fff8eb 0%, #f4ecde 34%, #edf3f6 100%);
}

h1,
h2,
h3,
.brand {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

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

figure {
  margin: 0;
}

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 18px auto 40px;
}

.hero,
.feature-card,
.compact-card,
.menu-intro,
.menu-card,
.gallery-card,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(9, 42, 72, 0.95), rgba(15, 76, 124, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  color: #f5f9fc;
}

.hero,
.feature-card,
.compact-card,
.menu-intro,
.menu-card,
.gallery-card,
.site-footer {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 25%;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 60%);
  pointer-events: none;
}

.topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "Avenir Next Condensed", "Gill Sans", "Trebuchet MS", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.topbar-links a {
  opacity: 0.92;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 10px 0 14px;
  max-width: 760px;
}

.eyebrow,
.section-tag {
  margin: 0 0 12px;
  font-family: "Avenir Next Condensed", "Gill Sans", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.eyebrow {
  color: #d9e5ef;
}

.section-tag {
  color: var(--coral);
}

.hero h1,
.feature-card h2,
.menu-intro h2,
.section-heading h2,
.compact-card h2 {
  margin: 0;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 11ch;
}

.lede {
  max-width: 56ch;
  margin: 22px 0 0;
  color: rgba(245, 249, 252, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.hero-contact a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 249, 252, 0.9);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: "Avenir Next Condensed", "Gill Sans", "Trebuchet MS", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f9fc;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 460px;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.feature-grid,
.menu-section,
.gallery-section {
  margin-top: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.feature-card,
.compact-card,
.menu-intro,
.menu-card,
.gallery-card,
.site-footer {
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(10px);
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 22px;
  overflow: hidden;
  min-height: 360px;
}

.feature-card-copy,
.compact-card,
.menu-intro,
.menu-card,
.site-footer {
  padding: 28px;
}

.feature-card h2,
.menu-intro h2,
.compact-card h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.feature-card p,
.menu-intro p,
.compact-card p,
.menu-note,
.site-footer p {
  line-height: 1.7;
}

.feature-card img {
  height: 100%;
  object-fit: cover;
}

.compact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 228, 0.92)),
    var(--card);
  position: relative;
  overflow: hidden;
}

.compact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), #f2c16b, rgba(255, 255, 255, 0));
}

.compact-card h2 {
  max-width: 11ch;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.hours-list {
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
  font-size: 0.96rem;
  white-space: nowrap;
}

.menu-intro {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.download-list {
  display: grid;
  gap: 10px;
}

.contact-panel {
  margin-top: 26px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(12, 59, 104, 0.08);
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-list a:hover {
  transform: translateY(-2px);
  background: rgba(12, 59, 104, 0.12);
}

.contact-list span {
  font-family: "Avenir Next Condensed", "Gill Sans", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list strong {
  font-size: 1.15rem;
  color: var(--navy-deep);
}

.download-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(12, 59, 104, 0.08);
  font-family: "Avenir Next Condensed", "Gill Sans", "Trebuchet MS", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background-color 180ms ease;
}

.download-list a:hover {
  transform: translateY(-2px);
  background: rgba(12, 59, 104, 0.12);
}

.download-list a::after {
  content: "Download";
  color: var(--navy);
}

.section-heading {
  margin-bottom: 18px;
}

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

.menu-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(245, 241, 232, 0.95)),
    var(--card);
}

.menu-card:hover,
.gallery-card:hover,
.feature-card:hover,
.compact-card:hover,
.menu-intro:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 76px rgba(7, 28, 48, 0.18);
}

.menu-card h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  color: var(--navy-deep);
}

.menu-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.menu-items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.menu-items li span:first-child {
  font-weight: 700;
}

.menu-items li span:last-child {
  color: var(--navy);
  white-space: nowrap;
}

.menu-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 88px;
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  grid-column: span 4;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  min-height: 0;
}

.gallery-card-feature {
  grid-column: span 7;
  grid-row: span 5;
}

.gallery-card-wide {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-card-tall {
  grid-column: span 5;
  grid-row: span 5;
}

.gallery-card-square {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.site-footer {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  background:
    linear-gradient(120deg, rgba(9, 42, 72, 0.96), rgba(16, 85, 118, 0.92)),
    var(--card-strong);
  color: #edf7ff;
}

@media (max-width: 1040px) {
  .feature-grid,
  .menu-intro,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    margin: 10px auto 24px;
  }

  .hero,
  .feature-card-copy,
  .compact-card,
  .menu-intro,
  .menu-card,
  .site-footer {
    padding: 20px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-links {
    gap: 10px 14px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hours-list div,
  .menu-items li,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hours-list div {
    display: block;
  }

  .hours-list dd {
    margin-top: 4px;
    text-align: left;
  }

  .menu-items li span:last-child {
    white-space: normal;
  }

  .gallery-card,
  .gallery-card-feature,
  .gallery-card-wide,
  .gallery-card-tall,
  .gallery-card-square {
    grid-column: span 12;
    grid-row: span 1;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-card img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}
