:root {
  --plum: #3a3038;
  --plum-deep: #211b20;
  --ink: #202021;
  --muted: #5f625b;
  --paper: #f8f5ef;
  --linen: #eee7da;
  --sage: #70826b;
  --sage-dark: #40553f;
  --brass: #c6a14a;
  --white: #fffdf8;
  --line: rgba(32, 32, 33, 0.14);
  --shadow: 0 22px 60px rgba(29, 23, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 22px;
  padding: 22px 38px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(58, 48, 56, 0.94), rgba(58, 48, 56, 0));
}

.main-nav,
.header-contact,
.hero-actions,
.social-links,
.contact-links {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 20px;
  padding-top: 18px;
  font-size: 0.88rem;
}

.main-nav a,
.header-contact a,
.text-link,
.social-links a {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.header-contact a:hover,
.text-link:hover,
.social-links a:hover {
  border-color: currentColor;
}

.brand {
  width: 138px;
  display: block;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.34));
}

.header-contact {
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 0.86rem;
  text-align: right;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 150px 20px 90px;
  color: var(--white);
  background: var(--plum);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/river-boat.jpg") center / cover no-repeat;
  opacity: 0.24;
}

.video-wrap,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.video-wrap {
  opacity: 0.24;
  pointer-events: none;
}

.video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 100vh;
  min-height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.92) brightness(0.82);
  transform: translate(-50%, -50%);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(58, 48, 56, 0.46), rgba(58, 48, 56, 0.9)),
    linear-gradient(90deg, rgba(58, 48, 56, 0.58), rgba(58, 48, 56, 0.1), rgba(58, 48, 56, 0.58)),
    radial-gradient(circle at center, rgba(30, 24, 29, 0.16), rgba(30, 24, 29, 0.68));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin-top: 58px;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.88rem;
  font-weight: 600;
}

.eyebrow.dark {
  color: var(--sage-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  margin-bottom: 12px;
  font-size: 3rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.1rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.tagline {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  color: rgba(255, 253, 248, 0.92);
}

.hero-actions {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 650;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: var(--plum-deep);
  background: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.45);
  background: rgba(255, 253, 248, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--plum);
}

.section {
  padding: 86px 0;
}

.intro-section {
  background: var(--white);
}

.intro-grid,
.why-grid,
.nostalgia-grid,
.contact-grid,
.reviews-layout {
  display: grid;
  align-items: center;
  gap: 54px;
}

.intro-grid,
.why-grid,
.nostalgia-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.copy-block p,
.reviews-copy p,
.contact-panel address {
  color: var(--muted);
}

.copy-block p:last-child,
.reviews-copy p:last-child {
  margin-bottom: 0;
}

.intro-media,
.stacked-media,
.gallery-grid figure {
  margin: 0;
}

.intro-media img,
.stacked-media img,
.nostalgia-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.intro-media img {
  aspect-ratio: 4 / 5;
}

.why-section {
  background: var(--linen);
}

.stacked-media {
  position: relative;
  min-height: 560px;
}

.stacked-media .image-main {
  width: 78%;
  aspect-ratio: 4 / 5;
}

.stacked-media .image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 3 / 4;
  border: 8px solid var(--linen);
}

.meals-section,
.gallery-section {
  background: var(--paper);
}

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

.section-heading h2 {
  max-width: 720px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.text-link {
  color: var(--sage-dark);
  font-weight: 700;
  white-space: nowrap;
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.meal-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
}

.meal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.meal-card div {
  padding: 22px;
}

.meal-card p,
.review-card p {
  color: var(--muted);
}

.meal-card p:last-child,
.review-card p:last-child {
  margin-bottom: 0;
}

.time {
  margin-bottom: 10px;
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.nostalgia-section {
  background: var(--white);
}

.nostalgia-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.nostalgia-images img:first-child {
  aspect-ratio: 4 / 5;
}

.nostalgia-images img:last-child {
  aspect-ratio: 4 / 5;
  margin-top: 54px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid figure {
  min-height: 210px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--linen);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .wide img {
  aspect-ratio: 2 / 1;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid .tall img {
  aspect-ratio: 1 / 2;
}

.reviews-section {
  background: #eef2ec;
}

.reviews-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.reviews-copy {
  align-self: start;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.review-card {
  padding: 22px;
}

.stars {
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 0.95rem;
}

.contact-section {
  color: var(--white);
  background: var(--plum);
}

.contact-grid {
  grid-template-columns: 0.78fr 1.22fr;
}

.contact-panel p,
.contact-panel address {
  color: rgba(255, 253, 248, 0.74);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel address {
  margin: 0 0 22px;
  font-style: normal;
}

.contact-links,
.social-links {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.contact-links {
  margin-bottom: 22px;
  font-weight: 700;
}

.social-links {
  color: var(--brass);
}

.map-wrap {
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: var(--plum-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.86) contrast(0.96);
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 253, 248, 0.78);
  background: var(--plum-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer-grid img {
  width: 76px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--brass);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(180deg, rgba(58, 48, 56, 0.98), rgba(58, 48, 56, 0.12));
  }

  .brand {
    grid-row: 1;
    width: 118px;
  }

  .main-nav {
    grid-row: 2;
    justify-content: center;
    gap: 14px;
    padding-top: 0;
    flex-wrap: wrap;
  }

  .header-contact {
    grid-row: 3;
    justify-content: center;
    padding-top: 0;
    text-align: center;
  }

  .hero {
    min-height: 90svh;
    padding-top: 210px;
  }

  .hero-content {
    margin-top: 0;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .intro-grid,
  .why-grid,
  .nostalgia-grid,
  .contact-grid,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .why-grid .stacked-media {
    order: 2;
  }

  .meal-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-grid,
  .reviews-layout {
    gap: 32px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    width: 104px;
  }

  .main-nav {
    font-size: 0.84rem;
  }

  .header-contact a[href^="mailto"] {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding: 190px 16px 62px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .tagline {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
    max-width: 310px;
  }

  .section {
    padding: 64px 0;
  }

  .stacked-media {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: end;
    gap: 12px;
  }

  .stacked-media .image-main,
  .stacked-media .image-small {
    position: static;
    width: 100%;
    border: 0;
  }

  .nostalgia-images {
    grid-template-columns: 1fr;
  }

  .nostalgia-images img:last-child {
    margin-top: 0;
  }

  .split-heading {
    display: block;
  }

  .text-link {
    display: inline-flex;
    margin-top: 6px;
    white-space: normal;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid figure,
  .gallery-grid img,
  .gallery-grid .wide img,
  .gallery-grid .tall img {
    aspect-ratio: 4 / 5;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
