/*
Theme Name: Bloom & Vine
Theme URI: https://example.com/
Author: Jake Ripley
Description: Lightweight static WordPress theme for Bloom & Vine Coffeehouse and Eatery.
Version: 0.1.0
Text Domain: bloom-vine
*/

:root {
  --cream: #f6f0e5;
  --paper: #fffaf0;
  --ink: #1a1a16;
  --muted: #665f53;
  --green: #3f4f2b;
  --green-dark: #182116;
  --clay: #bf6849;
  --rust: #954832;
  --gold: #d5aa55;
  --line: rgba(31, 35, 26, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  min-height: 100px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 34px;
  padding: 20px clamp(28px, 5vw, 66px);
  background:
    radial-gradient(circle at 8% 0%, rgba(213, 170, 85, 0.13), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f5eee2 100%);
  border-bottom: 1px solid var(--line);
}

.brand {
  width: max-content;
  text-decoration: none;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
}

.brand-sub {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a,
.header-cta {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary,
.button-green {
  background: var(--green);
  color: #fff;
}

.button-clay {
  background: var(--clay);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  position: relative;
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, var(--line-y, 0)) rotate(0deg);
  transform-origin: center;
  transition: transform 260ms ease, opacity 180ms ease, background 180ms ease;
}

.nav-toggle span:nth-child(1) {
  --line-y: -6px;
}

.nav-toggle span:nth-child(3) {
  --line-y: 6px;
}

.site-header.is-open .nav-toggle {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(31, 35, 26, 0.15);
}

.site-header.is-open .nav-toggle span {
  background: #fffaf0;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, 0) scaleX(0.25);
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100vh - 190px), 1040px);
  min-height: clamp(620px, calc(100svh - 190px), 1040px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-image,
.hero-shadow {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shadow {
  background:
    linear-gradient(90deg, rgba(9, 15, 9, 0.8) 0%, rgba(9, 15, 9, 0.46) 38%, rgba(9, 15, 9, 0.08) 74%),
    linear-gradient(0deg, rgba(9, 15, 9, 0.44), rgba(9, 15, 9, 0.08) 44%);
}

.event-band::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  pointer-events: none;
}

.event-band::after {
  background: var(--paper);
}

.event-band::after {
  height: 34px;
  clip-path: polygon(0 64%, 8% 58%, 18% 70%, 28% 55%, 39% 68%, 50% 57%, 62% 66%, 75% 54%, 88% 68%, 100% 58%, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 42px clamp(28px, 8vw, 110px) 44px;
  color: #fff;
  transform: translateY(clamp(-54px, -4vh, -30px));
  transform: translateY(clamp(-54px, -4svh, -30px));
}

.hero h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(5.4rem, 11.5vw, 10.5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.78;
}

.hero p {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ink-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-mark {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 6vw, 96px);
  bottom: clamp(18px, 3vw, 44px);
  width: clamp(170px, 22vw, 340px);
  height: auto;
  max-height: min(58vh, 520px);
  opacity: 0.68;
  mix-blend-mode: screen;
  filter: brightness(1.18) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.offer-strip {
  position: relative;
  z-index: 5;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  margin: -86px 0 0;
  padding: 10px clamp(30px, 7vw, 112px) 24px;
  background: var(--paper);
  overflow: visible;
}

.offer-strip::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: -50px;
  height: clamp(76px, 4.9vw, 92px);
  background: url("./assets/images/decor/torn-paper-edge.svg") bottom center / 100% 100% no-repeat;
  pointer-events: none;
}

.offer-strip article {
  position: relative;
  z-index: 1;
  min-height: 138px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 0 clamp(12px, 2.4vw, 38px);
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.offer-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  object-fit: contain;
}

.offer-strip h2 {
  margin: 0 0 5px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-strip p {
  max-width: 178px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.24;
}

.menu-preview {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(620px, 0.58fr);
  height: clamp(360px, 25vw, 430px);
  min-height: 0;
  background: #f1eadc;
}

.menu-copy {
  position: relative;
  display: grid;
  align-content: center;
  height: 100%;
  min-height: 0;
  padding: clamp(28px, 3.2vw, 42px) clamp(36px, 6vw, 86px);
  background: #f7f1e6;
  overflow: hidden;
}

.menu-copy > :not(.menu-mark),
.story-copy > :not(.story-mark) {
  position: relative;
  z-index: 1;
}

.section-label {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-copy h2,
.full-menu-section h2,
.event-content h2,
.story-copy h2,
.seasonal-gallery h2,
.visit-section h2:not(.section-label) {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.menu-copy h2 {
  max-width: 560px;
  font-size: clamp(1.8rem, 2.35vw, 2.55rem);
  line-height: 1.04;
}

.menu-copy p,
.story-copy p,
.seasonal-intro p {
  max-width: 520px;
  margin: 18px 0 22px;
  color: var(--muted);
}

.menu-list {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.menu-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.menu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--clay);
  border-radius: 50%;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.menu-actions .button {
  min-height: 44px;
}

.text-link {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration-color: rgba(63, 79, 43, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.flourish {
  display: block;
  width: 112px;
  height: 24px;
  margin: 12px 0 0;
  color: var(--clay);
  background: currentColor;
  mask: url("./assets/images/decor/section-flourish.svg") center / contain no-repeat;
  -webkit-mask: url("./assets/images/decor/section-flourish.svg") center / contain no-repeat;
}

.flourish.gold {
  color: var(--gold);
}

.section-mark {
  position: absolute;
  left: -22px;
  bottom: -38px;
  width: 132px;
  color: rgba(63, 79, 43, 0.28);
}

.botanical-mark {
  position: absolute;
  z-index: 0;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.menu-mark {
  position: absolute;
  left: clamp(12px, 2vw, 30px);
  bottom: clamp(10px, 1.5vw, 22px);
  width: clamp(104px, 9vw, 154px);
  color: rgba(63, 79, 43, 0.16);
  transform: rotate(-10deg);
  pointer-events: none;
}

.menu-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 0;
  height: 100%;
  min-height: 0;
  padding: 0;
  background: #d9cbb7;
}

.menu-photo {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-left: 2px solid #f7f1e6;
  background: #d9cbb7;
  box-shadow: none;
}

.menu-photo figcaption {
  display: none;
}

.menu-photo-primary {
  grid-column: auto;
  grid-row: auto;
  background: #21170f;
}

.menu-photo-secondary {
  grid-column: auto;
  grid-row: auto;
}

.menu-photo-wide {
  grid-column: auto;
  grid-row: auto;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.menu-photo-primary img {
  object-fit: contain;
  object-position: center center;
}

.menu-photo-secondary img {
  object-position: center top;
}

.menu-photo-wide img {
  object-position: center center;
}

.full-menu-section {
  padding: clamp(70px, 9vw, 112px) clamp(30px, 8vw, 108px);
  background:
    radial-gradient(circle at 12% 2%, rgba(191, 104, 73, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #f7efe1 100%);
  border-top: 1px solid var(--line);
}

.full-menu-section[hidden] {
  display: none;
}

.full-menu-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
}

.full-menu-intro p:not(.section-label) {
  max-width: 620px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 66px) clamp(26px, 4vw, 48px);
  max-width: 1280px;
  margin: clamp(46px, 6vw, 72px) auto 0;
}

.menu-category {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.menu-category h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.full-menu-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 35, 26, 0.09);
}

.full-menu-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.full-menu-list span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.25;
}

.full-menu-list small {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

.full-menu-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: clamp(44px, 6vw, 70px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.full-menu-note p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.event-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #10120f;
}

.event-band img,
.event-overlay {
  position: absolute;
  inset: 0;
}

.event-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-overlay {
  background:
    linear-gradient(90deg, rgba(11, 12, 10, 0.9) 0%, rgba(11, 12, 10, 0.62) 34%, rgba(11, 12, 10, 0.1) 76%),
    linear-gradient(0deg, rgba(11, 12, 10, 0.36), rgba(11, 12, 10, 0.08));
}

.event-content {
  position: relative;
  z-index: 2;
  max-width: clamp(640px, 48vw, 820px);
  padding: clamp(70px, 7vw, 96px) clamp(30px, 8vw, 110px);
}

.event-content .section-label {
  color: var(--clay);
}

.event-content h2 {
  max-width: 680px;
  font-size: clamp(3.25rem, 4.8vw, 5.35rem);
}

.event-content p:not(.section-label) {
  max-width: 540px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.55;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1fr);
  background: var(--paper);
}

.story-image {
  height: clamp(560px, 46vw, 760px);
}

.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.story-copy {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(60px, 7vw, 92px) clamp(34px, 7vw, 92px);
  overflow: hidden;
}

.story-copy .button {
  justify-self: start;
}

.story-mark {
  right: clamp(-120px, -5vw, -58px);
  bottom: clamp(-260px, -14vw, -150px);
  width: clamp(480px, 42vw, 760px);
  opacity: 0.16;
  transform: rotate(-7deg);
  transform-origin: 70% 88%;
}

.seasonal-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(620px, 1fr);
  align-items: center;
  gap: clamp(40px, 6.5vw, 96px);
  padding: clamp(62px, 7.5vw, 98px) clamp(30px, 7vw, 96px);
  background:
    radial-gradient(circle at 11% 16%, rgba(191, 104, 73, 0.16), transparent 25%),
    radial-gradient(circle at 90% 78%, rgba(63, 79, 43, 0.14), transparent 28%),
    linear-gradient(118deg, #e4dbc7 0%, #f8f0e2 44%, #dfe7d4 100%);
  border-top: 1px solid rgba(31, 35, 26, 0.1);
  border-bottom: 1px solid rgba(31, 35, 26, 0.12);
  overflow: hidden;
}

.seasonal-gallery::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(8px, 1.5vw, 18px);
  background: linear-gradient(180deg, var(--green), rgba(63, 79, 43, 0.78));
}

.seasonal-gallery > * {
  position: relative;
  z-index: 1;
}

.seasonal-intro {
  max-width: 520px;
}

.seasonal-gallery h2 {
  max-width: 500px;
  font-size: clamp(2.45rem, 3.75vw, 3.95rem);
}

.seasonal-rhythm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(31, 35, 26, 0.16);
  border-bottom: 1px solid rgba(31, 35, 26, 0.16);
}

.seasonal-rhythm div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid rgba(31, 35, 26, 0.12);
}

.seasonal-rhythm div:nth-child(odd) {
  border-right: 1px solid rgba(31, 35, 26, 0.12);
}

.seasonal-rhythm div:nth-child(even) {
  padding-left: 16px;
}

.seasonal-rhythm div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.seasonal-rhythm strong {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.seasonal-rhythm span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.flower-gallery {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: repeat(5, clamp(90px, 6.8vw, 128px));
  gap: 14px;
  transform: rotate(-0.35deg);
}

.flower-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 4px solid rgba(255, 250, 240, 0.88);
  border-radius: 5px;
  background: #d7d0bd;
  box-shadow: 0 18px 36px rgba(31, 35, 26, 0.16);
}

.flower-tile-large {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
}

.flower-tile-wide {
  grid-column: 4 / 7;
  grid-row: 3 / 6;
}

.flower-tile:nth-child(2) {
  grid-column: 4 / 6;
  grid-row: 1 / 3;
  transform: translateY(-12px);
}

.flower-tile:nth-child(3) {
  grid-column: 6 / 9;
  grid-row: 1 / 3;
  transform: translateY(6px);
}

.flower-tile:nth-child(5) {
  grid-column: 7 / 9;
  grid-row: 3 / 6;
  transform: translateY(-8px);
}

.flower-tile:nth-child(6) {
  grid-column: 1 / 4;
  grid-row: 4 / 6;
  transform: translateY(10px);
}

.flower-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.flower-tile:hover img {
  transform: scale(1.035);
}

.visit-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(270px, 0.92fr) minmax(380px, 0.98fr) minmax(190px, 0.58fr);
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  padding: clamp(18px, 2.5vw, 30px) clamp(30px, 7vw, 96px) 14px;
  background:
    radial-gradient(circle at 88% 22%, rgba(213, 170, 85, 0.13), transparent 23%),
    linear-gradient(180deg, #f7f1e6 0%, #ede4d2 100%);
  border-top: 1px solid rgba(31, 35, 26, 0.11);
  overflow: visible;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-list strong {
  color: var(--ink);
}

.hours-block dl {
  display: grid;
  gap: 3px;
  margin: 12px 0 0;
}

.hours-block div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 20px;
}

.hours-block dt,
.hours-block dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-sketch {
  position: relative;
  display: block;
  width: min(440px, 100%);
  height: 178px;
  justify-self: start;
  text-decoration: none;
  overflow: hidden;
  mix-blend-mode: multiply;
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.map-sketch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  min-height: 46px;
  padding: 14px clamp(30px, 8vw, 108px);
  background: var(--green);
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.78rem;
  overflow: visible;
}

.footer-flower {
  position: absolute;
  right: clamp(62px, 8.5vw, 152px);
  bottom: 10px;
  z-index: 2;
  width: clamp(168px, 12vw, 232px);
  max-width: none;
  pointer-events: none;
}

.site-footer p {
  position: relative;
  z-index: 3;
  margin: 0;
}

.footer-credit {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-credit:hover {
  color: #fffaf0;
  text-decoration: underline;
}

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

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: grid;
    max-height: 0;
    gap: 0;
    padding-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition:
      max-height 340ms ease,
      opacity 220ms ease,
      padding-top 280ms ease,
      transform 280ms ease,
      visibility 0s linear 340ms;
  }

  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    max-height: 330px;
    padding-top: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition:
      max-height 380ms ease,
      opacity 240ms ease,
      padding-top 280ms ease,
      transform 280ms ease,
      visibility 0s;
  }

  .site-nav a {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 190ms ease, transform 240ms ease;
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-open .site-nav a:nth-child(1) {
    transition-delay: 40ms;
  }

  .site-header.is-open .site-nav a:nth-child(2) {
    transition-delay: 70ms;
  }

  .site-header.is-open .site-nav a:nth-child(3) {
    transition-delay: 100ms;
  }

  .site-header.is-open .site-nav a:nth-child(4) {
    transition-delay: 130ms;
  }

  .site-header.is-open .site-nav a:nth-child(5) {
    transition-delay: 160ms;
  }

  .offer-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-strip article:nth-child(3) {
    border-right: 0;
  }

  .offer-strip article:nth-child(n + 4) {
    margin-top: 28px;
  }

  .menu-preview,
  .full-menu-intro,
  .story-section,
  .seasonal-gallery,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .menu-preview {
    height: auto;
    background: var(--paper);
  }

  .menu-photo-grid {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
    grid-template-rows: 260px 260px;
    height: auto;
    min-height: auto;
    padding: 28px;
  }

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

  .visit-section {
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  }

  .map-sketch {
    height: 160px;
  }

  .footer-flower {
    right: 24px;
    width: clamp(140px, 16vw, 190px);
  }

  .flower-gallery {
    grid-template-rows: repeat(5, clamp(86px, 10vw, 124px));
  }

  .menu-photo img {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 82px;
    padding: 15px 20px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-sub {
    font-size: 0.55rem;
  }

  .hero {
    min-height: clamp(620px, 78vh, 690px);
    min-height: clamp(620px, 78svh, 690px);
  }

  .hero-image {
    object-position: center 46%;
  }

  .hero-shadow {
    background:
      linear-gradient(0deg, rgba(9, 15, 9, 0.82) 0%, rgba(9, 15, 9, 0.24) 78%),
      linear-gradient(90deg, rgba(9, 15, 9, 0.45), rgba(9, 15, 9, 0.08));
  }

  .hero-content {
    align-self: end;
    padding: 56px 24px 86px;
    transform: translateY(-38px);
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(5.35rem, 22.5vw, 7.4rem);
  }

  .hero p {
    margin-bottom: 24px;
  }

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

  .hero-mark {
    top: 62px;
    right: 16px;
    bottom: auto;
    z-index: 1;
    width: clamp(122px, 34vw, 156px);
    opacity: 0.78;
    filter: brightness(1.35) drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
  }

  .offer-strip {
    grid-template-columns: 1fr;
    margin-top: -34px;
    padding: 16px 22px;
  }

  .offer-strip article {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-strip article:nth-child(n + 4) {
    margin-top: 0;
  }

  .offer-strip article:last-child {
    border-bottom: 0;
  }

  .menu-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(278px, 1fr) minmax(132px, 0.48fr);
    gap: 8px;
    height: auto;
    padding: 0 24px 36px;
    background: var(--paper);
  }

  .menu-photo {
    min-height: 132px;
    border: 3px solid rgba(255, 250, 240, 0.96);
    border-radius: 6px;
    box-shadow: 0 14px 28px rgba(31, 35, 26, 0.12);
  }

  .menu-photo-primary {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 278px;
  }

  .menu-photo-secondary,
  .menu-photo-wide {
    grid-column: auto;
    grid-row: 2;
  }

  .menu-photo figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    max-width: calc(100% - 20px);
    padding: 6px 9px;
    background: rgba(255, 250, 240, 0.91);
    color: var(--green);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(31, 35, 26, 0.1);
  }

  .menu-photo-primary figcaption {
    left: 14px;
    bottom: 14px;
  }

  .menu-photo img,
  .story-image img {
    min-height: auto;
    height: 100%;
  }

  .story-section {
    padding-bottom: 36px;
  }

  .story-image {
    order: 2;
    height: clamp(284px, 78vw, 420px);
    margin: 0 24px;
    overflow: hidden;
    border: 3px solid rgba(255, 250, 240, 0.96);
    border-radius: 6px;
    box-shadow: 0 16px 30px rgba(31, 35, 26, 0.12);
  }

  .story-image img {
    object-position: center 30%;
  }

  .story-copy {
    order: 1;
    padding-bottom: 30px;
  }

  .event-band {
    min-height: 560px;
  }

  .event-content {
    max-width: 100%;
  }

  .event-content h2 {
    max-width: 390px;
    font-size: clamp(3.15rem, 13.5vw, 4.8rem);
  }

  .event-content p:not(.section-label) {
    max-width: 360px;
  }

  .event-content,
  .menu-copy,
  .full-menu-section,
  .story-copy,
  .seasonal-gallery,
  .visit-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .seasonal-gallery {
    gap: 28px;
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .seasonal-gallery::before {
    inset: 0 0 auto;
    width: 100%;
    height: 8px;
  }

  .seasonal-gallery h2 {
    max-width: 420px;
  }

  .seasonal-rhythm {
    margin-top: 22px;
  }

  .seasonal-rhythm div {
    padding: 12px 12px 12px 0;
  }

  .seasonal-rhythm div:nth-child(even) {
    padding-left: 12px;
  }

  .menu-mark {
    display: none;
  }

  .story-mark {
    display: block;
    top: 34px;
    right: -112px;
    bottom: auto;
    width: clamp(300px, 82vw, 420px);
    opacity: 0.115;
    transform: rotate(-8deg);
    transform-origin: 70% 88%;
  }

  .visit-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 28px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .visit-block,
  .hours-block {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(31, 35, 26, 0.11);
  }

  .hours-block {
    padding-top: 18px;
  }

  .contact-list {
    gap: 11px;
    margin-top: 14px;
  }

  .contact-list li {
    grid-template-columns: 24px 1fr;
    gap: 10px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hours-block dl {
    gap: 6px;
    margin-top: 14px;
  }

  .hours-block div {
    grid-template-columns: minmax(94px, 0.72fr) minmax(0, 1fr);
    gap: 16px;
    align-items: baseline;
  }

  .hours-block dt,
  .hours-block dd {
    font-size: 0.94rem;
  }

  .hours-block dd {
    text-align: right;
    white-space: nowrap;
  }

  .map-sketch {
    width: min(360px, 100%);
    height: clamp(154px, 45vw, 176px);
    justify-self: center;
    margin: 18px auto 0;
    padding-top: 6px;
    border-top: 1px solid rgba(31, 35, 26, 0.11);
    border-bottom: 0;
    opacity: 0.96;
  }

  .map-sketch img {
    object-fit: contain;
    object-position: center center;
  }

  .footer-flower {
    display: block;
    right: 0;
    bottom: 8px;
    width: 118px;
    opacity: 0.92;
    filter: drop-shadow(0 12px 18px rgba(31, 35, 26, 0.2));
  }

  .flower-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(82px, 24vw, 128px);
    grid-template-rows: none;
    gap: 8px;
    margin: 24px 0 0;
    padding: 0;
    overflow: visible;
    transform: rotate(-0.25deg);
  }

  .flower-tile,
  .flower-tile-large,
  .flower-tile-wide,
  .flower-tile:nth-child(2),
  .flower-tile:nth-child(3),
  .flower-tile:nth-child(5),
  .flower-tile:nth-child(6) {
    grid-column: auto;
    grid-row: span 1;
    aspect-ratio: auto;
    border-radius: 6px;
    border-width: 3px;
    box-shadow: 0 10px 22px rgba(31, 35, 26, 0.08);
    transform: none;
  }

  .flower-tile-large {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .flower-tile-wide {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .flower-tile:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .menu-actions,
  .full-menu-note {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    min-height: 0;
    padding: 18px 116px 20px 24px;
  }
}

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