@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Sacramento";
  src: url("../fonts/sacramento-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --cream: #f1ebe3;
  --cream-strong: #fbf6f0;
  --blush: #f06b9c;
  --blush-soft: #ffd5e4;
  --rose: #d24f7d;
  --espresso: #241814;
  --cocoa: #6c4c3d;
  --sand: #dcc7b8;
  --line: rgba(73, 49, 39, 0.16);
  --shadow: 0 26px 60px rgba(36, 24, 20, 0.1);
  --container: min(1320px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso);
  background: #ffffff;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream-strong);
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner,
.page-shell {
  width: var(--container);
  margin: 0 auto;
}

.header-inner {
  position: relative;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark img {
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
}

.header-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
}

.detail-icon::before {
  display: block;
  line-height: 1;
}

.page-shell {
  padding: 16px 0 24px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(36, 24, 20, 0.13);
  outline: none;
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream-strong);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
}

.btn-light {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 246, 240, 0.52);
  color: var(--cream-strong);
}

.info-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.info-panel-dark {
  background: linear-gradient(135deg, #2d1d18, #4a3027);
  color: var(--cream-strong);
}

.info-panel-dark p {
  color: rgba(255, 246, 240, 0.82);
}

.visit-art {
  min-height: 100%;
}

.visit-art-main {
  inset: 24px 24px 86px 24px;
}

.visit-art-badge {
  right: 32px;
  bottom: 18px;
  width: 140px;
  height: 140px;
  padding: 10px;
}

.visit-art-badge img {
  object-fit: cover;
  border-radius: 26px;
}

.hours {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.placeholder-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.gallery-card {
  padding: 18px;
}

.gallery-card-large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-main {
  display: grid;
  gap: 12px;
}

.footer-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

.footer-small {
  margin: 0;
}

.footer-instagram {
  margin: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(210, 79, 125, 0.25);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 107, 156, 0.18), rgba(255, 255, 255, 0.72));
  color: var(--rose);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  justify-content: flex-start;
  margin-bottom: 10px;
}

.footer-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 600;
}

.signature-showcase {
  margin-bottom: clamp(28px, 5vw, 64px);
}

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

.signature-card,
.order-card,
.process-step,
.map-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 250, 246, 0.72);
  box-shadow: var(--shadow);
}

.signature-card,
.order-card,
.process-step {
  padding: 18px;
}

.signature-card {
  text-align: center;
}

.signature-card img,
.order-card img,
.cafe-photo-card img {
  width: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.signature-card img,
.order-card img {
  aspect-ratio: 1.1;
  object-fit: contain;
  padding: 16px;
}

.photo-shot {
  padding: 0 !important;
  object-fit: cover !important;
}

.signature-card h3,
.order-card h3,
.process-step h3 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 0.98;
}

.signature-card p,
.order-card-meta,
.order-card-note,
.process-step p,
.contact-note,
.contact-subtext,
.contact-link,
.cafe-photo-card figcaption {
  color: var(--cocoa);
}

.signature-card p {
  margin: 10px 0 0;
}

.signature-heart {
  display: inline-flex;
  margin-top: 14px;
  color: var(--rose);
  font-size: 1.35rem;
}

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

.detail-list li {
  position: relative;
  padding-left: 24px;
  color: var(--cocoa);
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(240, 107, 156, 0.24);
  box-shadow: 0 0 0 1px rgba(210, 79, 125, 0.24);
}

.detail-list-strong li {
  font-weight: 600;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 64px);
}

.order-card-meta,
.order-card-note,
.process-step p,
.contact-note,
.cafe-photo-card figcaption {
  margin: 12px 0 0;
}

.order-card-price,
.process-step-count {
  margin: 14px 0 0;
  color: var(--rose);
  font-family: "Cormorant Garamond", serif;
}

.order-card-price {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
}

.order-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 64px);
}

.process-step-count {
  font-size: clamp(2.3rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.order-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.visit-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: clamp(28px, 5vw, 64px);
}

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

.contact-item {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

.contact-value,
.contact-link {
  font-weight: 700;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--rose);
  outline: none;
}

.map-card {
  overflow: hidden;
  min-height: 480px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.map-illustration {
  position: relative;
  isolation: isolate;
  background: #f3ede8;
}

.map-water,
.map-green,
.map-road,
.map-pin {
  position: absolute;
}

.map-water {
  right: -7%;
  bottom: -12%;
  width: 62%;
  height: 58%;
  border-radius: 48% 0 0 0;
  background: linear-gradient(135deg, #bfe4ee, #8dc8da);
  transform: rotate(-7deg);
}

.map-green {
  right: 20%;
  bottom: 14%;
  width: 56%;
  height: 22%;
  border-radius: 999px;
  background: rgba(174, 205, 139, 0.72);
  transform: rotate(-8deg);
}

.map-road {
  z-index: 1;
  height: 30px;
  border: 1px solid rgba(128, 120, 114, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 8px rgba(213, 207, 202, 0.4);
}

.map-road-main {
  left: -8%;
  right: -7%;
  top: 52%;
  transform: rotate(-7deg);
}

.map-road-secondary {
  left: 34%;
  top: -10%;
  width: 30px;
  height: 122%;
  transform: rotate(-26deg);
}

.map-road-third {
  left: 64%;
  top: -8%;
  width: 26px;
  height: 118%;
  transform: rotate(-18deg);
}

.map-pin {
  z-index: 2;
  left: 55%;
  top: 40%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.map-pin-dot {
  width: 26px;
  height: 26px;
  border: 5px solid white;
  border-radius: 999px 999px 999px 0;
  background: var(--rose);
  box-shadow: 0 10px 20px rgba(36, 24, 20, 0.18);
  transform: rotate(-45deg);
}

.map-pin-label {
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(36, 24, 20, 0.12);
  color: var(--espresso);
  font-weight: 800;
  line-height: 1.25;
}

.map-pin-label small {
  color: var(--cocoa);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--espresso);
  font: inherit;
}

.field input:focus-visible,
.field textarea:focus-visible {
  border-color: rgba(210, 79, 125, 0.55);
  outline: 2px solid rgba(240, 107, 156, 0.18);
  outline-offset: 2px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.cafe-photo-card {
  padding: 18px;
}

.cafe-photo-card img {
  min-height: 280px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .hero,
  .editorial-split,
  .visit-layout,
  .menu-section-head,
  .archive-grid,
  .philosophy-band,
  .feature-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .visit-art,
  .mini-gallery {
    min-height: 420px;
  }

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

  .footer-instagram {
    align-self: auto;
  }
}

@media (max-width: 760px) {
  .brand-word {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: max-content;
    min-width: 220px;
    max-width: min(240px, calc(100vw - 24px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(251, 246, 240, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    display: block;
    padding: 10px 12px;
    text-align: left;
  }

  .page-shell {
    padding-top: 8px;
  }

  .hero-art,
  .visit-art,
  .mini-gallery {
    min-height: 360px;
  }

  .art-card-main {
    inset: 22px 28px 72px 0;
  }

  .art-card-top,
  .art-card-bottom {
    width: 180px;
    height: 180px;
  }

  .menu-toolbar {
    top: 78px;
  }

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

  .menu-card-media {
    min-height: 184px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .site-header {
    padding-top: 12px;
  }

  .hero-art,
  .visit-art,
  .mini-gallery {
    min-height: 320px;
  }

  .art-card-top,
  .art-card-bottom {
    width: 150px;
    height: 150px;
  }

  .note-pill {
    left: 10px;
    bottom: -4px;
  }

  .group-tabs {
    display: flex;
    width: 100%;
  }

  .group-tab {
    flex: 1;
  }

  .hero-image-frame {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .visit-overview,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .order-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-cta-panel {
    grid-template-columns: 1fr;
  }
}

.hero-image-home img {
  object-position: 72% 52%;
}

.hero-product-scene {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 42vw, 560px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 42%, rgba(255, 213, 228, 0.85), transparent 13rem),
    linear-gradient(135deg, rgba(252, 236, 230, 0.96), rgba(241, 222, 212, 0.86));
  box-shadow: var(--shadow);
}

.hero-product-scene::before {
  content: "";
  position: absolute;
  inset: auto 8% 8% 15%;
  height: 34%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(-3deg);
}

.hero-product-scene img {
  position: absolute;
  object-fit: contain;
}

.hero-scene-drink {
  left: 14%;
  bottom: 13%;
  width: min(42%, 240px);
  filter: drop-shadow(0 24px 26px rgba(36, 24, 20, 0.16));
}

.hero-scene-pastry {
  right: 8%;
  bottom: 11%;
  width: min(52%, 320px);
  filter: drop-shadow(0 22px 24px rgba(36, 24, 20, 0.16));
}

.hero-scene-logo {
  top: 10%;
  right: 9%;
  width: min(34%, 220px);
  opacity: 0.88;
  filter: drop-shadow(0 10px 14px rgba(36, 24, 20, 0.08));
}

.signature-card {
  border-radius: 18px;
  box-shadow: none;
}

.signature-card img {
  aspect-ratio: 1.42;
  border-radius: 12px;
}

.signature-card p {
  display: none;
}

.signature-heart {
  color: var(--blush);
  font-size: 1.55rem;
}

.menu-reference {
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.menu-reference-copy {
  max-width: 760px;
}

.menu-page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu-sheet-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 18px;
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.menu-sheet-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(247, 239, 232, 0.9);
  box-shadow: var(--shadow);
}

.menu-sheet-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-order-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 56px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 246, 0.72);
  box-shadow: var(--shadow);
}

.order-hero {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.order-hero-image {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: clamp(320px, 36vw, 480px);
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 213, 228, 0.74), transparent 14rem),
    linear-gradient(135deg, rgba(252, 236, 230, 0.95), rgba(240, 209, 197, 0.86));
  box-shadow: var(--shadow);
}

.order-hero-image img {
  width: min(82%, 680px);
  filter: drop-shadow(0 24px 28px rgba(36, 24, 20, 0.16));
}

.order-board {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.whole-cakes-panel h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.small-bakes-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.order-card {
  border-radius: 18px;
  box-shadow: none;
}

.order-card-feature img {
  aspect-ratio: 1.55;
}

.order-card-compact {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.order-card-compact img {
  aspect-ratio: 1.3;
  padding: 10px;
}

.order-card-compact .btn,
.order-card-feature .btn {
  margin-top: 16px;
}

.process-step,
.map-card,
.info-panel,
.gallery-card {
  border-radius: 18px;
}

.visit-overview {
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  align-items: stretch;
}

.visit-overview .info-panel {
  padding: clamp(20px, 3vw, 30px);
}

.visit-overview .section-display {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.contact-list {
  gap: 12px;
}

.map-card,
.map-card iframe {
  min-height: clamp(380px, 40vw, 520px);
}

.cafe-photo-card img {
  min-height: 360px;
}

@media (max-width: 960px) {
  .menu-sheet-showcase,
  .order-board,
  .menu-order-preview {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .hero-product-scene,
  .order-hero-image {
    min-height: 320px;
  }

  .hero-scene-logo {
    width: min(38%, 180px);
  }

  .order-card-compact,
  .whole-cake-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .signature-grid,
  .order-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .map-card,
  .map-card iframe {
    min-height: 320px;
  }
}

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

  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .btn {
    transition: none;
  }
}

/* New design implementation layer */
:root {
  --design-cream: #fff7f3;
  --design-paper: #fffdf9;
  --design-pink: #f3a8bb;
  --design-pink-soft: #fde8ee;
  --design-pink-strong: #d64e79;
  --design-ink: #2d1b17;
  --design-brown: #6d4e43;
  --design-sage: #dfe8d0;
  --design-line: rgba(74, 48, 39, 0.15);
  --design-shadow: 0 18px 42px rgba(45, 27, 23, 0.1);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.45;
}

.site-header {
  padding: 10px 0;
  border-bottom: 1px solid rgba(204, 79, 122, 0.14);
  background: rgba(255, 248, 242, 0.92);
}

.header-inner {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  grid-column: 2;
  justify-self: center;
}

.brand-mark img {
  height: 48px;
}

.header-icon-button,
.header-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(204, 79, 122, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 8px 20px rgba(45, 27, 23, 0.08);
  color: var(--design-ink);
}

.menu-toggle {
  grid-column: 1;
  justify-self: start;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--design-ink);
}

.header-order-link {
  grid-column: 3;
  justify-self: end;
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  display: none;
  grid-column: 1 / -1;
  width: min(280px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid var(--design-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: var(--design-shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--design-ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: var(--design-pink-soft);
  color: var(--design-pink-strong);
}

.page-shell-design {
  display: grid;
  gap: 28px;
  width: min(1140px, calc(100vw - 28px));
  margin-right: auto;
  margin-left: auto;
  padding: 18px 0 38px;
}

.page-shell-design > section,
.page-shell-design > article,
.page-shell-design > div {
  margin-bottom: 0;
}

.page-shell-design h1,
.page-shell-design h2,
.page-shell-design h3,
.page-shell-design .panel-title,
.page-shell-design .menu-section-head h2 {
  letter-spacing: 0;
}

.page-shell-design h1,
.page-shell-design h2,
.page-shell-design h3 {
  color: var(--design-ink);
  font-family: "Cormorant Garamond", serif;
}

.eyebrow,
.footer-eyebrow {
  color: var(--design-pink-strong);
  letter-spacing: 0;
}

.btn {
  min-height: 44px;
  border-color: var(--design-ink);
  border-radius: 999px;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--design-ink);
  color: var(--design-cream);
}

.btn-outline {
  background: rgba(255, 253, 249, 0.82);
  color: var(--design-ink);
}

.btn-light {
  border-color: rgba(255, 253, 249, 0.64);
  background: rgba(255, 253, 249, 0.24);
  color: var(--design-paper);
}

.text-link {
  color: var(--design-pink-strong);
  letter-spacing: 0;
}

.home-hero,
.visit-hero,
.order-design-hero,
.menu-design-hero,
.order-promo-band,
.home-story,
.thanks-block,
.order-final-cta {
  overflow: hidden;
  border: 1px solid var(--design-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--design-shadow);
}

.home-hero,
.visit-hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: clamp(28px, 7vw, 70px);
  color: var(--design-paper);
}

.home-hero::after,
.visit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 27, 23, 0.08), rgba(45, 27, 23, 0.76));
}

.home-hero > img,
.visit-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-copy,
.visit-hero > div {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.home-hero h1,
.visit-hero h1,
.order-design-hero h1,
.menu-design-hero h1 {
  margin: 0;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.9;
}

.home-hero h1,
.visit-hero h1 {
  color: var(--design-paper);
  text-shadow: 0 2px 18px rgba(45, 27, 23, 0.45);
}

.home-hero p,
.visit-hero p,
.home-hero .eyebrow,
.visit-hero .eyebrow {
  color: rgba(255, 253, 249, 0.9);
}

.home-hero .btn-primary {
  background: var(--design-paper);
  color: var(--design-ink);
}

.design-section-heading {
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}

.design-section-heading h2,
.home-story h2,
.order-promo-band h2,
.thanks-block h2,
.order-final-cta h2,
.contact-form h2 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1;
}

.compact-heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

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

.design-product-card,
.process-step,
.info-panel,
.map-card,
.contact-form,
.gallery-card {
  border: 1px solid var(--design-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 12px 30px rgba(45, 27, 23, 0.07);
}

.design-product-card {
  display: grid;
  gap: 14px;
  padding: 12px;
  text-align: left;
}

.design-product-card img,
.signature-card img,
.order-card img {
  width: 100%;
  aspect-ratio: 1;
  padding: 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fffdf9, #fde4ec);
  object-fit: contain;
}

.design-product-card h3,
.signature-card h3,
.order-card h3,
.process-step h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1;
}

.design-product-card p,
.signature-card p,
.order-card-meta,
.order-card-note,
.process-step p,
.contact-note,
.contact-subtext {
  display: block;
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.order-promo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #f4a6bd, #fde4ec);
}

.order-promo-band img {
  width: 180px;
  aspect-ratio: 1;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.65);
  object-fit: contain;
}

.home-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
}

.home-story figure {
  margin: 0;
}

.home-story img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.social-strip,
.visit-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.social-strip img,
.visit-gallery img {
  width: 100%;
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid var(--design-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  object-fit: contain;
}

.amenity-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.amenity-strip span {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 54px;
  padding: 10px;
  border: 1px solid rgba(204, 79, 122, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--design-ink);
  font-weight: 800;
  text-align: center;
}

.thanks-block,
.order-final-cta {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 34px 22px;
  background: linear-gradient(135deg, #cc4f7a, #f4a6bd);
  text-align: center;
}

.thanks-block h2,
.order-final-cta h2,
.thanks-block p,
.order-final-cta p,
.thanks-block .script-mark,
.order-final-cta .eyebrow {
  color: var(--design-paper);
}

.script-mark {
  font-size: 2.6rem;
  letter-spacing: 0;
}

.menu-design-hero {
  display: grid;
  justify-items: center;
  padding: 48px 22px 30px;
  background:
    linear-gradient(rgba(255, 253, 249, 0.84), rgba(255, 253, 249, 0.84)),
    url("../images/hero/cover.jpeg") center / cover;
  text-align: center;
}

.menu-design-hero p {
  max-width: 580px;
}

.design-toolbar {
  top: 78px;
  margin-bottom: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 10px 24px rgba(45, 27, 23, 0.08);
}

.group-tabs {
  display: flex;
  gap: 6px;
  width: 100%;
  padding: 4px;
  border: 1px solid rgba(204, 79, 122, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
}

.group-tab {
  flex: 1;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--design-ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
}

.group-tab.is-active {
  background: var(--design-pink-strong);
  color: var(--design-paper);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid rgba(204, 79, 122, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--design-ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
}

.chip.is-active {
  background: var(--design-pink-soft);
  color: var(--design-pink-strong);
}

.design-menu-root {
  gap: 18px;
}

.design-menu-root .menu-section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.design-menu-root .menu-section-head {
  display: block;
  margin-bottom: 12px;
}

.design-menu-root .menu-section-head h2 {
  font-size: 2.2rem;
  line-height: 1;
  text-transform: none;
}

.design-menu-root .menu-section-summary {
  margin: 6px 0 0;
}

.design-menu-root .menu-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.design-menu-root .menu-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--design-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 10px 22px rgba(45, 27, 23, 0.06);
}

.design-menu-root .menu-card-media {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 8px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fffdf9, #fde4ec);
}

.design-menu-root .menu-card-media img {
  max-height: 96px;
}

.design-menu-root .menu-card-copy h3 {
  font-size: 1.45rem;
  letter-spacing: 0;
}

.design-menu-root .menu-card-price {
  margin-top: 8px;
  color: var(--design-pink-strong);
  font-size: 1.45rem;
}

.design-menu-root .menu-card.is-icon,
.design-menu-root .menu-card.is-badge {
  display: block;
}

.design-menu-root .menu-card.is-icon .menu-card-media,
.design-menu-root .menu-card.is-badge .menu-card-media {
  display: none;
}

.design-menu-root .menu-card.is-icon .menu-card-copy,
.design-menu-root .menu-card.is-badge .menu-card-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
}

.design-menu-root .menu-card.is-icon .menu-card-price,
.design-menu-root .menu-card.is-badge .menu-card-price {
  margin: 0;
  white-space: nowrap;
}

.menu-order-preview {
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
}

.page-shell-design .panel-title {
  font-size: 2.4rem;
  line-height: 1;
}

.order-design-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 1.08fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.order-design-hero figure {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 360px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf9, #fde4ec);
}

.order-design-hero img {
  width: min(88%, 520px);
  filter: drop-shadow(0 18px 24px rgba(45, 27, 23, 0.12));
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--design-brown);
}

.detail-list li::before {
  display: none;
}

.detail-list .detail-icon,
.contact-list .detail-icon,
.process-step .detail-icon,
.amenity-strip .detail-icon {
  color: var(--design-pink-strong);
}

.order-board {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
  margin-bottom: 0;
}

.whole-cake-grid,
.small-bakes-panel,
.process-grid {
  gap: 12px;
}

.order-card-feature img {
  aspect-ratio: 1.22;
}

.order-card-compact {
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 14px;
}

.order-card-price,
.process-step-count {
  color: var(--design-pink-strong);
  letter-spacing: 0;
}

.process-grid {
  margin-bottom: 0;
}

.process-step {
  padding: 16px;
}

.process-step-count {
  margin: 0 0 8px;
  font-size: 2.2rem;
}

.order-final-cta {
  justify-items: start;
  text-align: left;
}

.visit-hero {
  min-height: 58vh;
}

.visit-overview,
.contact-grid {
  gap: 14px;
  margin-bottom: 0;
}

.visit-overview {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
}

.visit-info-panel,
.contact-form {
  padding: 22px;
}

.contact-list {
  margin-top: 0;
}

.contact-item {
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 12px;
}

.contact-item .detail-icon {
  grid-row: 1 / span 3;
  margin-top: 2px;
}

.map-card {
  min-height: 420px;
  background: var(--design-sage);
}

.map-pin-label {
  border-radius: 8px;
}

.field input,
.field textarea {
  border-radius: 8px;
  background: var(--design-paper);
}

.visit-gallery {
  align-content: start;
}

.footer-main {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  padding: 22px;
  border: 1px solid var(--design-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  text-align: center;
}

.footer-eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer-links {
  justify-content: center;
  margin-bottom: 0;
}

.footer-social-link {
  border-radius: 8px;
  letter-spacing: 0;
}

@media (min-width: 1040px) {
  .page-shell-design {
    gap: 34px;
  }

  .home-hero,
  .visit-hero,
  .order-design-hero {
    min-height: 620px;
  }
}

@media (max-width: 960px) {
  .design-card-grid,
  .design-menu-root .menu-card-grid,
  .process-grid,
  .social-strip,
  .visit-gallery,
  .amenity-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-promo-band,
  .home-story,
  .order-design-hero,
  .order-board,
  .visit-overview,
  .contact-grid,
  .menu-order-preview {
    grid-template-columns: 1fr;
  }

  .order-promo-band {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .brand-mark img {
    height: 42px;
  }

  .header-icon-button,
  .header-order-link {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    right: auto;
    min-width: 220px;
    max-width: min(280px, calc(100vw - 28px));
    border-radius: 8px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .home-hero,
  .visit-hero {
    min-height: 72vh;
    padding: 26px;
  }

  .home-hero h1,
  .visit-hero h1,
  .order-design-hero h1,
  .menu-design-hero h1 {
    font-size: 3.25rem;
  }

  .design-section-heading h2,
  .home-story h2,
  .order-promo-band h2,
  .thanks-block h2,
  .order-final-cta h2,
  .contact-form h2,
  .page-shell-design .panel-title {
    font-size: 2.1rem;
  }

  .design-menu-root .menu-card,
  .order-card-compact {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .design-menu-root .menu-card-media {
    min-height: 100px;
  }
}

@media (max-width: 560px) {
  .page-shell-design {
    width: min(100vw - 20px, 1140px);
    gap: 18px;
    padding-top: 12px;
    padding-bottom: 28px;
  }

  .home-hero,
  .visit-hero {
    min-height: 430px;
    padding: 20px;
  }

  .home-hero::after,
  .visit-hero::after {
    background: linear-gradient(180deg, rgba(45, 27, 23, 0.04) 0%, rgba(45, 27, 23, 0.34) 42%, rgba(45, 27, 23, 0.8) 100%);
  }

  .home-hero h1,
  .visit-hero h1,
  .order-design-hero h1,
  .menu-design-hero h1 {
    font-size: 2.55rem;
  }

  .home-hero p,
  .visit-hero p {
    max-width: 270px;
    font-size: 0.94rem;
  }

  .home-hero .button-row {
    display: grid;
    width: min(100%, 250px);
  }

  .home-hero .btn {
    width: 100%;
  }

  .design-card-grid,
  .design-menu-root .menu-card-grid,
  .social-strip,
  .visit-gallery,
  .amenity-strip,
  .whole-cake-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .signature-card.design-product-card {
    gap: 8px;
    padding: 7px;
    text-align: center;
  }

  .signature-card img {
    padding: 6px;
  }

  .signature-card h3 {
    font-size: 1rem;
    line-height: 1.05;
  }

  .signature-card p {
    display: none;
  }

  .order-promo-band {
    grid-template-columns: minmax(0, 1fr) 120px;
    align-items: end;
    padding: 18px;
  }

  .order-promo-band .btn {
    grid-column: 1;
    width: max-content;
  }

  .order-promo-band img {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 120px;
    align-self: end;
  }

  .menu-design-hero {
    padding: 34px 18px 24px;
  }

  .design-toolbar {
    position: static;
    padding: 10px;
  }

  .design-menu-root .menu-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .design-menu-root .menu-section-head {
    margin-bottom: 8px;
  }

  .design-menu-root .menu-section-head .eyebrow {
    margin-bottom: 4px;
    font-size: 0.68rem;
  }

  .design-menu-root .menu-section-head h2 {
    font-size: 1.26rem;
    text-transform: uppercase;
  }

  .design-menu-root .menu-section-summary {
    display: none;
  }

  .design-menu-root .menu-card-media {
    min-height: 92px;
    padding: 6px;
  }

  .design-menu-root .menu-card-media img {
    max-height: 82px;
  }

  .design-menu-root .menu-card-copy h3 {
    font-size: 1.22rem;
  }

  .design-menu-root .menu-card-price {
    font-size: 1.22rem;
  }

  .order-design-hero,
  .home-story,
  .visit-info-panel,
  .contact-form,
  .footer-main {
    padding: 16px;
  }

  .order-design-hero figure,
  .map-card {
    min-height: 300px;
  }

  .order-design-hero {
    gap: 16px;
  }

  .order-design-hero figure {
    order: -1;
    min-height: 230px;
  }

  .order-design-hero img {
    width: min(84%, 280px);
  }

  .order-design-hero .button-row {
    display: none;
  }

  .detail-list {
    gap: 12px;
    margin-top: 16px;
  }

  .order-card-compact {
    grid-template-columns: 1fr;
  }

  .order-card-compact {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .order-card-compact img {
    align-self: stretch;
  }

  .visit-hero {
    min-height: 470px;
  }

  .visit-overview,
  .contact-grid {
    gap: 12px;
  }

  .design-menu-root .menu-card.is-icon .menu-card-copy,
  .design-menu-root .menu-card.is-badge .menu-card-copy {
    grid-template-columns: 1fr;
  }
}

/* Individual page design layer: 2.jpeg, 3.jpeg, 4.jpeg */
.sheet-hero {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
}

.ornament {
  color: var(--design-pink-strong);
  font-size: 1.4rem;
  line-height: 1;
}

.menu-sheet-hero,
.order-sheet-hero {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
  align-items: center;
}

.menu-sheet-page .design-tabs {
  margin-top: 16px;
}

.menu-sheet-page .design-tabs .group-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.menu-panel {
  padding: 18px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
}

.menu-panel h2,
.find-hours-panel h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 2rem;
}

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

.sheet-product-card {
  padding: 10px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.95);
  text-align: center;
}

.sheet-product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  object-fit: cover;
}

.sheet-product-card h3 {
  margin: 10px 0 4px;
  font-size: 1.45rem;
}

.sheet-product-card p {
  margin: 0;
}

.sheet-product-card strong {
  display: block;
  margin-top: 8px;
  color: var(--design-pink-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.split-menu-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: center;
}

.split-menu-panel > img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

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

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  color: var(--design-ink);
}

.ruled-list li {
  border-bottom: 1px solid rgba(45, 27, 23, 0.12);
  padding-bottom: 6px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.feature-row article {
  padding: 14px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
  text-align: center;
}

.feature-row h3 {
  margin: 8px 0 4px;
  font-size: 1.25rem;
}

.info-banner {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
}

.order-sheet-hero .hero-note {
  color: var(--design-ink);
  opacity: 0.7;
  font-weight: 400;
}

.cake-row-list {
  display: grid;
  gap: 12px;
}

.cake-order-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr) 200px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
}

.cake-order-row > img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.cake-order-row aside {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.cake-order-row strong {
  color: var(--design-pink-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.serving-line {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.how-order-panel {
  padding: 18px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
  text-align: center;
}

.how-order-panel h2 {
  margin: 0 0 14px;
}

.how-order-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
  gap: 12px;
}

.how-order-steps article {
  padding: 10px;
}

.how-order-steps h3 {
  margin: 8px 0 4px;
  font-size: 1.2rem;
}

.step-arrow {
  align-self: center;
  justify-self: center;
  color: var(--design-pink-strong);
  font-size: 2rem;
  line-height: 1;
}

.visit-sheet-hero {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
}

.visit-sheet-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-sheet-copy {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 26px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 249, 0.4);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.72);
}

.find-hours-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hours-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.map-sheet-panel {
  overflow: hidden;
  border: 1px solid var(--design-line);
  border-radius: 12px;
}

.map-sheet-panel iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.stay-touch-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
}

.stay-touch-panel > img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

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

.social-pair a,
.social-pair span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--design-ink);
}

@media (max-width: 960px) {
  .menu-sheet-hero,
  .order-sheet-hero,
  .split-menu-panel,
  .cake-order-row,
  .find-hours-panel,
  .stay-touch-panel {
    grid-template-columns: 1fr;
  }

  .cloud-card-grid,
  .feature-row,
  .how-order-steps,
  .social-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-arrow {
    display: none;
  }

  .cake-order-row aside {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .cloud-card-grid,
  .feature-row,
  .how-order-steps,
  .social-pair {
    grid-template-columns: 1fr;
  }

  .visit-sheet-copy {
    margin: 16px;
    padding: 16px;
  }

  .info-banner,
  .note-whatsapp-panel {
    grid-template-columns: 1fr;
  }
}

/* ===== Small-screen layout corrections ===== */
@media (max-width: 560px) {
  /* Gallery strip stays 4-across */
  .social-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* Amenity strip stays 3-across */
  .amenity-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Feature rows and order steps: 2×2 grid, not single column */
  .feature-row,
  .how-order-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Show prices on signature cards (hidden by earlier layers) */
.signature-card p {
  display: block;
  font-weight: 700;
  color: var(--design-pink-strong);
  margin-top: 4px;
  font-size: 0.95rem;
}

/* ===== Final reference alignment ===== */
.site-header {
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(214, 78, 121, 0.14);
  background: rgba(255, 251, 248, 0.98);
}

.header-inner {
  position: relative;
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 14px;
}

.header-icon-button,
.header-order-link {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--design-ink);
}

.header-icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.85;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--design-ink);
  text-decoration: none;
}

.brand-mark img {
  height: 68px;
  width: auto;
}

.brand-mark-lockup {
  display: grid;
  justify-items: center;
}

.brand-script {
  font-family: "Sacramento", cursive;
  font-size: 3.95rem;
  line-height: 0.78;
}

.brand-cafe {
  margin-top: 2px;
  padding-left: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.34em;
}

.brand-flower {
  width: 38px;
  height: 38px;
  margin-top: 7px;
  color: var(--design-pink-strong);
}

.site-nav {
  top: calc(100% + 8px);
}

.home-page {
  gap: 24px;
}

.home-reference-hero,
.home-order-sheet,
.home-signature-card,
.home-review-card {
  border: 1px solid rgba(214, 78, 121, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 14px 36px rgba(45, 27, 23, 0.06);
}

.home-reference-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
  background: url("../images/home/hero-photo.jpeg?v=hero-bg-4") center / cover no-repeat;
}

.home-reference-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 38px 20px 26px;
  background: transparent;
}

.home-reference-eyebrow {
  margin: 0;
  color: var(--design-pink-strong);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.10em;
}

.home-reference-hero h1 {
  margin: 0;
  color: var(--design-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-reference-hero h1 span {
  color: var(--design-pink-strong);
}

.home-reference-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(150px, 100%);
  color: rgba(214, 78, 121, 0.7);
}

.home-reference-divider span {
  height: 1px;
  background: rgba(214, 78, 121, 0.15);
}

.home-reference-divider i {
  display: block;
  width: 16px;
  height: 16px;
  font-style: normal;
  color: rgba(214, 78, 121, 0.72);
  font-size: 0;
  line-height: 1;
}

.home-reference-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.home-reference-blurb {
  margin: 0;
  max-width: 300px;
  color: var(--design-ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

.home-reference-hero .button-row {
  display: grid;
  gap: 12px;
  width: min(100%, 260px);
}

.home-reference-hero .btn {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-reference-hero .btn-primary {
  border-color: var(--design-pink-strong);
  background: var(--design-pink-strong);
  color: var(--design-paper);
}

.home-reference-hero .btn-light {
  border-color: rgba(214, 78, 121, 0.26);
  background: rgba(255, 253, 249, 0.96);
  color: var(--design-pink-strong);
}

.home-reference-dots {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  width: min(100%, 260px);
  margin-top: 6px;
}

.home-reference-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(214, 78, 121, 0.22);
}

.home-reference-dots .is-active {
  background: var(--design-pink-strong);
}

.home-reference-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.home-reference-scene {
  position: relative;
  height: 100%;
  min-height: 100%;
}

.home-reference-hero-photo {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.home-reference-drink {
  position: absolute;
  left: 10%;
  bottom: 18%;
  width: min(42vw, 240px);
  filter: drop-shadow(0 26px 28px rgba(45, 27, 23, 0.18));
}

.home-reference-pastry {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: min(48vw, 260px);
  filter: drop-shadow(0 20px 28px rgba(45, 27, 23, 0.16));
}

.home-title-stack {
  display: grid;
  gap: 7px;
  justify-items: center;
  text-align: center;
  margin-top:20px;
  margin-bottom: 30px;
}

.home-title-stack h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  max-width: 100%;
  color: var(--design-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-title-stack h2::before,
.home-title-stack h2::after {
  content: "";
  flex: 0 0 48px;
  height: 1px;
  background: rgba(214, 78, 121, 0.14);
}

.home-signature-grid,
.home-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-signature-grid {
  gap: 18px;
}

.home-signature-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 290px;
  padding: 0 0 8px;
  overflow: hidden;
  text-align: center;
  border-color: rgba(214, 78, 121, 0.13);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: none;
}

.home-signature-card img {
  width: 100%;
  aspect-ratio: 1.63;
  padding: 0;
  border-radius: 14px 14px 0 0;
  background: #f9ebef;
  object-fit: cover;
}

.home-signature-card h3 {
  margin: 10px 0 0;
  padding: 0 10px;
  color: var(--design-ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.25;
}

.home-signature-card p {
  margin: 0;
  padding: 0 10px;
  max-width: 190px;
  min-height: 3em;
  color: var(--design-ink);
  font-size: 0.84rem;
  line-height: 1.5;
}

.home-signature-heart {
  margin-top: auto;
  color: var(--design-pink-strong);
  font-size: 1.35rem;
}

.home-order-sheet {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(90deg, rgba(255, 245, 247, 0.98), rgba(251, 226, 234, 0.98));
}

.home-order-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.home-order-copy .eyebrow {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-order-copy h2 {
  margin: 0;
  color: var(--design-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 0.98;
}

.home-order-copy p {
  margin: 0;
  color: var(--design-ink);
  font-size: 1rem;
  line-height: 1.55;
}

.home-order-copy .btn {
  width: fit-content;
  min-width: 154px;
  border-radius: 10px;
  border-color: var(--design-pink-strong);
  background: var(--design-pink-strong);
  color: var(--design-paper);
}

.home-order-sheet > img {
  width: min(100%, 390px);
  justify-self: end;
  filter: drop-shadow(0 20px 30px rgba(45, 27, 23, 0.14));
}

.home-review-section {
  display: grid;
  gap: 16px;
}

.home-stars {
  color: var(--design-pink-strong);
  letter-spacing: 0.18em;
  font-size: 1.1rem;
}

.home-review-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 174px;
  padding: 42px 18px 18px;
  overflow: visible;
  text-align: center;
  border-color: rgba(214, 78, 121, 0.13);
  border-radius: 13px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: none;
}

.home-review-quote {
  position: absolute;
  top: -1px;
  left: 50%;
  padding: 0 13px;
  transform: translateX(-50%);
  background: #ffffff;
  color: var(--design-pink-strong);
  font-family: "Manrope", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.5;
}

.home-review-card blockquote {
  margin: 0;
  max-width: 132px;
  color: var(--design-ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.45;
}

.home-review-card p {
  margin: 0;
  color: var(--design-ink);
  font-size: 0.82rem;
  font-weight: 500;
}

footer.site-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  justify-content: normal;
  width: min(1140px, calc(100vw - 28px));
  margin: 0 auto 38px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(251, 226, 234, 0.5);
}

.home-amenity-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0;
}

.home-amenity-item .detail-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(214, 78, 121, 0.45);
  border-radius: 999px;
  color: var(--design-pink-strong);
}

.home-amenity-item strong {
  display: block;
  color: var(--design-ink);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.home-amenity-item p {
  margin: 4px 0 0;
  color: var(--design-brown);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 760px) {
  .brand-mark img {
    height: 56px;
    width: auto;
  }

  .brand-script {
    font-size: 3.2rem;
  }

  .brand-cafe {
    font-size: 0.98rem;
    letter-spacing: 0.32em;
  }

  .brand-flower {
    width: 33px;
    height: 33px;
    margin-top: 4px;
  }

  .home-reference-hero {
    min-height: 520px;
  }

  .home-reference-hero h1 {
    font-size: 3.1rem;
  }

  .home-order-copy h2 {
    font-size: 2.3rem;
  }

  .home-title-stack h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 560px) {
  .brand-mark img {
    height: 48px;
    width: auto;
  }

  .site-header {
    padding: 10px 0 8px;
  }

  .header-inner {
    width: min(100vw - 20px, 1120px);
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 12px;
  }

  .brand-script {
    font-size: 2.75rem;
  }

  .brand-cafe {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
  }

  .brand-flower {
    width: 28px;
    height: 28px;
  }

  .home-page {
    gap: 20px;
  }

  .home-reference-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    border-radius: 0;
  }

  .home-reference-copy {
    padding: 22px 12px 16px;
    gap: 10px;
    overflow: hidden;
  }

  .home-reference-hero h1 {
    font-size: 2.1rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .home-reference-blurb {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .home-reference-hero .btn {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-reference-drink {
    left: 8%;
    bottom: 22%;
    width: 44vw;
  }

  .home-reference-pastry {
    right: 2%;
    bottom: 8%;
    width: 48vw;
  }

  .home-title-stack h2 {
    font-size: 1.6rem;
  }

  .home-signature-grid,
  .home-review-grid {
    gap: 8px;
  }

  .home-signature-card {
    padding: 10px 8px 12px;
    border-radius: 14px;
  }

  .home-signature-card h3 {
    font-size: 1rem;
  }

  .home-signature-card p {
    min-height: 4.8em;
    font-size: 0.74rem;
  }

  .home-order-sheet {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
  }

  .home-order-copy h2 {
    font-size: 2.1rem;
  }

  .home-order-copy p {
    font-size: 0.92rem;
  }

  .home-order-copy .btn {
    min-width: 132px;
  }

  .home-review-card {
    min-height: 150px;
    padding: 12px 8px 14px;
    border-radius: 14px;
  }

  .home-review-card blockquote {
    font-size: 0.9rem;
  }

  .home-review-card p {
    font-size: 0.75rem;
  }

  footer.site-footer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .home-amenity-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 6px;
    padding: 8px 2px 0;
  }

  .home-amenity-item strong {
    font-size: 0.74rem;
  }

  .home-amenity-item p {
    font-size: 0.72rem;
  }

  .menu-sheet-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 28px 18px;
    text-align: center;
  }

  .menu-sheet-hero h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 0.95;
  }

  .menu-sheet-hero p {
    margin: 0;
    max-width: 290px;
  }

  .menu-sheet-page .design-tabs {
    width: 100%;
    margin-top: 8px;
  }

  .order-sheet-hero {
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 12px;
    align-items: start;
    padding: 18px;
  }

  .order-sheet-hero h1 {
    margin: 0;
    font-size: 2.45rem;
    line-height: 0.95;
  }

  .order-sheet-hero p {
    margin: 0;
  }

  .order-sheet-hero .hero-note {
    color: var(--design-pink-strong);
    opacity: 0.9;
    line-height: 1.35;
  }

  .order-sheet-hero > img {
    width: 100%;
    align-self: end;
    object-fit: contain;
  }

  .visit-sheet-hero {
    min-height: 600px;
  }

  .visit-sheet-hero > img {
    object-position: center;
    filter: saturate(0.92) brightness(0.98);
  }

  .visit-sheet-copy {
    max-width: 320px;
    margin: 18px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 251, 248, 0.78);
    backdrop-filter: blur(4px);
  }
}

/* ===== Layout Optimisation: Desktop & Mobile ===== */

/* ─── 1. Menu hero: single-column centred at ALL widths ─── */
/* Overrides the shared 2-col rule with .order-sheet-hero */
.menu-sheet-hero {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

/* ─── 2. Note / WhatsApp panel: centred card ─── */
.note-whatsapp-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 28px;
  text-align: center;
  border: 1px solid var(--design-line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
}

.note-whatsapp-panel .flower-line {
  color: var(--design-pink-strong);
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 4px;
}

.note-whatsapp-panel p {
  margin: 0;
  font-size: 0.88rem;
}

/* ─── 3a. Order hero note: muted at all widths ─── */
/* Overrides the ≤560px rule that sets it pink */
.order-sheet-hero .hero-note {
  color: var(--design-ink);
  opacity: 0.7;
  font-weight: 400;
}

/* ─── 3b. Desktop improvements (≥561px) ─── */
@media (min-width: 561px) {
  /* Menu hero: generous padding and larger h1 on desktop */
  .menu-sheet-hero {
    padding: 40px 28px 34px;
    gap: 10px;
  }

  .menu-sheet-hero h1 {
    font-size: 3.4rem;
    line-height: 0.9;
    margin: 0;
  }

  .menu-sheet-hero p {
    max-width: 440px;
    margin: 0;
  }

  /* Order hero: properly sized h1 and image on desktop */
  .order-sheet-hero {
    grid-template-columns: 1fr 220px;
    gap: 20px;
    padding: 30px 24px;
    align-items: center;
  }

  .order-sheet-hero h1 {
    font-size: 2.9rem;
    line-height: 0.95;
    margin: 0 0 8px;
  }

  .order-sheet-hero > img {
    max-height: 220px;
    width: 100%;
    object-fit: contain;
    align-self: center;
    justify-self: center;
  }
}

/* ─── 4. Large desktop (≥900px): taller home hero ─── */
@media (min-width: 900px) {
  .home-reference-hero {
    min-height: 620px;
  }
}

/* Menu reference alignment */
body:has(.menu-reference-page) {
  background: #fff6f6;
}

body:has(.menu-reference-page)::before {
  opacity: 0;
}

body:has(.menu-reference-page) .site-header {
  background: rgba(255, 247, 247, 0.98);
}

.menu-reference-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  width: min(1140px, calc(100vw - 28px));
  margin-right: auto;
  margin-left: auto;
  gap: 12px;
  padding: 44px 0 24px;
}

.menu-reference-page > section {
  width: 100%;
}

.menu-reference-page .sheet-hero {
  padding: 18px 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu-reference-page .menu-sheet-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.menu-reference-page .menu-sheet-hero h1 {
  margin: 0;
  color: var(--design-ink);
  font-size: clamp(3.3rem, 7.1vw, 3.95rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 0.92;
  text-transform: uppercase;
}

.menu-reference-page .menu-sheet-hero .home-reference-divider {
  width: min(150px, 100%);
  margin: -2px auto 0;
}

.menu-reference-page .menu-sheet-hero p {
  max-width: 368px;
  margin: 0;
  color: var(--design-ink);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.34;
}

.menu-reference-page .design-tabs {
  width: min(526px, 100%);
  margin-top: 8px;
  padding: 0;
  gap: 14px;
  border: 0;
  background: transparent;
}

.menu-reference-page .design-tabs .group-tab {
  min-height: 46px;
  border: 1px solid rgba(214, 78, 121, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.58);
  color: var(--design-ink);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(45, 27, 23, 0.03);
}

.menu-reference-page .design-tabs .group-tab.is-active {
  border-color: rgba(214, 78, 121, 0.42);
  background: var(--design-pink-strong);
  color: var(--design-paper);
  box-shadow: 0 10px 20px rgba(214, 78, 121, 0.18);
}

.menu-reference-page .menu-panel {
  padding: 20px;
  border: 1px solid rgba(214, 78, 121, 0.13);
  border-radius: 20px;
  background: rgba(255, 250, 250, 0.74);
  box-shadow: none;
}

.menu-reference-page .menu-panel h2 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: var(--design-ink);
  font-size: 1.54rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-reference-page .menu-panel h2 .detail-icon {
  color: var(--design-pink-strong);
  font-size: 23px;
}

.menu-reference-page .cloud-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-reference-page .sheet-product-card {
  padding: 0 0 12px;
  overflow: hidden;
  border: 1px solid rgba(214, 78, 121, 0.11);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: none;
}

.menu-reference-page .sheet-product-card img {
  width: 100%;
  aspect-ratio: 1.61;
  border-radius: 0;
  object-fit: cover;
}

.menu-reference-page .sheet-product-card h3 {
  min-height: 2.34em;
  margin: 10px 12px 4px;
  color: var(--design-ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.3;
}

.menu-reference-page .sheet-product-card p {
  max-width: 150px;
  min-height: 3em;
  margin: 0 auto;
  color: var(--design-ink);
  font-size: 0.86rem;
  line-height: 1.48;
}

.menu-reference-page .sheet-product-card strong {
  margin-top: 6px;
  color: var(--design-pink-strong);
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

.menu-reference-page .split-menu-panel:not(.menu-list-photo-panel) {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 28px;
  padding: 22px 24px;
}

.menu-reference-page .split-menu-panel:not(.menu-list-photo-panel) > div {
  min-width: 0;
}

.menu-reference-page .split-menu-panel:not(.menu-list-photo-panel) > img {
  width: 100%;
  aspect-ratio: 1.72;
  border-radius: 14px;
  object-fit: cover;
}

.menu-reference-page .price-list {
  gap: 8px;
}

.menu-reference-page .price-list li {
  gap: 18px;
  color: var(--design-ink);
  font-size: 0.97rem;
  font-weight: 600;
}

.menu-reference-page .ruled-list li {
  grid-template-columns: minmax(0, max-content) minmax(44px, 1fr) auto;
  gap: 14px;
  align-items: end;
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-reference-page .ruled-list li::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 1px;
  margin-bottom: 0.52em;
  background: rgba(45, 27, 23, 0.09);
}

.menu-reference-page .ruled-list li span:first-child {
  grid-column: 1;
}

.menu-reference-page .ruled-list li span:last-child {
  grid-column: 3;
}

.menu-reference-page .menu-list-photo-panel {
  position: relative;
  grid-template-columns: minmax(188px, 0.72fr) minmax(0, 1fr) 24px;
  gap: 15px 24px;
  align-items: center;
  padding: 20px 24px;
}

.menu-reference-page .menu-list-photo-left > h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.menu-reference-page .menu-list-photo-panel > img {
  width: 100%;
  aspect-ratio: 1.7;
  border-radius: 13px;
  object-fit: cover;
}

.menu-reference-page .menu-list-copy {
  min-width: 0;
}

.menu-reference-page .menu-panel-arrow {
  justify-self: end;
  color: var(--design-pink-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.8;
}

.menu-reference-page .menu-list-photo-right {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.04fr);
  gap: 24px;
}

.menu-reference-page .menu-list-photo-right .menu-list-copy {
  display: grid;
  align-content: start;
}

.menu-reference-page .menu-list-photo-right h2 {
  margin-bottom: 15px;
}

.menu-reference-page .feature-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 14px 0 7px;
  border-top: 1px solid rgba(214, 78, 121, 0.09);
}

.menu-reference-page .feature-row article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.menu-reference-page .feature-row .detail-icon {
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(214, 78, 121, 0.18);
  border-radius: 999px;
  color: var(--design-pink-strong);
  font-size: 26px;
}

.menu-reference-page .feature-row h3 {
  margin: 0 0 3px;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.menu-reference-page .feature-row p {
  margin: 0;
  color: var(--design-ink);
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .menu-reference-page {
    width: min(1140px, calc(100vw - 28px));
    gap: 12px;
    padding-top: 20px;
  }

  .menu-reference-page .menu-sheet-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.5rem);
  }

  .menu-reference-page .design-tabs {
    gap: 8px;
  }

  .menu-reference-page .design-tabs .group-tab {
    min-height: 42px;
    font-size: 0.82rem;
  }

  .menu-reference-page .cloud-card-grid,
  .menu-reference-page .feature-row,
  .menu-reference-page .split-menu-panel:not(.menu-list-photo-panel),
  .menu-reference-page .menu-list-photo-panel {
    grid-template-columns: 1fr;
  }

  .menu-reference-page .menu-panel,
  .menu-reference-page .split-menu-panel:not(.menu-list-photo-panel),
  .menu-reference-page .menu-list-photo-panel {
    padding: 18px;
  }

  .menu-reference-page .menu-panel-arrow {
    display: none;
  }

  .menu-reference-page .feature-row article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

}

@media (max-width: 560px) {
  html,
  body:has(.menu-reference-page) {
    max-width: 100%;
    overflow-x: hidden;
  }

  .menu-reference-page {
    width: min(1140px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    overflow: visible;
  }

  .menu-reference-page .menu-sheet-hero {
    width: 100%;
    overflow: visible;
  }

  .menu-reference-page .menu-sheet-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.9vw, 2.28rem);
    letter-spacing: 0.05em;
    line-height: 0.98;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .menu-reference-page .menu-sheet-hero p {
    max-width: 310px;
    padding: 0;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .menu-reference-page .group-tabs.design-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
    width: 100% !important;
    max-width: calc(100vw - 24px);
    min-width: 0;
    gap: 6px;
    overflow: hidden;
  }

  .menu-reference-page .group-tabs.design-tabs .group-tab {
    flex: initial;
    min-width: 0;
    width: auto;
    max-width: 100%;
    min-height: 42px;
    padding: 0 4px;
    font-size: 0.68rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-reference-page .menu-panel,
  .menu-reference-page .sheet-product-card,
  .menu-reference-page .menu-list-copy,
  .menu-reference-page .feature-row {
    min-width: 0;
    max-width: 100%;
  }

  .menu-reference-page .cloud-card-grid {
    gap: 12px;
  }

  .menu-reference-page .sheet-product-card img,
  .menu-reference-page .split-menu-panel:not(.menu-list-photo-panel) > img,
  .menu-reference-page .menu-list-photo-panel > img {
    max-width: 100%;
  }

}

.menu-reference-page.page-shell-design > section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
}

/* Order reference alignment */
body:has(.order-reference-page) {
  background: #fff6f6;
}

body:has(.order-reference-page)::before {
  opacity: 0;
}

body:has(.order-reference-page) .site-header {
  border-bottom: 1px solid rgba(214, 78, 121, 0.12);
  background: rgba(255, 247, 247, 0.98);
}

.order-reference-page {
  width: min(1140px, calc(100vw - 28px));
  gap: 24px;
  padding: 0 0 34px;
}

.order-reference-page > section {
  min-width: 0;
  box-sizing: border-box;
}

.order-reference-page .order-sheet-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  min-height: 310px;
  gap: 26px;
  align-items: center;
  padding: 44px 8px 36px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 246, 246, 0.96), rgba(255, 246, 246, 0.64));
  box-shadow: none;
}

.order-reference-page .order-sheet-hero > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.order-reference-page .order-sheet-hero h1 {
  margin: 0;
  color: var(--design-ink);
  font-size: clamp(3.4rem, 6.6vw, 5.15rem);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 0.96;
  text-transform: uppercase;
}

.order-reference-page .order-sheet-hero .ornament {
  position: relative;
  display: grid;
  grid-template-columns: minmax(86px, 0.28fr) auto minmax(86px, 0.28fr);
  gap: 14px;
  align-items: center;
  width: min(340px, 100%);
  color: var(--design-pink-strong);
  font-size: 1.12rem;
}

.order-reference-page .order-sheet-hero .ornament::before,
.order-reference-page .order-sheet-hero .ornament::after {
  content: "";
  height: 1px;
  background: rgba(214, 78, 121, 0.2);
}

.order-reference-page .order-sheet-hero p {
  margin: 0;
  color: var(--design-ink);
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.36;
}

.order-reference-page .order-sheet-hero .hero-note {
  color: var(--design-pink-strong);
  font-size: 1.32rem;
  font-weight: 700;
  opacity: 0.86;
}

.order-reference-page .order-sheet-hero > img {
  width: 100%;
  height: 310px;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  justify-self: stretch;
}

.order-reference-page .cake-row-list {
  gap: 8px;
}

.order-reference-page .cake-order-row {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 0.86fr) minmax(170px, 0.55fr);
  gap: 0;
  min-height: 190px;
  padding: 16px;
  border: 1px solid rgba(214, 78, 121, 0.13);
  border-radius: 16px;
  background: rgba(255, 250, 250, 0.74);
  box-shadow: none;
}

.order-reference-page .cake-order-row > img {
  width: 100%;
  height: 174px;
  border-radius: 10px;
  object-fit: cover;
}

.order-reference-page .cake-order-row > div {
  display: grid;
  align-content: center;
  min-height: 174px;
  padding: 0 30px;
  border-right: 1px solid rgba(214, 78, 121, 0.14);
}

.order-reference-page .cake-order-row h3 {
  margin: 0 0 12px;
  color: var(--design-ink);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.order-reference-page .cake-order-row p {
  margin: 0;
  color: var(--design-ink);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.48;
}

.order-reference-page .cake-order-row .serving-line {
  margin-top: 18px;
  color: var(--design-ink);
  font-size: 0.96rem;
}

.order-reference-page .serving-line .detail-icon {
  color: var(--design-pink-strong);
  font-size: 22px;
}

.order-reference-page .cake-order-row aside {
  align-self: stretch;
  align-content: center;
  justify-items: center;
  gap: 18px;
}

.order-reference-page .cake-order-row strong {
  color: var(--design-pink-strong);
  font-size: 2.45rem;
  font-weight: 600;
  line-height: 1;
}

.order-reference-page .cake-order-row .btn {
  min-width: 150px;
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  background: var(--design-pink-strong);
  color: var(--design-paper);
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-reference-page .how-order-panel {
  padding: 28px 34px 30px;
  border: 1px solid rgba(214, 78, 121, 0.16);
  border-radius: 16px;
  background: rgba(255, 250, 250, 0.74);
}

.order-reference-page .how-order-panel h2 {
  margin: 0 0 18px;
  color: var(--design-pink-strong);
  font-size: clamp(2rem, 3.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-reference-page .how-order-steps {
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.order-reference-page .how-order-steps article {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0;
}

.order-reference-page .how-order-steps .detail-icon {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(214, 78, 121, 0.16);
  border-radius: 999px;
  background: rgba(251, 226, 234, 0.34);
  color: var(--design-pink-strong);
  font-size: 48px;
}

.order-reference-page .how-order-steps h3 {
  margin: 4px 0 0;
  color: var(--design-ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
}

.order-reference-page .how-order-steps p {
  max-width: 150px;
  margin: 0;
  color: var(--design-ink);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.55;
}

.order-reference-page .step-arrow {
  display: block;
  margin-top: 42px;
  color: var(--design-pink-strong);
  font-size: 2.2rem;
  opacity: 0.82;
}

:is(.order-reference-page, .visit-reference-page) .order-note-panel {
  display: grid;
  grid-template-columns: 88px minmax(0, 1.25fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
  padding: 20px 34px;
  border: 1px solid rgba(214, 78, 121, 0.16);
  border-radius: 16px;
  background: rgba(255, 250, 250, 0.74);
  text-align: left;
}

:is(.order-reference-page, .visit-reference-page) .order-note-flower .detail-icon {
  width: 64px;
  height: 64px;
  color: var(--design-pink-strong);
  font-size: 58px;
}

:is(.order-reference-page, .visit-reference-page) .order-note-panel p {
  margin: 0;
  color: var(--design-ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

:is(.order-reference-page, .visit-reference-page) .order-note-panel p + p {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  border-left: 1px solid rgba(214, 78, 121, 0.18);
  padding-left: 34px;
}

:is(.order-reference-page, .visit-reference-page) .order-note-panel p + p .detail-icon {
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  color: var(--design-pink-strong);
  font-size: 54px;
}

:is(.order-reference-page, .visit-reference-page) .order-note-panel strong {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--design-pink-strong);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

:is(.order-reference-page, .visit-reference-page) .order-note-panel p + p strong {
  display: inline;
  margin-bottom: 0;
  color: var(--design-pink-strong);
  text-transform: none;
}

:is(.order-reference-page, .visit-reference-page) .order-note-panel p + p a {
  color: var(--design-pink-strong);
  font: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

:is(.order-reference-page, .visit-reference-page) .order-note-panel p + p a:hover,
:is(.order-reference-page, .visit-reference-page) .order-note-panel p + p a:focus-visible {
  color: var(--design-pink-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 960px) {
  .order-reference-page .order-sheet-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.95fr);
  }

  .order-reference-page .cake-order-row {
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr) minmax(150px, 0.52fr);
  }

  .order-reference-page .step-arrow {
    display: block;
  }
}

@media (max-width: 720px) {
  .order-reference-page {
    width: min(1140px, calc(100vw - 24px));
    gap: 18px;
  }

  .order-reference-page .order-sheet-hero,
  .order-reference-page .cake-order-row,
  .order-reference-page .order-note-panel {
    grid-template-columns: 1fr;
  }

  .order-reference-page .order-sheet-hero {
    padding: 28px 0 12px;
  }

  .order-reference-page .order-sheet-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.25rem);
    letter-spacing: 0.025em;
    overflow-wrap: anywhere;
  }

  .order-reference-page .order-sheet-hero p,
  .order-reference-page .order-sheet-hero .hero-note {
    font-size: 1.05rem;
  }

  .order-reference-page .order-sheet-hero > img {
    height: 230px;
  }

  .order-reference-page .cake-order-row > div {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
  }

  .order-reference-page .cake-order-row aside {
    justify-items: start;
  }

  .order-reference-page .how-order-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-reference-page .step-arrow {
    display: none;
  }

  .order-reference-page .order-note-panel,
  .visit-reference-page .order-note-panel {
    gap: 16px;
    padding: 20px;
  }

  .order-reference-page .order-note-panel p + p,
  .visit-reference-page .order-note-panel p + p {
    grid-template-columns: 48px minmax(0, 1fr);
    border-left: 0;
    padding-left: 0;
  }
}

/* Visit reference alignment */
body:has(.visit-reference-page) {
  background: #fff6f6;
}

body:has(.visit-reference-page)::before {
  opacity: 0;
}

body:has(.visit-reference-page) .site-header {
  border-bottom: 1px solid rgba(214, 78, 121, 0.12);
  background: rgba(255, 247, 247, 0.98);
}

.visit-reference-page {
  width: min(1140px, calc(100vw - 28px));
  gap: 28px;
  padding: 0 0 34px;
}

.visit-reference-page > section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.visit-reference-page .visit-sheet-hero {
  min-height: 760px;
  border: 0;
  border-radius: 0;
  background: #fff6f6;
  box-shadow: none;
}

.visit-reference-page .visit-sheet-hero > img {
  object-position: center top;
  filter: saturate(0.94) brightness(1.02);
}

.visit-reference-page .visit-sheet-hero::after {
  content: "";
  position: absolute;
  inset: 0 40% 0 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 247, 247, 0.98), rgba(255, 247, 247, 0.82) 58%, rgba(255, 247, 247, 0));
  pointer-events: none;
}

.visit-reference-page .visit-sheet-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  max-width: 430px;
  margin: 126px 0 0 18px;
  padding: 0 0 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.visit-reference-page .visit-sheet-copy .eyebrow {
  display: grid;
  grid-template-columns: auto minmax(70px, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0;
  color: var(--design-pink-strong);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-reference-page .visit-sheet-copy .eyebrow::after {
  content: "";
  height: 1px;
  background: rgba(214, 78, 121, 0.22);
}

.visit-reference-page #visit-title {
  margin: 0;
  color: var(--design-ink);
  font-size: clamp(2.6rem, 4.6vw, 4.1rem);
  font-weight: 700;
  line-height: 1.04;
}

.visit-reference-page .visit-sheet-copy .ornament {
  display: grid;
  grid-template-columns: minmax(70px, 0.24fr) auto minmax(70px, 0.24fr);
  gap: 14px;
  align-items: center;
  margin-top: 0;
  width: min(250px, 100%);
  color: var(--design-pink-strong);
  font-size: 1.1rem;
  text-align: center;
}

.visit-reference-page #visit-title + .ornament {
  margin-top: -16px;
}

.visit-reference-page .visit-sheet-copy .ornament::before,
.visit-reference-page .visit-sheet-copy .ornament::after {
  content: "";
  height: 1px;
  background: rgba(214, 78, 121, 0.25);
}

.visit-reference-page .visit-sheet-copy p:last-child {
  max-width: 360px;
  margin: 0;
  color: var(--design-ink);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.45;
}

.visit-reference-page .find-hours-panel {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 0;
  padding: 36px 54px;
  border: 1px solid rgba(214, 78, 121, 0.16);
  border-radius: 18px;
  background: rgba(255, 250, 250, 0.9);
  box-shadow: none;
}

.visit-reference-page .find-hours-panel article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  column-gap: 24px;
  align-content: start;
}

.visit-reference-page .find-hours-panel article + article {
  border-left: 1px solid rgba(214, 78, 121, 0.16);
  padding-left: 52px;
}

.visit-reference-page .find-hours-panel h2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--design-pink-strong);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-reference-page .find-hours-panel h2 .detail-icon,
.visit-reference-page .feature-row .detail-icon,
.visit-reference-page .social-pair .detail-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(214, 78, 121, 0.16);
  border-radius: 999px;
  background: rgba(251, 226, 234, 0.34);
  color: var(--design-pink-strong);
  font-size: 36px;
}

.visit-reference-page .find-hours-panel article > p,
.visit-reference-page .hours-list,
.visit-reference-page .script-mark {
  grid-column: 2;
}

.visit-reference-page .find-hours-panel p {
  margin: 20px 0 0 0;
  color: var(--design-ink);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}

.visit-reference-page .find-hours-panel p + p {
  margin-top: 22px;
}

.visit-reference-page .find-hours-panel strong {
  display: inline-block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  line-height: 1;
}

.visit-reference-page .hours-list {
  gap: 16px;
  text-decoration: none;
}

.visit-reference-page .hours-list li {
  gap: 24px;
  color: var(--design-ink);
  font-size: 1.06rem;
  font-weight: 700;
  border-bottom: 0;
  text-decoration: none;
}

.visit-reference-page .hours-list li span {
  text-decoration: none;
}

.visit-reference-page .script-mark {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 78, 121, 0.14);
  color: var(--design-pink-strong) !important;
  font-family: "Sacramento", cursive;
  font-size: 2.45rem !important;
  font-weight: 400 !important;
  text-align: center;
}

.visit-reference-page .map-sheet-panel {
  overflow: hidden;
  border: 1px solid rgba(214, 78, 121, 0.14);
  border-radius: 16px;
  background: rgba(255, 250, 250, 0.74);
}

.visit-reference-page .map-sheet-panel img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.visit-reference-page .feature-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 26px 0 20px;
  border: 0;
  background: transparent;
}

.visit-reference-page .feature-row article {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0 26px;
  border: 0;
  border-right: 1px solid rgba(214, 78, 121, 0.15);
  border-radius: 0;
  background: transparent;
}

.visit-reference-page .feature-row article:last-child {
  border-right: 0;
}

.visit-reference-page .feature-row h3 {
  margin: 6px 0 0;
  color: var(--design-ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.visit-reference-page .feature-row p {
  max-width: 150px;
  margin: 0;
  color: var(--design-ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.visit-reference-page .stay-touch-panel {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 78, 121, 0.16);
  border-radius: 16px;
  background: rgba(255, 250, 250, 0.74);
}

.visit-reference-page .stay-touch-panel > img {
  height: 230px;
  border-radius: 0;
  object-fit: cover;
}

.visit-reference-page .stay-touch-panel > div {
  display: grid;
  gap: 16px;
  padding: 34px 40px 34px 0;
}

.visit-reference-page .stay-touch-panel h2 {
  margin: 0;
  color: var(--design-pink-strong);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visit-reference-page .stay-touch-panel p {
  margin: 0;
  color: var(--design-ink);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}

.visit-reference-page .social-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.visit-reference-page .social-pair a,
.visit-reference-page .social-pair span {
  gap: 14px;
  color: var(--design-ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 960px) {
  .visit-reference-page .visit-sheet-hero {
    min-height: 620px;
  }
}

@media (max-width: 720px) {
  .visit-reference-page {
    width: min(1140px, calc(100vw - 24px));
    gap: 20px;
  }

  .visit-reference-page .visit-sheet-hero {
    min-height: 560px;
  }

  .visit-reference-page .visit-sheet-hero::after {
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 247, 247, 0.98), rgba(255, 247, 247, 0.68));
  }

  .visit-reference-page .visit-sheet-copy {
    max-width: 330px;
    margin: 58px 16px 0;
    gap: 14px;
  }

  .visit-reference-page #visit-title {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }

  .visit-reference-page #visit-title + .ornament {
    margin-top: -12px;
  }

  .visit-reference-page .visit-sheet-copy p:last-child {
    font-size: 1.1rem;
  }

  .visit-reference-page .find-hours-panel {
    grid-template-columns: 1fr;
  }

  .visit-reference-page .find-hours-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
    padding: 22px;
  }

  .visit-reference-page .find-hours-panel article + article {
    border-left: 0;
    border-top: 1px solid rgba(214, 78, 121, 0.16);
    padding: 28px 0 0;
  }

  .visit-reference-page .find-hours-panel article,
  .visit-reference-page .find-hours-panel h2 {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
  }

  .visit-reference-page .find-hours-panel h2 .detail-icon,
  .visit-reference-page .feature-row .detail-icon,
  .visit-reference-page .social-pair .detail-icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .visit-reference-page .map-sheet-panel img {
    min-height: 220px;
  }

  .visit-reference-page .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .visit-reference-page .feature-row article:nth-child(2n) {
    border-right: 0;
  }

  .visit-reference-page .stay-touch-panel > img {
    height: 220px;
  }

  .visit-reference-page .stay-touch-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .visit-reference-page .stay-touch-panel > div {
    padding: 28px;
  }

  .visit-reference-page .social-pair {
    grid-template-columns: 1fr;
  }

}
