:root {
  --paper: #f5eee3;
  --paper-deep: #eee4d5;
  --paper-soft: #faf6ef;
  --ink: #261b14;
  --muted: #65584a;
  --olive: #7b8146;
  --olive-deep: #676d37;
  --gold: #b69757;
  --line: rgba(73, 56, 39, 0.15);
  --line-strong: rgba(73, 56, 39, 0.22);
  --shadow: 0 24px 50px rgba(43, 31, 21, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.6rem;
  --radius-md: 1rem;
  --radius-pill: 999px;
  --container: min(94vw, 96rem);
  --section-gap: clamp(5rem, 8vw, 8rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(123, 129, 70, 0.08), transparent 24rem),
    linear-gradient(180deg, #f9f5ee 0%, var(--paper) 42%, #f3ecde 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(87, 66, 45, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 66, 45, 0.028) 1px, transparent 1px);
  background-size: 1rem 1rem;
  opacity: 0.12;
  mix-blend-mode: multiply;
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 2vw, 2rem) clamp(1.2rem, 3vw, 3rem);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 3.2vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.6rem);
  font-size: 1rem;
  font-weight: 500;
}

.site-nav a,
.site-link,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.site-link::after,
.footer-links a::after,
.rush-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.24rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-link:hover::after,
.site-link:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.rush-link a:hover::after,
.rush-link a:focus-visible::after {
  transform: scaleX(1);
}

.site-link {
  font-size: 0.98rem;
  font-weight: 600;
}

.hero {
  padding: clamp(5rem, 10vw, 7rem) clamp(1rem, 2vw, 1.4rem) 0;
}

.hero-shell,
.section-shell,
.footer-shell {
  width: var(--container);
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border: 1px solid var(--line);
  min-height: min(100svh, 60rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-media {
  min-height: inherit;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  padding: clamp(6rem, 8vw, 8.5rem) clamp(2rem, 4vw, 4.8rem) clamp(2.5rem, 4vw, 4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(247, 241, 230, 0.98), rgba(245, 238, 227, 0.95));
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 27, 19, 0.06), rgba(36, 27, 19, 0.16));
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0;
  color: var(--olive-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.rating-score {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h1 {
  max-width: 4.5ch;
  font-size: clamp(4.6rem, 8vw, 8.8rem);
}

h2 {
  max-width: 8.5ch;
  font-size: clamp(3.4rem, 5vw, 6.4rem);
}

h2 span {
  color: var(--olive);
  font-style: italic;
}

h3 {
  font-size: clamp(1.6rem, 2vw, 2.15rem);
}

.hero-lede,
.section-copy,
.hero-address,
.rush-copy p,
.visit-details p,
.atmosphere-tags,
.menu-meta {
  margin: 0;
  max-width: 34rem;
  color: rgba(38, 27, 20, 0.9);
  font-size: clamp(1.02rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.hero-address {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-address svg {
  flex: 0 0 1.2rem;
  width: 1.2rem;
  color: var(--olive);
}

.hero-actions,
.visit-actions,
.menu-actions,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.8rem;
  padding: 0 1.65rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-0.14rem);
}

.button-solid {
  color: #f8f4ea;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  border-color: rgba(90, 95, 48, 0.72);
}

.button-outline {
  background: rgba(255, 252, 247, 0.34);
}

.section {
  padding: var(--section-gap) 0 0;
}

.section-shell {
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 5vw, 4.6rem);
}

.menu-layout,
.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 4vw, 4.4rem);
}

.section-copy-block,
.atmosphere-copy,
.visit-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.offerings-list {
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.offerings-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.offerings-list dt,
.offerings-list dd {
  margin: 0;
}

.offerings-list dt {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.offerings-list dd {
  color: var(--olive-deep);
  font-size: 0.98rem;
  font-weight: 700;
}

.menu-meta {
  font-size: 0.96rem;
  color: var(--muted);
}

.menu-gallery {
  display: grid;
  gap: 0.95rem;
}

.gallery-primary,
.gallery-row figure,
.menu-strip,
.atmosphere-tall,
.atmosphere-wide,
.review-photo,
.visit-photo,
.map-card {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.55);
}

.gallery-primary figcaption,
.gallery-row figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  background: rgba(248, 243, 233, 0.9);
  border: 1px solid rgba(74, 58, 41, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}

.gallery-primary,
.gallery-row figure {
  position: relative;
  overflow: hidden;
}

.gallery-primary img {
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.gallery-row img {
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.menu-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  overflow: hidden;
}

.menu-strip-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.6rem;
  background: rgba(123, 129, 70, 0.12);
}

.menu-strip-copy p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -0.05em;
}

.menu-strip-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.menu-strip img {
  aspect-ratio: 1.55 / 0.76;
  object-fit: cover;
}

.atmosphere-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 4.4rem);
}

.atmosphere-tall img {
  height: 100%;
  min-height: 44rem;
  object-fit: cover;
}

.signature {
  margin: -0.2rem 0 0;
  color: rgba(123, 129, 70, 0.9);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 3vw, 3.4rem);
  font-style: italic;
}

.atmosphere-tags {
  color: var(--muted);
  font-size: 0.96rem;
}

.atmosphere-wide img {
  aspect-ratio: 1.65 / 0.72;
  object-fit: cover;
}

.amenity-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0.4rem;
}

.amenity-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.amenity-row svg {
  width: 2rem;
  color: var(--olive);
}

.amenity-row h3 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.amenity-row p,
.rating-panel p,
.quote-column cite,
.rush-link p,
.footer-shell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 0.95fr) minmax(15rem, 0.55fr);
  gap: clamp(1rem, 3vw, 2.8rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.rating-panel {
  padding: 0.6rem 0 0;
}

.rating-score {
  color: var(--olive);
  font-size: clamp(6rem, 10vw, 9.8rem);
  line-height: 0.82;
}

.rating-stars {
  margin: 0.9rem 0 1rem;
  color: var(--gold);
  font-size: 2.05rem;
  letter-spacing: 0.14em;
}

.quote-column {
  display: grid;
  gap: 0.9rem;
  padding-top: 1rem;
}

.quote-column blockquote {
  margin: 0;
  padding: 0.3rem 0 1rem;
  border-top: 1px solid var(--line);
}

.quote-column p {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.9vw, 3rem);
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.quote-column cite {
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-photo {
  overflow: hidden;
}

.review-photo img {
  aspect-ratio: 0.75 / 1;
  object-fit: cover;
}

.rush-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr) minmax(0, 0.62fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.6rem;
  padding: 1.8rem clamp(1.4rem, 2.6vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 246, 0.44);
}

.rush-chart {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.45rem;
  align-items: end;
  min-height: 11rem;
}

.rush-chart span {
  display: block;
  height: calc(var(--bar-height) * 7.2rem);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(123, 129, 70, 0.82), rgba(123, 129, 70, 0.28));
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 700ms ease;
}

.rush-chart small {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.rush-band.is-visible .rush-chart span {
  transform: scaleY(1);
}

.rush-link {
  padding-left: 1.3rem;
  border-left: 1px solid var(--line);
}

.rush-link a {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--olive-deep);
  font-weight: 600;
}

.visit-panel {
  display: grid;
  gap: 1rem;
}

.visit-photo img {
  aspect-ratio: 1.08 / 0.78;
  object-fit: cover;
}

.map-card {
  position: relative;
  min-height: 27rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(35deg, rgba(81, 62, 40, 0.05) 0 2px, transparent 2px 34px),
    repeating-linear-gradient(120deg, rgba(81, 62, 40, 0.05) 0 2px, transparent 2px 34px),
    linear-gradient(180deg, rgba(123, 129, 70, 0.09), rgba(123, 129, 70, 0.02));
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 5% 6%;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 82%, rgba(123, 129, 70, 0.1), transparent 9rem),
    radial-gradient(circle at 72% 24%, rgba(123, 129, 70, 0.08), transparent 8rem);
  opacity: 0.9;
}

.map-label,
.map-road,
.map-park,
.map-pin {
  position: absolute;
  z-index: 1;
}

.map-label {
  color: rgba(38, 27, 20, 0.64);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-road {
  color: rgba(38, 27, 20, 0.82);
  font-size: 1rem;
}

.map-grey-lynn {
  top: 4rem;
  left: 11.5rem;
}

.map-ponsonby {
  top: 5.2rem;
  right: 5rem;
}

.map-road-richmond {
  top: 2.2rem;
  left: 4.3rem;
  transform: rotate(-62deg);
}

.map-road-ponsonby {
  top: 11.1rem;
  left: 12.5rem;
  transform: rotate(27deg);
}

.map-road-kroad {
  right: 3rem;
  bottom: 4rem;
  transform: rotate(18deg);
}

.map-park {
  left: 9.5rem;
  bottom: 5rem;
  color: rgba(38, 27, 20, 0.62);
  font-size: 1rem;
}

.map-pin {
  top: 7.5rem;
  right: 11.5rem;
  display: grid;
  place-items: center;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #f8f4ea;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  box-shadow: 0 18px 40px rgba(85, 91, 45, 0.22);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 0.36rem;
  height: 1rem;
  background: var(--olive-deep);
  transform: translateX(-50%);
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.visit-details article {
  padding: 1.5rem;
  min-height: 9.5rem;
}

.visit-details article + article {
  border-left: 1px solid var(--line);
}

.visit-details h3 {
  margin-bottom: 0.85rem;
  font-size: 1.6rem;
}

.site-footer {
  padding: 3rem 0 4rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.footer-brand {
  font-size: clamp(3.1rem, 5vw, 4.8rem);
}

.footer-shell p:last-of-type {
  justify-self: start;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal.is-visible {
  animation: revealFadeUp 700ms ease both;
}

@keyframes revealFadeUp {
  from {
    opacity: 0.65;
    transform: translateY(1.2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 1rem;
    padding-inline: 1.2rem;
  }

  .hero-shell,
  .menu-layout,
  .atmosphere-layout,
  .reviews-header,
  .reviews-grid,
  .rush-band,
  .visit-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-media {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-media img {
    aspect-ratio: 1.2 / 1;
  }

  .review-photo {
    max-width: 26rem;
  }

  .rush-link {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
  }

  .map-card {
    min-height: 22rem;
  }

  .footer-shell {
    gap: 0.8rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0;
  }

  .site-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero-copy {
    padding: 2.4rem 1.4rem;
  }

  .section-shell {
    padding-top: 2.5rem;
  }

  .gallery-row,
  .amenity-row,
  .visit-details {
    grid-template-columns: 1fr;
  }

  .menu-strip {
    grid-template-columns: 1fr;
  }

  .atmosphere-tall img {
    min-height: 26rem;
  }

  .map-grey-lynn {
    left: 3rem;
  }

  .map-ponsonby {
    right: 2rem;
  }

  .map-road-richmond,
  .map-road-ponsonby,
  .map-road-kroad {
    font-size: 0.88rem;
  }

  .map-pin {
    right: 6.4rem;
    width: 6.6rem;
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 0.7rem;
  }

  .hero-copy {
    gap: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .visit-actions,
  .menu-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav,
  .footer-links {
    gap: 0.9rem 1.2rem;
  }

  .map-card {
    min-height: 18.5rem;
  }

  .map-label {
    font-size: 1rem;
  }

  .map-grey-lynn {
    top: 2.4rem;
    left: 2.4rem;
  }

  .map-ponsonby {
    top: 2.8rem;
    right: 1.4rem;
  }

  .map-road-richmond {
    top: 1.4rem;
    left: 2.2rem;
  }

  .map-road-ponsonby {
    top: 7.5rem;
    left: 7.2rem;
  }

  .map-road-kroad {
    right: 1rem;
    bottom: 2.3rem;
  }

  .map-park {
    left: 2rem;
    bottom: 3rem;
  }

  .map-pin {
    top: 5rem;
    right: 4rem;
    width: 5rem;
    font-size: 1.4rem;
  }
}
