:root {
  --ink: #171415;
  --muted: #5f5650;
  --mauve: #d9a391;
  --accent-soft: #f0d8cf;
  --mauve-dark: #171415;
  --rose: hsl(13, 33%, 59%);
  --blush: #f4e6de;
  --ivory: #fffaf5;
  --paper: #fbf2ea;
  --sage: #77735c;
  --line: #efe0da;
  --shadow: 0 18px 45px rgba(107, 63, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes page-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

body.is-leaving {
  animation: page-out 0.25s ease forwards;
  pointer-events: none;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 5%, rgba(244, 230, 222, 0.9), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(119, 115, 92, 0.12), transparent 22rem),
    var(--ivory);
  font-family: Inter, Arial, sans-serif;
  animation: page-in 0.25s ease forwards;
}

body::before {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 10px;
  pointer-events: none;
  content: "";
  background: var(--rose);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 48px;
  padding: 6px clamp(18px, 4vw, 56px) 6px clamp(32px, 4vw, 56px);
  background: hsla(13, 33%, 59%, 0.82);
  border-bottom: none;
  backdrop-filter: blur(18px);
}

.hero-logo,
.mini-logo,
.footer img {
  border-radius: 50%;
  border: 1px solid rgba(191, 123, 107, 0.12);
}

.page-logo-wrap {
  padding: clamp(44px, 8vw, 88px) clamp(18px, 5vw, 72px) 0 clamp(32px, 5vw, 72px);
}

.hero-logo {
  width: clamp(132px, 22vw, 220px);
  height: clamp(132px, 22vw, 220px);
  margin-bottom: 22px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(107, 63, 48, 0.14);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 24px;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  transition: color 0.18s;
}

.nav a:hover {
  color: var(--rose);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.15s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(44px, 8vw, 88px) clamp(18px, 5vw, 72px) 36px clamp(32px, 5vw, 72px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
.menu-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--rose);
  font-size: clamp(3.8rem, 11vw, 8.6rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mauve);
  border-radius: 50px;
  padding: 0 22px;
  cursor: pointer;
  font: 700 0.82rem/1.2 Inter, sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}

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

.button.secondary {
  color: var(--rose);
  border-color: var(--sage);
  background: rgba(255, 250, 246, 0.76);
}

.button.primary:hover {
  background: var(--mauve);
  border-color: var(--mauve);
}

.button.secondary:hover {
  border-color: var(--rose);
  background: var(--blush);
}

.hero-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(119, 115, 92, 0.28);
  border-radius: 0 0 0 80px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 72px) 18px clamp(32px, 5vw, 72px);
  color: var(--ivory);
  background: var(--rose);
}

.intro-band p {
  margin: 0;
  font-family: "Dancing Script", cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.1;
  text-align: center;
}

.intro-band span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ivory);
}

.section,
.menu-section,
.order-section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px) clamp(58px, 9vw, 100px) clamp(32px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.script {
  margin: 0;
  color: var(--mauve);
  font-family: "Dancing Script", cursive;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.15;
}

h2 {
  margin: 0;
  color: var(--rose);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 1.08;
}

.section-heading p:not(.script) {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.photo-slot--wide {
  grid-column: span 2;
  min-height: 280px;
}

.portfolio-feature,
.photo-slot,
.menu-card,
.extras article,
.order-form {
  border: 1px solid rgba(191, 123, 107, 0.09);
  background: rgba(255, 250, 246, 0.8);
}

.portfolio-feature {
  grid-row: span 2;
  overflow: hidden;
}

.portfolio-feature img {
  width: 100%;
  height: 418px;
  object-fit: cover;
  object-position: top center;
}

.asset-frame {
  display: grid;
  min-height: 620px;
  place-items: center;
  background:
    linear-gradient(rgba(255, 250, 246, 0.9), rgba(255, 250, 246, 0.9)),
    repeating-linear-gradient(135deg, rgba(191, 123, 107, 0.06), rgba(191, 123, 107, 0.06) 12px, transparent 12px, transparent 24px);
}

.asset-frame span {
  width: min(280px, calc(100% - 40px));
  border: 1px solid var(--line);
  padding: 18px;
  color: var(--rose);
  background: rgba(255, 250, 246, 0.86);
  font-family: "Dancing Script", cursive;
  font-size: 2.6rem;
  line-height: 1.15;
  text-align: center;
}

.portfolio-feature div {
  padding: 22px;
}

.portfolio-feature h3 {
  margin: 0;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.12;
}

.photo-slot {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 10px 12px;
  color: var(--rose);
  background: rgba(255, 250, 246, 0.86);
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  line-height: 1.15;
  text-align: center;
}

.photo-slot.muted {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 250, 246, 0.88), rgba(255, 250, 246, 0.88)),
    repeating-linear-gradient(135deg, rgba(119, 115, 92, 0.16), rgba(119, 115, 92, 0.16) 12px, transparent 12px, transparent 24px);
}

.mini-logo {
  width: 112px;
  height: 112px;
  margin: 0 auto 16px;
  object-fit: cover;
}

.menu-section {
  background: var(--paper);
}

.menu-page {
  padding-top: clamp(38px, 6vw, 72px);
}

.menu-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px clamp(20px, 4vw, 48px);
  align-items: end;
  max-width: 1120px;
  margin: 0 auto 34px;
}

.menu-page-heading .script {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.menu-page-heading h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.08;
}

.menu-page-heading p:not(.script) {
  grid-column: 1;
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-page-heading .button {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
}

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

.menu-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  min-height: 338px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(107, 63, 48, 0.07);
}

.menu-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--rose);
  background: rgba(255, 250, 245, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-title {
  margin: 0;
  color: var(--rose);
  font-size: clamp(2.45rem, 4vw, 3rem);
  line-height: 1.15;
}

.menu-title span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
}

dt,
dd {
  margin: 0;
}

dt {
  color: var(--ink);
  font-weight: 600;
}

dd {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.size-actions {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.size-actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 11px 13px;
  color: var(--rose);
  background: white;
  cursor: pointer;
  font: 700 0.84rem/1.25 Inter, sans-serif;
  text-align: left;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.size-actions button span {
  min-width: 0;
}

.size-actions button strong {
  flex: 0 0 auto;
}

.size-actions button:hover {
  border-color: var(--rose);
  background: #fff7f1;
}

.size-actions button.is-selected {
  border-color: var(--rose);
  color: var(--ink);
  background: var(--blush);
  box-shadow: inset 0 0 0 1px rgba(185, 130, 115, 0.28);
}

.size-actions button.is-selected strong::after {
  content: " ✓";
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.extras {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.extras article {
  padding: 24px;
  background: rgba(255, 250, 245, 0.72);
}

.extras h3,
.cart h3 {
  margin: 0 0 10px;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.extras p {
  min-height: 52px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.68;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: clamp(46px, 7vw, 84px);
  background: linear-gradient(180deg, var(--ivory), var(--blush));
}

.order-copy p:not(.script) {
  color: var(--muted);
  line-height: 1.72;
}

.booking-notes {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.booking-notes p {
  margin: 0;
  border-left: 3px solid var(--accent-soft);
  padding: 11px 13px;
  background: rgba(255, 250, 246, 0.72);
}

.order-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--rose);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  font: 500 1rem/1.5 Inter, sans-serif;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--rose);
  outline-offset: -1px;
  border-color: var(--rose);
}

.cart {
  border: 1px solid var(--line);
  padding: 16px;
  background: rgba(255, 250, 246, 0.76);
}

.cart-items {
  color: var(--muted);
  line-height: 1.7;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(191, 123, 107, 0.08);
  padding: 8px 0;
}

.cart-item-summary {
  display: grid;
  gap: 2px;
}

.cart-item-summary strong {
  color: var(--rose);
  font-size: 0.78rem;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quantity-control span {
  min-width: 44px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.quantity-control button,
.cart-remove {
  border: 0;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: white;
  background: var(--rose);
  cursor: pointer;
}

.quantity-control button {
  color: var(--rose);
  background: var(--accent-soft);
  font-weight: 800;
}

.cart-total {
  margin: 14px 0 0;
  color: var(--rose);
  font-weight: 800;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--rose);
  font-weight: 700;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px) 28px clamp(32px, 5vw, 72px);
  color: var(--rose);
  background: var(--ivory);
}

.footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.footer img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(191, 123, 107, 0.15);
}

address {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-style: normal;
}

address a {
  text-decoration: none;
}

.slideshow {
  position: relative;
  height: clamp(420px, 78vh, 740px);
  overflow: hidden;
  background: var(--ink);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.is-active {
  opacity: 1;
}

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

.slide-caption {
  position: absolute;
  bottom: 72px;
  left: clamp(32px, 5vw, 72px);
  margin: 0;
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.slide.is-active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  transition: background 0.18s;
}

.slideshow-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.slideshow-prev { left: clamp(16px, 3vw, 40px); }
.slideshow-next { right: clamp(16px, 3vw, 40px); }

.slideshow-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}

.dot.is-active {
  background: white;
  transform: scale(1.4);
}

.gallery-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
}

.about-intro {
  max-width: 620px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.about-pillar {
  border: 1px solid rgba(191, 123, 107, 0.09);
  background: rgba(255, 250, 246, 0.8);
  padding: 32px 28px;
}

.about-pillar .script {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.about-pillar h3 {
  margin: 0 0 12px;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-pillar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-story {
  background: var(--paper);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr) minmax(160px, 0.45fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.story-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(191, 123, 107, 0.12);
  box-shadow: var(--shadow);
}

.story-body {
  margin: 0;
}

.story-body p {
  margin: 0 0 1.6em;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.88;
}

.story-tagline {
  color: var(--mauve-dark) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem) !important;
  font-weight: 600;
  line-height: 1.4 !important;
}

.story-sign-off {
  margin-top: 2em !important;
  color: var(--mauve-dark) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
  font-weight: 600;
  line-height: 1.5 !important;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .order-section {
    grid-template-columns: 1fr;
  }

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

  .menu-page-heading .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .portfolio-grid,
  .menu-grid,
  .extras,
  .about-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero,
  .story-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .portfolio-feature {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 4px 0 10px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 11px 2px;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 16vw, 5.6rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(2.25rem, 13vw, 4.4rem);
  }

  .script {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .menu-title {
    font-size: clamp(2.3rem, 13vw, 3rem);
  }

  .size-actions button,
  dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .cart-row {
    grid-template-columns: 1fr auto;
  }

  .cart-item-summary,
  .quantity-control {
    grid-column: 1 / -1;
  }

  .size-actions button strong,
  dd {
    white-space: normal;
  }

  .intro-band,
  .portfolio-grid,
  .menu-grid,
  .extras,
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .intro-band span {
    display: none;
  }

  .portfolio-feature {
    grid-column: auto;
  }

  .portfolio-feature img,
  .asset-frame {
    height: 440px;
    min-height: 440px;
  }

  .footer,
  address {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Gallery Folders ─────────────────────────────────── */

.gallery-folders {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 0 clamp(18px, 5vw, 72px) 60px;
}

.folder-card {
  border: none;
  background: rgba(255, 250, 246, 0.8);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}

.folder-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(107, 63, 48, 0.18);
}

.folder-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blush);
}

.folder-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.folder-card:hover .folder-card-thumb img {
  transform: scale(1.04);
}

.folder-thumb-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blush), var(--accent-soft));
}

.folder-card-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.folder-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1.2;
}

.folder-count {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Open folder view ───────────────────────────────── */

.gallery-open-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(18px, 5vw, 72px) 28px;
}

.gallery-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  color: var(--rose);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.gallery-back:hover { opacity: 0.65; }

.gallery-open-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) 60px;
}

.gallery-img-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  transition: transform 0.18s;
}

.gallery-img-item:hover { transform: scale(1.02); }

.gallery-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-empty {
  color: var(--muted);
  font-style: italic;
  padding: clamp(18px, 5vw, 72px);
}

/* ── Lightbox ───────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(23, 20, 21, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.15s;
}

.lightbox-close:hover { color: white; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2.6rem;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 4px;
  line-height: 1;
  transition: background 0.15s;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.22); }
