:root {
  --rose-50: #fff7fb;
  --rose-100: #ffe9f4;
  --rose-200: #ffd4e7;
  --rose-300: #ffbfd9;
  --rose-400: #ff94ba;
  --rose-500: #ff6e9e;
  --cream: #f7f0e5;
  --cream-soft: #fbf7ef;
  --mint: #dff6ef;
  --mint-strong: #7cc8aa;
  --cocoa: #40241e;
  --cocoa-soft: #6f4a3d;
  --berry: #7b3f90;
  --ink: #241514;
  --text: #4f3029;
  --muted: #7e665f;
  --line: rgba(79, 48, 41, 0.12);
  --card-shadow: 0 24px 60px rgba(64, 36, 30, 0.12);
  --soft-shadow: 0 12px 28px rgba(64, 36, 30, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 212, 231, 0.42), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(223, 246, 239, 0.32), transparent 24%),
    linear-gradient(180deg, #fcf8f0 0%, #f8f0e8 54%, #fbf7f1 100%);
  min-height: 100vh;
}

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

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(79, 48, 41, 0.06);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand-logo {
  width: 72px;
  height: 72px;
  display: block;
  border-radius: 50%;
}

.brand-title {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(1.7rem, 3.1vw, 2.35rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--cocoa);
}

.brand-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  background: var(--rose-100);
  color: var(--cocoa);
  box-shadow: var(--soft-shadow);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  margin: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--cocoa-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 110, 158, 0.12);
  color: var(--cocoa);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: var(--ink);
  background: #f6c9db;
  box-shadow: 0 10px 18px rgba(246, 201, 219, 0.35);
}

.button-secondary {
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(79, 48, 41, 0.1);
  box-shadow: var(--soft-shadow);
}

.button-soft {
  color: var(--ink);
  background: #fff8f3;
  border-color: rgba(79, 48, 41, 0.08);
  box-shadow: none;
}

.hero {
  padding: 52px 0 38px;
}

.home-main {
  padding-top: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--soft-shadow);
  color: var(--cocoa-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-500), #ffb36f);
}

.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.hero-copy p,
.page-hero p,
.section-copy p,
.detail-card p,
.compliance-card p,
.footer-block p,
.legal-page p,
.legal-page li,
.contact-card p {
  font-size: 1.02rem;
  line-height: 1.76;
  color: var(--text);
}

.hero-actions,
.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.meta-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--soft-shadow);
  color: var(--cocoa-soft);
  font-weight: 700;
}

.poster-card,
.poster-tile {
  position: relative;
}

.poster-copy,
.poster-tile-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(40, 20, 18, 0.78) 48%, rgba(40, 20, 18, 0.92) 100%);
  color: #fff8f3;
}

.poster-copy {
  padding: 22px 22px 24px;
}

.poster-copy h3,
.poster-tile-copy h3 {
  margin: 8px 0 8px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.poster-copy h3 {
  font-size: clamp(1.65rem, 2vw, 2.3rem);
}

.poster-tile-copy h3 {
  font-size: 1.7rem;
}

.poster-copy p,
.poster-tile-copy p {
  margin: 0;
  color: rgba(255, 248, 243, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}

.poster-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.14);
  border: 1px solid rgba(255, 248, 243, 0.22);
  color: #fff8f3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.poster-badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(83, 47, 34, 0.95);
  color: #fff8f3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-badge--berry {
  background: rgba(113, 62, 135, 0.96);
}

.poster-badge--purple {
  background: rgba(129, 89, 182, 0.96);
}

.poster-copy--purple h3 {
  color: #f3d7ff;
}

.poster-tile-copy--script h3 {
  font-style: italic;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.cta-card h2,
.legal-page h2,
.legal-page h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.section-head h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-label {
  margin-bottom: 10px;
  color: var(--berry);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
}

.three-up,
.four-up,
.two-up,
.compliance-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.editorial-frame {
  border-radius: 0;
  overflow: hidden;
  background: var(--cream-soft);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--card-shadow);
}

.editorial-grid {
  display: grid;
}

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

.editorial-grid--story {
  grid-template-columns: 1fr 1fr;
}

.editorial-copy,
.editorial-text-panel {
  padding: 38px 34px;
  min-height: 100%;
}

.editorial-copy {
  background: var(--cream-soft);
}

.editorial-text-panel {
  background: #efbfd4;
}

.editorial-copy h1 {
  max-width: 14ch;
}

.editorial-copy p,
.editorial-text-panel p {
  max-width: none;
}

.editorial-image-panel,
.editorial-plate-panel {
  min-height: 100%;
}

.editorial-image-panel img,
.editorial-plate-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-image-panel {
  aspect-ratio: 0.84;
  background: #f1d6c7;
}

.editorial-image-panel img {
  object-position: center;
}

.editorial-plate-panel {
  aspect-ratio: 1.08;
  background: #f4c8c8;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 18, 17, 0.92);
  color: #fff8f3;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-style: italic;
  font-size: 0.95rem;
}

.centered-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.centered-head h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  color: var(--ink);
}

.centered-head p {
  margin: 14px 0 0;
}

.signature-section {
  padding-top: 46px;
}

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

.signature-card {
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--soft-shadow);
}

.signature-card .poster-tile {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 0.72;
  background: rgba(255, 212, 231, 0.45);
}

.signature-card .poster-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.signature-copy {
  padding: 16px 6px 6px;
}

.signature-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.onboarding-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.info-panel {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--soft-shadow);
}

.info-panel--blush {
  background:
    linear-gradient(135deg, rgba(239, 191, 212, 0.94), rgba(247, 240, 229, 0.95));
}

.info-panel h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.info-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(79, 48, 41, 0.08);
}

.info-list strong,
.business-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.info-list span,
.business-box span {
  color: var(--muted);
  line-height: 1.6;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card,
.detail-card,
.compliance-card,
.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--soft-shadow);
}

.card h3,
.detail-card h3,
.compliance-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: var(--ink);
}

.card ul,
.detail-card ul,
.legal-page ul,
.legal-page ol {
  margin: 16px 0 0;
  padding-left: 20px;
}

.card li,
.detail-card li,
.legal-page li {
  margin-bottom: 8px;
}

.card-accent-rose {
  background:
    linear-gradient(180deg, rgba(255, 212, 231, 0.55), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.84);
}

.card-accent-mint {
  background:
    linear-gradient(180deg, rgba(223, 246, 239, 0.7), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.84);
}

.card-accent-cocoa {
  background:
    linear-gradient(180deg, rgba(64, 36, 30, 0.92), rgba(64, 36, 30, 0.82));
  color: #fff8f3;
}

.card-accent-cocoa h3,
.card-accent-cocoa p,
.card-accent-cocoa li {
  color: inherit;
}

.menu-list {
  display: grid;
  gap: 14px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(79, 48, 41, 0.08);
}

.menu-item strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.menu-item span {
  color: var(--muted);
}

.gallery-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--card-shadow);
}

.gallery-frame img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
}

.poster-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.poster-gallery .poster-tile {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 212, 231, 0.62);
  aspect-ratio: 0.68;
}

.poster-gallery .poster-tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top center;
}

.poster-gallery .poster-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(38, 18, 16, 0) 0%, rgba(38, 18, 16, 0.78) 100%);
  pointer-events: none;
}

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

.compliance-card {
  position: relative;
  overflow: hidden;
}

.compliance-card::after {
  content: "";
  position: absolute;
  inset: auto -44px -44px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 110, 158, 0.08);
}

.detail-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.detail-card--feature {
  background:
    linear-gradient(140deg, rgba(255, 212, 231, 0.65), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.84);
}

.detail-card--soft {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(247, 240, 229, 0.9)),
    rgba(255, 255, 255, 0.84);
}

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

.business-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

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

.business-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(79, 48, 41, 0.08);
}

.text-link {
  color: var(--berry);
  font-weight: 700;
}

.reach-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--card-shadow);
}

.reach-card {
  padding: 36px 34px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  box-shadow: none;
}

.reach-card h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.reach-card--media {
  overflow: hidden;
  padding: 0;
}

.reach-card--media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.founders-panel {
  padding: 36px 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(239, 177, 207, 0.98), rgba(236, 169, 201, 0.98));
  border: 1px solid rgba(79, 48, 41, 0.06);
  box-shadow: var(--card-shadow);
}

.founders-panel h2,
.menu-categories h2,
.partner-panel h2,
.stores-showcase h2,
.contact-band h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  color: var(--ink);
}

.founders-panel > p,
.menu-categories > p,
.partner-panel > p,
.stores-showcase > p,
.contact-band > p {
  max-width: 760px;
  margin: 14px 0 0;
}

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

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

.founder-avatar {
  display: block;
  width: min(100%, 220px);
  aspect-ratio: 0.62;
  margin: 0 auto 18px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 999px;
  background: #efbfd4;
}

.founder-avatar--sky {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(180deg, #d8e7f7, #a0b8d9);
}

.founder-avatar--moss {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(180deg, #d7e4d0, #adc0a0);
}

.founder-name {
  margin: 0 0 6px;
  font-size: 1.8rem;
  color: #241514;
}

.founder-meta {
  margin: 0;
  color: rgba(36, 21, 20, 0.7);
  font-weight: 600;
}

.menu-categories,
.partner-panel,
.stores-showcase,
.contact-band {
  padding: 36px 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--card-shadow);
}

.menu-categories {
  background: rgba(255, 251, 244, 0.92);
}

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.menu-category-card {
  text-align: center;
}

.menu-category-visual {
  display: block;
  width: min(100%, 240px);
  aspect-ratio: 0.74;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #18110f;
  box-shadow: var(--soft-shadow);
}

.menu-category-visual--abstract {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #1d1412, #060505);
  color: #fff8f3;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.menu-category-visual--fruit {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(180deg, #291715, #080707);
}

.menu-category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-category-card h3 {
  margin: 0;
  font-size: 1.9rem;
  color: var(--ink);
}

.menu-category-card p {
  margin: 10px auto 0;
  max-width: 280px;
}

.stores-layout,
.contact-band-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  margin-top: 28px;
  align-items: start;
}

.store-card,
.footer-contact-list div,
.contact-band-card,
.partner-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(79, 48, 41, 0.08);
}

.store-card h3,
.contact-band-card h3,
.partner-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: var(--ink);
}

.store-list,
.footer-contact-list,
.store-meta {
  display: grid;
  gap: 14px;
}

.store-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.partner-panel {
  background: linear-gradient(180deg, rgba(239, 177, 207, 0.98), rgba(236, 169, 201, 0.98));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.partner-card {
  padding: 28px;
  border-radius: 28px;
}

.partner-card p {
  margin: 10px 0 0;
  color: var(--text);
}

.partner-cta {
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.86);
  border: 1px solid rgba(79, 48, 41, 0.08);
}

.partner-cta p {
  margin: 10px 0 0;
}

.footer-extended {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-branding {
  display: grid;
  gap: 16px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.footer-tag {
  color: rgba(255, 248, 243, 0.72);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.footer-contact-list div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 248, 243, 0.08);
}

.footer-contact-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff8f3;
}

.footer-contact-list span,
.footer-contact-list a {
  color: rgba(255, 248, 243, 0.82);
  line-height: 1.6;
}

.footer-list--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta {
  padding: 38px 0 62px;
}

.cta-card {
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 233, 244, 0.96));
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--card-shadow);
}

.cta-card p {
  max-width: 760px;
}

.page-hero {
  padding: 60px 0 24px;
}

.page-hero-panel {
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 233, 244, 0.9), rgba(255, 250, 243, 0.92));
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--card-shadow);
}

.page-hero--editorial .page-hero-panel {
  background:
    linear-gradient(135deg, rgba(247, 240, 229, 0.96), rgba(239, 191, 212, 0.78));
}

.editorial-grid--about {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--card-shadow);
}

.about-hero .page-hero-panel {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  height: 100%;
}

.about-hero-logo {
  width: 96px;
  height: 96px;
  display: block;
  margin-bottom: 18px;
  border-radius: 50%;
}

.signature-copy h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--ink);
}

.about-poster-column {
  display: grid;
  gap: 0;
  height: 100%;
}

.about-business-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.about-poster-column .poster-tile {
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: auto;
  height: 100%;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  box-shadow: none;
}

.about-poster-column .poster-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.legal-page {
  padding-bottom: 58px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.legal-main {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--card-shadow);
}

.legal-main h2 {
  font-size: 2rem;
  margin: 28px 0 12px;
}

.legal-main h3 {
  font-size: 1.45rem;
  margin: 22px 0 10px;
}

.legal-main p,
.legal-main li {
  color: var(--text);
}

.legal-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--soft-shadow);
}

.aside-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card a {
  color: var(--berry);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  max-width: none;
}

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

.contact-form > label,
.contact-form-row > label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(79, 48, 41, 0.14);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b49a93;
  font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose-400);
  box-shadow: 0 0 0 4px rgba(255, 148, 186, 0.22);
  background: #fff;
}

.contact-form > .button {
  justify-self: start;
  margin-top: 4px;
  min-width: 180px;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(79, 48, 41, 0.08);
  color: var(--cocoa-soft);
}

.form-status[hidden] {
  display: none;
}

.page-hero-actions--center {
  justify-content: center;
  margin-top: 28px;
}

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

.treat-row {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 18px;
  align-items: center;
  padding: 22px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(79, 48, 41, 0.08);
  box-shadow: var(--soft-shadow);
}

.treat-row h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.treat-row p {
  margin: 0;
}

.treat-row img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.store-grid .store-card {
  height: 100%;
}

.store-grid .button {
  margin-top: 12px;
}

.menu-block {
  margin-top: 22px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(79, 48, 41, 0.08);
}

.menu-block--pink {
  background: linear-gradient(180deg, rgba(239, 191, 212, 0.94), rgba(247, 240, 229, 0.95));
}

.menu-block h2 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  color: var(--ink);
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 28px;
  margin-top: 16px;
}

.flavour-grid span {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.choice-field {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.choice-field legend {
  width: 100%;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--ink);
}

.choice-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(79, 48, 41, 0.12);
}

.site-footer {
  margin-top: 10px;
  padding: 40px 0 34px;
  background: rgba(64, 36, 30, 0.95);
  color: rgba(255, 248, 243, 0.88);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  align-items: start;
}

.footer-block h3,
.footer-brand {
  margin: 0 0 10px;
  color: #fff8f3;
}

.footer-brand {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 248, 243, 0.12);
  color: rgba(255, 248, 243, 0.7);
  font-size: 0.92rem;
}

.note {
  display: inline-flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(79, 48, 41, 0.08);
  color: var(--cocoa-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .editorial-grid--hero,
  .editorial-grid--story,
  .editorial-grid--about,
  .about-hero,
  .story-grid,
  .about-business-layout,
  .onboarding-strip,
  .reach-strip,
  .stores-layout,
  .contact-band-layout,
  .detail-strip,
  .legal-layout,
  .footer-grid,
  .footer-extended {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

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

  .contact-grid,
  .three-up,
  .four-up,
  .founders-grid,
  .signature-grid,
  .business-grid--compact,
  .menu-category-grid,
  .partner-grid,
  .footer-list--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: -58px;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

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

  .site-nav a,
  .site-nav .button {
    text-align: center;
  }

  .hero,
  .page-hero {
    padding-top: 32px;
  }

  .page-hero-panel,
  .cta-card,
  .legal-main,
  .card,
  .detail-card,
  .compliance-card,
  .contact-card,
  .reach-card,
  .menu-block {
    padding: 24px;
  }

  .compliance-grid,
  .contact-grid,
  .contact-form-row,
  .store-grid,
  .flavour-grid,
  .treat-list,
  .three-up,
  .four-up,
  .two-up,
  .poster-gallery,
  .signature-grid,
  .story-grid,
  .business-grid--compact,
  .menu-category-grid,
  .partner-grid,
  .founders-grid,
  .footer-list--wide {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .editorial-copy,
  .editorial-text-panel,
  .info-panel,
  .founders-panel,
  .menu-categories,
  .partner-panel,
  .stores-showcase,
  .contact-band {
    padding: 24px;
  }

  .centered-head {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-logo-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
