:root {
  --cream: #fff8ee;
  --vanilla: #fffdf9;
  --butter: #ffd36e;
  --honey: #f7a541;
  --strawberry: #ef476f;
  --raspberry: #bf2048;
  --mint: #9de6cb;
  --blueberry: #2f6f9f;
  --cocoa: #382015;
  --coffee: #6b442c;
  --ink: #231711;
  --muted: #765f52;
  --line: #efdcc9;
  --shadow: 0 18px 50px rgba(63, 32, 19, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.announcement {
  display: none;
  background: var(--cocoa);
  color: var(--vanilla);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

.announcement span {
  padding: 0.55rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(111, 68, 44, 0.14);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(100% - 24px, 1180px);
  margin: 0 auto;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand strong {
  display: block;
  color: var(--cocoa);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 7px solid var(--strawberry);
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 28%, var(--butter) 0 4px, transparent 5px),
    radial-gradient(circle at 30% 70%, var(--mint) 0 4px, transparent 5px),
    var(--vanilla);
  box-shadow: inset 0 0 0 4px rgba(255, 211, 110, 0.75);
}

.brand-mark::after {
  position: absolute;
  content: "";
  inset: 10px;
  border-radius: 50%;
  background: var(--vanilla);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--vanilla);
  color: var(--cocoa);
  padding: 0.58rem 0.8rem;
  font-weight: 900;
}

.main-nav {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 0.55rem;
  background: var(--vanilla);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.main-nav a {
  border-radius: 999px;
  color: var(--coffee);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 0.72rem 0.85rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: #ffe9ec;
  color: var(--raspberry);
}

.hide-mobile {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  padding: 0.82rem 1.1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn svg,
.nav-toggle svg,
.feature-card svg,
.checkout-card svg,
.dashboard-title svg,
.contact-row svg,
.highlight-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.btn.primary {
  background: var(--raspberry);
  color: white;
  box-shadow: 0 14px 30px rgba(191, 32, 72, 0.28);
}

.btn.secondary {
  background: var(--cocoa);
  color: white;
}

.btn.light {
  background: var(--vanilla);
  color: var(--cocoa);
}

.btn.ghost-light {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  outline: 1px solid rgba(255, 255, 255, 0.42);
}

.btn.small {
  min-height: 40px;
  padding: 0.6rem 0.9rem;
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1682249883380-ff2e85909f39?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(46, 24, 13, 0.88), rgba(46, 24, 13, 0.64), rgba(46, 24, 13, 0.28)),
    linear-gradient(0deg, rgba(46, 24, 13, 0.45), rgba(46, 24, 13, 0.05));
}

.hero-grid {
  display: grid;
  align-items: end;
  gap: 2rem;
  width: min(100% - 32px, 1180px);
  min-height: 760px;
  margin: 0 auto;
  padding: 6rem 0 3rem;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--raspberry);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.light-copy .section-kicker {
  color: var(--butter);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtext,
.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-metrics {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-metrics span {
  display: block;
  width: fit-content;
  border-left: 4px solid var(--butter);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.55rem 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.hero-metrics strong {
  color: white;
}

.pickup-panel {
  width: 100%;
  max-width: 430px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.panel-header,
.pickup-row,
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-header {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(157, 230, 203, 0.2);
}

.pickup-panel h2 {
  margin: 1rem 0 0.2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.pickup-time {
  margin: 0 0 1rem;
  color: white;
  font-size: 2rem;
  font-weight: 950;
}

.pickup-row {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.8rem 0;
  font-weight: 800;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 120px;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: #fff1dc;
}

.section.dark {
  background:
    radial-gradient(circle at top left, rgba(239, 71, 111, 0.18), transparent 32rem),
    var(--cocoa);
  color: white;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

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

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.final-grid h2,
.story-layout h2,
.wife-section h2 {
  margin: 0;
  color: var(--cocoa);
  font-size: 2.3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.final-grid p,
.story-layout p,
.wife-section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.light-copy h2,
.light-copy p:not(.section-kicker) {
  color: white;
}

.category-grid,
.feature-grid,
.product-grid,
.reward-grid,
.checkout-grid {
  display: grid;
  gap: 1rem;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.category-card,
.feature-card,
.product-card,
.dashboard-card,
.checkout-card,
.form-card,
.contact-card,
.rewards-card,
.assistant-card,
.builder-summary,
.box-choice {
  border: 1px solid rgba(111, 68, 44, 0.14);
  border-radius: var(--radius);
  background: var(--vanilla);
  box-shadow: var(--shadow);
}

.category-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(63, 32, 19, 0.18);
}

.category-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f6dbc6;
}

.category-body {
  display: block;
  padding: 1rem;
}

.category-body strong {
  display: block;
  color: var(--cocoa);
  font-size: 1.04rem;
}

.category-body small {
  color: var(--muted);
  font-weight: 800;
}

.category-card.accent-pink {
  border-bottom: 5px solid var(--strawberry);
}

.category-card.accent-mint {
  border-bottom: 5px solid var(--mint);
}

.category-card.accent-blue {
  border-bottom: 5px solid var(--blueberry);
}

.category-card.accent-yellow {
  border-bottom: 5px solid var(--butter);
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
  padding: 1.25rem;
}

.feature-card svg,
.checkout-card svg,
.reward-grid svg {
  color: var(--raspberry);
  width: 28px;
  height: 28px;
}

.feature-card h3,
.checkout-card h3,
.reward-grid h3,
.product-body h3,
.box-choice h3 {
  margin: 0.8rem 0 0.35rem;
  color: var(--cocoa);
  font-size: 1.1rem;
}

.feature-card p,
.checkout-card p,
.reward-grid p,
.product-body p,
.box-choice p {
  margin: 0;
  color: var(--muted);
}

.split,
.final-grid,
.form-layout,
.catering-layout,
.contact-layout,
.story-layout,
.rewards-layout,
.builder-layout,
.order-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.check-grid {
  display: grid;
  gap: 0.75rem;
}

.check-grid div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--vanilla);
  padding: 0.85rem 1rem;
  color: var(--cocoa);
  font-weight: 900;
}

.check-grid svg {
  width: 18px;
  height: 18px;
  color: var(--raspberry);
}

.dual-panels {
  display: grid;
  gap: 1rem;
}

.dashboard-card {
  background: rgba(255, 253, 249, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
  padding: 1.1rem;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.dashboard-title h3 {
  margin: 0;
  font-size: 1.1rem;
}

.portal-list,
.mini-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portal-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.75rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.metric-grid span,
.mini-list li {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.8rem;
}

.metric-grid strong {
  display: block;
  color: var(--butter);
  font-size: 1.55rem;
}

.mini-list {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.65rem;
}

.final-cta {
  background: var(--vanilla);
}

.cta-stack {
  display: grid;
  gap: 0.8rem;
}

.site-footer {
  background: #24140e;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand strong {
  color: white;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: white;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 0.35rem 0;
}

.wife-note {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.bonzentech-credit {
  margin-top: 0.6rem;
  padding-bottom: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  text-align: right;
}

.bonzentech-credit a {
  color: var(--honey);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  inset: 0;
}

.page-hero::before {
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(46, 24, 13, 0.86), rgba(46, 24, 13, 0.46));
}

.menu-hero::before,
.order-hero::before,
.custom-hero::before,
.rewards-hero::before {
  background-image: url("https://images.unsplash.com/photo-1527515545081-5db817172677?auto=format&fit=crop&w=1600&q=80");
}

.catering-hero::before,
.about-hero::before {
  background-image: url("https://images.unsplash.com/photo-1682249883380-ff2e85909f39?auto=format&fit=crop&w=1600&q=80");
}

.contact-hero::before {
  background-image: url("https://images.unsplash.com/photo-1721412742313-fbcc3e48f770?auto=format&fit=crop&w=1600&q=80");
}

.page-hero-copy {
  padding: 5rem 0 3rem;
}

.page-hero .btn {
  margin-top: 1.4rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--vanilla);
  color: var(--coffee);
  cursor: pointer;
  font-weight: 950;
  padding: 0.65rem 0.9rem;
}

.filter-btn.active {
  background: var(--cocoa);
  color: white;
}

.menu-section {
  margin-top: 2.5rem;
}

.menu-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-section-heading h2 {
  margin: 0;
  color: var(--cocoa);
  font-size: 1.7rem;
}

.menu-section-heading a {
  color: var(--raspberry);
  font-weight: 950;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.compact-products {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-card > img {
  aspect-ratio: 4 / 3;
}

.product-body {
  padding: 1rem;
}

.product-body strong {
  display: block;
  margin-top: 0.85rem;
  color: var(--raspberry);
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ffe5eb;
  color: var(--raspberry);
  font-size: 0.72rem;
  font-weight: 950;
  padding: 0.32rem 0.58rem;
  text-transform: uppercase;
}

.tag.yellow {
  background: #fff0bf;
  color: #86540c;
}

.tag.mint {
  background: #dcfff2;
  color: #0e6d54;
}

.tag.blue {
  background: #e3f4ff;
  color: var(--blueberry);
}

.tag.pink {
  background: #ffe0ec;
  color: var(--raspberry);
}

.seasonal-band {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius);
  background: var(--cocoa);
  color: white;
  padding: 1.3rem;
}

.seasonal-band h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.5rem;
}

.seasonal-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.order-items {
  display: grid;
  gap: 0.8rem;
}

.order-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--vanilla);
  padding: 0.75rem;
}

.order-item img,
.icon-tile {
  width: 82px;
  height: 82px;
  border-radius: 6px;
}

.icon-tile {
  display: grid;
  place-items: center;
  background: #ffe7bc;
  color: var(--cocoa);
}

.icon-tile svg {
  width: 30px;
  height: 30px;
}

.order-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.order-item p {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  padding: 0.25rem;
}

.qty-control button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--cocoa);
  color: white;
  cursor: pointer;
}

.qty-control button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.qty-control span {
  min-width: 1.5rem;
  text-align: center;
  color: var(--cocoa);
  font-weight: 950;
}

.qty-control.mini {
  margin-top: 1rem;
}

.order-summary {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--vanilla);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.order-summary h2 {
  margin: 0 0 1rem;
  color: var(--cocoa);
}

.summary-row {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0;
}

.summary-row.total {
  color: var(--raspberry);
  font-size: 1.25rem;
}

.fine-print {
  color: var(--muted);
  font-size: 0.86rem;
}

.builder-layout {
  align-items: stretch;
}

.box-builder-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.box-choice {
  padding: 1rem;
}

.builder-summary {
  padding: 1.2rem;
}

.builder-summary h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

.donut-meter {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0d8c3;
}

.donut-meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--strawberry), var(--butter), var(--mint));
  transition: width 180ms ease;
}

.donut-meter.large {
  height: 18px;
  margin: 1rem 0;
}

.assistant-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.assistant-output {
  display: block;
  border-radius: var(--radius);
  background: #fff1dc;
  color: var(--cocoa);
  font-weight: 850;
  padding: 1rem;
}

.checkout-grid {
  grid-template-columns: 1fr;
}

.checkout-card,
.reward-grid article,
.portal-grid article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--vanilla);
  padding: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  color: var(--cocoa);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--vanilla);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--raspberry);
  box-shadow: 0 0 0 4px rgba(239, 71, 111, 0.12);
}

.form-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-success {
  min-height: 1.3rem;
  margin: 0;
  color: #176b4f;
  font-weight: 900;
}

.highlight-list,
.package-list,
.value-grid,
.portal-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.highlight-list span,
.package-list div,
.value-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--vanilla);
  padding: 0.9rem;
}

.highlight-list span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
}

.package-list strong,
.package-list span,
.value-grid strong {
  display: block;
}

.package-list span {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--raspberry);
  color: white;
  font-weight: 950;
}

.timeline h3 {
  margin: 0.85rem 0 0.3rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.estimate-card {
  gap: 1rem;
}

.check-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cocoa);
  font-weight: 900;
}

.estimate-output {
  display: grid;
  gap: 0.2rem;
  border-radius: var(--radius);
  background: var(--cocoa);
  color: white;
  padding: 1.1rem;
}

.estimate-output strong {
  color: var(--butter);
  font-size: 2.3rem;
  line-height: 1;
}

.estimate-output small {
  color: rgba(255, 255, 255, 0.75);
}

.rewards-card {
  padding: 1.4rem;
}

.rewards-card h2 {
  margin: 0.8rem 0 0.3rem;
  color: var(--cocoa);
  font-size: 3rem;
}

.reward-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.portal-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.portal-grid strong,
.portal-grid span {
  display: block;
}

.portal-grid span {
  margin-top: 0.4rem;
  color: var(--muted);
}

.story-photo {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wife-section {
  display: grid;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--vanilla);
  padding: 1.5rem;
}

.wife-section > svg {
  width: 44px;
  height: 44px;
  color: var(--raspberry);
}

.contact-card {
  padding: 1.2rem;
}

.contact-card h2 {
  margin: 0 0 0.8rem;
  color: var(--cocoa);
}

.contact-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0.75rem 0;
  color: var(--cocoa);
  font-weight: 900;
}

.hours {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 1rem 0;
  padding: 1rem 0;
}

.hours h3 {
  margin: 0 0 0.35rem;
}

.hours p {
  margin: 0;
  color: var(--muted);
}

.map-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 2px dashed rgba(191, 32, 72, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(47, 111, 159, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(47, 111, 159, 0.12) 1px, transparent 1px),
    var(--vanilla);
  background-size: 28px 28px;
  color: var(--cocoa);
  font-weight: 950;
}

.map-placeholder svg {
  width: 42px;
  height: 42px;
  color: var(--raspberry);
}

[hidden] {
  display: none !important;
}

@media (max-width: 620px) {
  .order-item {
    grid-template-columns: 70px 1fr;
  }

  .order-item img,
  .icon-tile {
    width: 70px;
    height: 70px;
  }

  .order-item .qty-control {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (min-width: 700px) {
  .announcement {
    display: flex;
    justify-content: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 4.2rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, max-content);
  }

  .section-heading h2,
  .final-grid h2,
  .story-layout h2,
  .wife-section h2 {
    font-size: 3rem;
  }

  .dual-panels,
  .split,
  .final-grid,
  .form-layout,
  .catering-layout,
  .contact-layout,
  .story-layout,
  .rewards-layout,
  .builder-layout,
  .order-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seasonal-band,
  .map-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .wife-section {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav a {
    padding: 0.58rem 0.68rem;
    font-size: 0.85rem;
  }

  .hide-mobile {
    display: inline-flex !important;
  }

  .hero-grid {
    grid-template-columns: 1fr 430px;
    align-items: end;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .page-hero h1 {
    font-size: 4.8rem;
  }

  .image-strip {
    height: 180px;
  }
}
