:root {
  --ink: #182024;
  --ink-2: #2c383d;
  --muted: #65737a;
  --paper: #f7fbfa;
  --mint: #d7fff2;
  --foam: #eaf7f3;
  --rose: #f25587;
  --rose-deep: #b7194d;
  --green: #0d6f5a;
  --green-deep: #063f36;
  --citrus: #f7cf4b;
  --sky: #73d7ff;
  --white: #ffffff;
  --line: rgba(24, 32, 36, 0.14);
  --shadow: 0 24px 80px rgba(6, 63, 54, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(247, 207, 75, 0.12) 0 12px, transparent 12px 36px),
    var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

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

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(14px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--rose));
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--citrus);
}

.brand-copy {
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 38px);
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 850;
}

.nav a,
.header-call,
.button,
.quick-strip a,
.text-link {
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav a:hover,
.text-link:hover {
  color: var(--rose-deep);
}

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 950;
}

.header-call:hover {
  transform: translateY(-1px);
  background: var(--green-deep);
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(36px, 7vh, 84px) 0 clamp(28px, 6vh, 64px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text,
.section-intro p,
.proof-card p,
.visit-copy p,
.menu-grid p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.hero-text {
  max-width: 600px;
  margin-bottom: 26px;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
}

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

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

.button.primary:hover {
  background: var(--rose-deep);
}

.button.secondary {
  background: var(--mint);
}

.button.ghost {
  background: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.hero-facts div,
.hours-card,
.proof-card,
.menu-grid article,
.quick-strip a {
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(24, 32, 36, 0.08);
}

.hero-facts div {
  min-height: 92px;
  padding: 16px;
  background: var(--white);
  border-radius: 18px;
}

dt {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

dd {
  margin-left: 0;
  color: var(--ink-2);
  font-weight: 850;
}

.hero-board {
  position: relative;
  min-height: 650px;
}

.hero-board figure {
  margin-bottom: 0;
  overflow: hidden;
  background: var(--foam);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.hero-board img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-main {
  position: absolute;
  inset: 0 12% 0 0;
  border-radius: 44px 44px 12px 44px;
}

.board-main img {
  object-position: 52% 47%;
}

.board-tile {
  position: absolute;
  right: 0;
  width: 43%;
  aspect-ratio: 1;
}

.tile-a {
  top: 8%;
  border-radius: 12px 32px 12px 12px;
}

.tile-a img {
  object-position: 50% 45%;
}

.tile-b {
  bottom: 9%;
  border-radius: 32px 12px 32px 12px;
}

.tile-b img {
  object-position: 54% 42%;
}

.quick-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  transform: translateY(28px);
}

.quick-strip a {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border-radius: 18px;
}

.quick-strip a:hover {
  background: var(--mint);
  transform: translateY(-1px);
}

.quick-strip span {
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-strip strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.1;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(78px, 12vw, 140px) 0 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

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

.menu-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border-radius: 22px;
}

.menu-grid article:nth-child(2) {
  background: var(--mint);
}

.menu-grid article:nth-child(3) {
  background: #ffe8f0;
}

.menu-grid article:nth-child(4) {
  background: #fff4bf;
}

.menu-grid span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 950;
}

.gallery-intro {
  margin-left: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--foam);
  border: 2px solid var(--ink);
  border-radius: 20px;
}

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

.gallery-feature img {
  object-position: 53% 44%;
}

.gallery-grid figure:nth-child(2) img {
  object-position: 49% 44%;
}

.gallery-grid figure:nth-child(3) img,
.gallery-grid figure:nth-child(5) img {
  object-position: 52% 42%;
}

.gallery-grid figure:nth-child(4) img {
  object-position: 52% 44%;
}

.gallery-grid figure:nth-child(6) img {
  object-position: 50% 47%;
}

figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 0 12px;
  color: var(--white);
  background: rgba(6, 63, 54, 0.86);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 14px;
}

.proof-card,
.hours-card {
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border-radius: 24px;
}

.proof-card {
  background: var(--green-deep);
  color: var(--white);
}

.proof-card .eyebrow,
.proof-card p {
  color: rgba(255, 255, 255, 0.8);
}

.proof-card h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hours-card dl {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.hours-card div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hours-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.visit {
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(70px, 12vw, 130px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 5vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(242, 85, 135, 0.86), rgba(13, 111, 90, 0.9)),
    var(--green);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  border-radius: 30px 30px 0 0;
}

.visit .eyebrow,
.visit p {
  color: rgba(255, 255, 255, 0.86);
}

.visit h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}

.visit .button.secondary,
.visit .button.ghost {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .hero-board {
    min-height: 560px;
    order: -1;
  }

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

  .visit-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand-copy {
    max-width: 178px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-call {
    min-height: 40px;
  }

  .hero {
    width: min(100% - 24px, var(--max));
    gap: 24px;
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-board {
    min-height: 465px;
  }

  .board-main {
    inset: 0 8% 0 0;
    border-radius: 28px 28px 10px 28px;
  }

  .board-tile {
    width: 45%;
  }

  .hero-actions .button,
  .visit-actions .button {
    width: 100%;
  }

  .hero-facts,
  .quick-strip,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    transform: none;
  }

  .section {
    width: min(100% - 24px, var(--max));
    padding-top: 72px;
  }

  .menu-grid article {
    min-height: 180px;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
  }

  .gallery-grid figure,
  .gallery-feature {
    aspect-ratio: 4 / 5;
    grid-row: auto;
  }

  .gallery-grid figure:nth-child(2) {
    aspect-ratio: 1;
  }

  .visit {
    width: min(100% - 24px, var(--max));
    margin-top: 72px;
    padding-bottom: 30px;
  }

}

@media (max-width: 360px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy {
    max-width: 150px;
    font-size: 0.92rem;
  }

  .hero-board {
    min-height: 410px;
  }

  .button {
    padding: 0 14px;
    font-size: 0.94rem;
  }
}
