:root {
  --bg: #f6f2ea;
  --surface: #fffaf1;
  --surface-strong: #fffdf8;
  --ink: #1d241f;
  --muted: #667168;
  --line: rgba(29, 36, 31, .12);
  --olive: #315f49;
  --olive-soft: #dbe9df;
  --coral: #d36b46;
  --coral-soft: #fde2d4;
  --sun: #f3b74f;
  --blue-soft: #dbe7ed;
  --shadow-soft: 0 22px 60px rgba(37, 43, 35, .10);
  --shadow-strong: 0 34px 90px rgba(37, 43, 35, .16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: min(1160px, calc(100% - 32px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(700px 420px at 6% 12%, rgba(211, 107, 70, .18), transparent 62%),
    radial-gradient(740px 440px at 94% 4%, rgba(49, 95, 73, .16), transparent 66%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 45%, #f1eadf 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(29, 36, 31, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 36, 31, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), transparent 70%);
}

img { max-width: 100%; }

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

.demo-ribbon {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 16px;
  color: rgba(29, 36, 31, .74);
  background: rgba(255, 250, 241, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  font-size: .82rem;
}

.demo-ribbon span {
  color: var(--olive);
  font-weight: 900;
}

.demo-ribbon a {
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 40px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: var(--container);
  margin: 16px auto 0;
  padding: 13px 14px;
  border: 1px solid rgba(29, 36, 31, .10);
  border-radius: 28px;
  background: rgba(255, 250, 241, .78);
  box-shadow: 0 18px 50px rgba(37, 43, 35, .10);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.hero-proof,
.shop-status {
  display: flex;
  align-items: center;
}

.brand { gap: 12px; min-width: 0; }

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #fffaf1;
  font-weight: 950;
  letter-spacing: -.08em;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), transparent 38%),
    linear-gradient(135deg, var(--olive), var(--coral));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 16px 32px rgba(49, 95, 73, .20);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: .76rem;
  margin-top: 2px;
}

.site-nav {
  justify-content: center;
  gap: 20px;
  color: rgba(29, 36, 31, .74);
  font-size: .9rem;
  font-weight: 850;
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--olive), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.header-cta,
.btn-primary {
  color: #fffaf1;
  background: linear-gradient(135deg, var(--olive), #254b39);
  box-shadow: 0 16px 34px rgba(49, 95, 73, .22);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 250, 241, .72);
  border-color: rgba(29, 36, 31, .14);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(37, 43, 35, .14);
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(58px, 7vw, 88px) 0 clamp(54px, 7vw, 78px);
}

.hero-card {
  position: relative;
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid rgba(29, 36, 31, .10);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,250,241,.50)),
    radial-gradient(360px 220px at 16% 10%, rgba(211,107,70,.16), transparent 70%);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(49, 95, 73, .18);
  border-radius: 999px;
  color: var(--olive);
  background: rgba(219, 233, 223, .70);
  font-size: .71rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.35rem, 4.15vw, 4.45rem);
}

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(29, 36, 31, .72);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.72;
}

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

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

.hero-proof span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(29, 36, 31, .10);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255, 250, 241, .70);
  font-size: .84rem;
  font-weight: 800;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.05;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.photo-board {
  position: absolute;
  inset: 0;
}

.photo-board figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 250, 241, .92);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.photo-board img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s ease;
}

.photo-board figure:hover img { transform: scale(1.045); }

.photo-main {
  left: 4%;
  right: 16%;
  top: 3%;
  bottom: 19%;
  border-radius: 42px;
}

.photo-small {
  width: 42%;
  height: 34%;
  border-radius: 30px;
}

.photo-small-top {
  right: 0;
  top: 11%;
}

.photo-small-bottom {
  right: 8%;
  bottom: 0;
}

.shop-status {
  position: absolute;
  left: 0;
  bottom: 34px;
  gap: 12px;
  max-width: 310px;
  padding: 18px 20px;
  border: 1px solid rgba(29, 36, 31, .10);
  border-radius: 24px;
  background: rgba(255, 250, 241, .88);
  box-shadow: 0 24px 58px rgba(37, 43, 35, .16);
  backdrop-filter: blur(16px);
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #2fba75;
  box-shadow: 0 0 0 8px rgba(47, 186, 117, .13);
}

.shop-status strong,
.shop-status small {
  display: block;
}

.shop-status strong { font-size: 1rem; }

.shop-status small {
  color: var(--muted);
  margin-top: 2px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(54px, 7vw, 88px);
}

.quick-card,
.offer-card,
.story-note,
.story-panel,
.order-step,
.contact-card {
  border: 1px solid rgba(29, 36, 31, .10);
  background: rgba(255, 250, 241, .72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.quick-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.quick-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: var(--ink);
  font-weight: 950;
  background: linear-gradient(135deg, var(--sun), var(--olive-soft));
}

.quick-card h2 {
  margin: 15px 0 8px;
  font-size: 1.16rem;
  letter-spacing: -.03em;
}

.quick-card p,
.offer-card p,
.story-copy p,
.order-step p,
.contact-copy p,
.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.menu-section,
.order-section {
  padding: clamp(64px, 8vw, 104px) 0;
  border-top: 1px solid rgba(29, 36, 31, .10);
  border-bottom: 1px solid rgba(29, 36, 31, .08);
  background:
    radial-gradient(500px 260px at 10% 10%, rgba(219, 233, 223, .42), transparent 70%),
    rgba(255, 250, 241, .30);
}

.section-heading {
  margin-bottom: clamp(26px, 4.2vw, 48px);
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .78fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.section-heading h2,
.story-copy h2,
.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(1.95rem, 3.3vw, 3.35rem);
}

.section-heading p,
.contact-copy p {
  font-size: .99rem;
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.offer-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 16px;
  border-radius: 30px;
}

.offer-featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.offer-card img {
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.offer-featured img {
  height: 330px;
}

.offer-card span,
.order-step span {
  display: block;
  color: var(--olive);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.offer-card h3,
.order-step h3 {
  margin: 8px 0 8px;
  font-size: 1.28rem;
  letter-spacing: -.035em;
}

.offer-featured h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

.offer-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--olive);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.section-separator {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 28px 0;
  color: rgba(29, 36, 31, .56);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-separator i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 95, 73, .34), rgba(211, 107, 70, .28), transparent);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .45fr) minmax(300px, .58fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(46px, 6vw, 86px) 0;
}

.story-copy {
  display: grid;
  align-content: center;
}

.story-copy p {
  max-width: 680px;
  margin-top: 20px;
  font-size: 1.02rem;
}

.story-note {
  display: flex;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,250,241,.90), rgba(219,233,223,.60));
}

.story-note p {
  margin: 0;
  color: rgba(29, 36, 31, .78);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.55;
}

.story-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.story-panel div {
  padding: 18px;
  border: 1px solid rgba(29, 36, 31, .10);
  border-radius: 22px;
  background: var(--surface-strong);
}

.story-panel strong,
.story-panel span {
  display: block;
}

.story-panel strong {
  font-size: 2rem;
  line-height: .95;
  letter-spacing: -.05em;
}

.story-panel span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.12fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

.order-layout .section-heading {
  position: sticky;
  top: 150px;
  margin-bottom: 0;
}

.order-layout .section-heading p {
  margin-top: 20px;
  max-width: 520px;
}

.order-steps {
  display: grid;
  gap: 14px;
}

.order-step {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform .25s ease, box-shadow .25s ease;
}

.order-step:hover {
  transform: translateX(4px);
  box-shadow: 0 24px 62px rgba(37, 43, 35, .14);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  margin-block: clamp(40px, 6vw, 86px);
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(29, 36, 31, .10);
  border-radius: 36px;
  background:
    radial-gradient(420px 260px at 85% 15%, rgba(211, 107, 70, .13), transparent 70%),
    rgba(255, 250, 241, .76);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 28px;
  background: var(--surface-strong);
}

.contact-card strong { font-size: 1.28rem; }

.contact-card span { color: var(--muted); }

.contact-card .btn { margin-top: 12px; }

.reveal-block {
  animation: revealUp .65s ease both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    top: 35px;
    grid-template-columns: auto auto;
    border-radius: 26px;
  }

  .site-nav { display: none; }

  .hero,
  .story-section,
  .order-layout,
  .contact-section,
  .heading-row,
  .offer-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .offer-featured {
    grid-template-columns: 1fr;
  }

  .offer-card img,
  .offer-featured img {
    height: 340px;
  }

  .order-layout .section-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 22px); }

  .demo-ribbon {
    justify-content: space-between;
    gap: 12px;
    font-size: .76rem;
  }

  .site-header {
    top: 34px;
    margin-top: 10px;
    padding: 10px;
  }

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

  .brand-copy small { display: none; }

  .header-cta { display: none; }

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

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .photo-main {
    left: 0;
    right: 0;
    top: 0;
    bottom: 28%;
    border-radius: 30px;
  }

  .photo-small {
    height: 28%;
    width: 48%;
  }

  .photo-small-top {
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
  }

  .photo-small-bottom {
    right: 0;
    bottom: 0;
  }

  .shop-status {
    left: 14px;
    right: 14px;
    bottom: 102px;
    max-width: none;
  }

  .section-heading h2,
  .story-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .offer-card img,
  .offer-featured img {
    height: 280px;
  }

  .section-separator {
    gap: 10px;
    font-size: .68rem;
  }

  .contact-section {
    padding: 24px;
    border-radius: 28px;
  }
}

:root {
  --bg: #eef7f6;
  --surface: #ffffff;
  --surface-strong: #f8fffd;
  --ink: #182238;
  --muted: #627085;
  --line: rgba(24, 34, 56, .12);
  --olive: #008f86;
  --olive-soft: #dff4f1;
  --coral: #f05f45;
  --coral-soft: #ffe2db;
  --sun: #ffc857;
  --blue-soft: #e1ecff;
  --shadow-soft: 0 24px 70px rgba(11, 34, 55, .10);
  --shadow-strong: 0 34px 100px rgba(11, 34, 55, .18);
}

body {
  color: var(--ink);
  background:
    radial-gradient(900px 520px at -8% 8%, rgba(0, 143, 134, .25), transparent 62%),
    radial-gradient(760px 460px at 102% 16%, rgba(240, 95, 69, .20), transparent 64%),
    radial-gradient(640px 380px at 52% 46%, rgba(255, 200, 87, .16), transparent 62%),
    linear-gradient(135deg, #f8fffd 0%, #eef7f6 42%, #e9f0ff 100%);
}

body::before {
  opacity: .54;
  background-image:
    linear-gradient(rgba(24, 34, 56, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 34, 56, .045) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0, 143, 134, .14) 0 1px, transparent 1.5px);
  background-size: 44px 44px, 44px 44px, 18px 18px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12vw -22vw auto;
  width: 58vw;
  height: 58vw;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 143, 134, .12), transparent 68%);
  filter: blur(6px);
  z-index: -1;
}

.demo-ribbon,
.site-header {
  background: rgba(248, 255, 253, .82);
}

.brand-mark,
.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #182238, #008f86);
  box-shadow: 0 18px 40px rgba(0, 143, 134, .22);
}

.hero {
  grid-template-columns: minmax(0, .82fr) minmax(410px, 1fr);
  gap: clamp(28px, 5vw, 76px);
}

.hero-card {
  overflow: hidden;
  color: #f8fffd;
  border-color: rgba(255,255,255,.18);
  background:
    radial-gradient(420px 280px at 88% 8%, rgba(0,143,134,.46), transparent 72%),
    radial-gradient(360px 260px at 0% 100%, rgba(240,95,69,.28), transparent 72%),
    linear-gradient(145deg, #182238 0%, #23304a 58%, #101827 100%);
  box-shadow: 0 38px 110px rgba(11, 34, 55, .28);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  pointer-events: none;
}

.hero-card .eyebrow {
  color: #dff4f1;
  border-color: rgba(223, 244, 241, .28);
  background: rgba(255,255,255,.08);
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(2.25rem, 3.65vw, 4.05rem);
}

.hero-lead {
  color: rgba(248, 255, 253, .74);
}

.hero .btn-secondary {
  color: #f8fffd;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}

.hero-proof span {
  color: rgba(248, 255, 253, .70);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}

.hero-proof strong {
  color: #ffffff;
}

.hero-visual {
  min-height: 560px;
}

.photo-board::before {
  content: "";
  position: absolute;
  inset: 9% 7% 6% 2%;
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(0,143,134,.22), rgba(255,255,255,.22)),
    repeating-linear-gradient(-45deg, rgba(24,34,56,.07) 0 1px, transparent 1px 12px);
  transform: rotate(-2deg);
}

.photo-board figure {
  border-color: rgba(248, 255, 253, .96);
}

.photo-main {
  left: 0;
  right: 18%;
  top: 8%;
  bottom: 12%;
  border-radius: 34px;
}

.photo-small-top {
  right: 0;
  top: 4%;
}

.photo-small-bottom {
  right: 4%;
  bottom: 3%;
}

.shop-status {
  left: 5%;
  bottom: 18px;
  color: var(--ink);
  background: rgba(248, 255, 253, .92);
}

.quick-card,
.offer-card,
.story-note,
.story-panel,
.order-step,
.contact-card {
  border-color: rgba(24, 34, 56, .10);
  background: rgba(248, 255, 253, .78);
}

.quick-card span {
  color: #182238;
  background: linear-gradient(135deg, #ffc857, #dff4f1);
}

.menu-section {
  position: relative;
  margin-top: clamp(22px, 4vw, 44px);
  border-top: 1px solid rgba(24, 34, 56, .08);
  border-bottom: 1px solid rgba(24, 34, 56, .08);
  background:
    radial-gradient(620px 340px at 84% 2%, rgba(255, 200, 87, .18), transparent 70%),
    linear-gradient(180deg, rgba(248,255,253,.70), rgba(225,236,255,.44));
}

.order-section {
  position: relative;
  color: #f8fffd;
  border: 0;
  background:
    radial-gradient(560px 340px at 90% 6%, rgba(0, 143, 134, .34), transparent 72%),
    radial-gradient(520px 320px at 8% 92%, rgba(240, 95, 69, .22), transparent 72%),
    linear-gradient(135deg, #182238, #0e1728);
}

.order-section .eyebrow {
  color: #dff4f1;
  border-color: rgba(223, 244, 241, .26);
  background: rgba(255,255,255,.08);
}

.order-section .section-heading p,
.order-section .order-step p {
  color: rgba(248, 255, 253, .72);
}

.order-step {
  color: #f8fffd;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}

.order-step span {
  color: #ffc857;
}

.story-section {
  position: relative;
  padding: clamp(58px, 7vw, 104px) 0;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: clamp(28px, 4vw, 48px) calc((100vw - min(1160px, calc(100% - 32px))) / -2) clamp(28px, 4vw, 48px) 32%;
  border-radius: 42px 0 0 42px;
  background:
    linear-gradient(135deg, rgba(0,143,134,.08), rgba(255,255,255,.52)),
    repeating-linear-gradient(90deg, rgba(24,34,56,.045) 0 1px, transparent 1px 18px);
  z-index: -1;
}

.story-note {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(223,244,241,.78));
}

.story-panel div {
  background: rgba(255,255,255,.78);
}

.contact-section {
  background:
    radial-gradient(420px 260px at 8% 8%, rgba(0, 143, 134, .16), transparent 70%),
    radial-gradient(340px 240px at 92% 14%, rgba(255, 200, 87, .18), transparent 70%),
    rgba(248, 255, 253, .84);
}

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

  .hero-visual {
    min-height: 500px;
  }

  .story-section::before {
    inset: 22px -16px 22px -16px;
    border-radius: 32px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .hero-visual {
    min-height: 420px;
  }

  .photo-board::before {
    inset: 8% 0 4% 0;
    border-radius: 32px;
  }
}


/* Ajustements v0.14 : différencier la démo commerce local sans changer sa structure HTML. */
body {
  background:
    radial-gradient(900px 520px at -8% 8%, rgba(0, 143, 134, .24), transparent 62%),
    radial-gradient(760px 460px at 102% 16%, rgba(240, 95, 69, .18), transparent 64%),
    radial-gradient(760px 420px at 52% 44%, rgba(255, 200, 87, .13), transparent 62%),
    linear-gradient(135deg, #f8fffd 0%, #eef7f6 38%, #eaf1ff 100%);
}

body::before {
  opacity: .38;
  background-image:
    radial-gradient(circle at center, rgba(0, 143, 134, .11) 0 1px, transparent 1.8px),
    radial-gradient(circle at center, rgba(240, 95, 69, .065) 0 1px, transparent 1.7px);
  background-size: 28px 28px, 70px 70px;
  background-position: 0 0, 18px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.56), transparent 78%);
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  max-width: 590px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
}

.hero-visual {
  min-height: 585px;
}

.photo-board::before {
  inset: 7% 3% 4% -2%;
  border-radius: 50px;
  background:
    radial-gradient(420px 260px at 18% 18%, rgba(255, 200, 87, .24), transparent 70%),
    radial-gradient(520px 320px at 82% 76%, rgba(0, 143, 134, .19), transparent 70%),
    linear-gradient(135deg, rgba(248,255,253,.78), rgba(225,236,255,.46));
  box-shadow: 0 30px 90px rgba(11, 34, 55, .12);
  transform: rotate(-1.4deg);
}

.photo-board figure {
  border-width: 5px;
  border-color: rgba(248, 255, 253, .88);
}

.photo-main {
  left: 0;
  right: 12%;
  top: 7%;
  bottom: 10%;
  border-radius: 38px;
}

.photo-small {
  width: 39%;
  height: 31%;
  border-radius: 26px;
}

.photo-small-top {
  right: 0;
  top: 7%;
}

.photo-small-bottom {
  right: 2%;
  bottom: 4%;
}

.shop-status {
  left: 4%;
  bottom: 24px;
  max-width: 335px;
  padding: 18px 22px;
  border-color: rgba(24, 34, 56, .08);
  box-shadow: 0 24px 62px rgba(11, 34, 55, .14);
}

.shop-status strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.14rem;
  letter-spacing: -.035em;
}

.menu-section,
.contact-section {
  background:
    radial-gradient(520px 300px at 88% 0%, rgba(255, 200, 87, .15), transparent 70%),
    linear-gradient(180deg, rgba(248,255,253,.86), rgba(240,247,255,.54));
}

.story-section {
  padding: clamp(58px, 7vw, 104px) 0;
}

.story-section::before {
  inset: clamp(28px, 4vw, 48px) calc((100vw - min(1160px, calc(100% - 32px))) / -2) clamp(28px, 4vw, 48px) 28%;
  border-radius: 46px 0 0 46px;
  background:
    radial-gradient(460px 280px at 18% 28%, rgba(255, 200, 87, .18), transparent 72%),
    radial-gradient(520px 340px at 88% 72%, rgba(0, 143, 134, .14), transparent 72%),
    linear-gradient(135deg, rgba(248,255,253,.70), rgba(225,236,255,.46));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.story-note,
.story-panel,
.story-panel div {
  border-color: rgba(24, 34, 56, .08);
}

.contact-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.contact-copy .eyebrow,
.contact-copy h2,
.contact-copy p {
  margin: 0;
}

.contact-copy p {
  max-width: 660px;
  line-height: 1.78;
}

@media (max-width: 980px) {
  .story-section::before {
    inset: 22px -16px 22px -16px;
    border-radius: 32px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .photo-board::before {
    inset: 8% 0 4% 0;
    border-radius: 32px;
  }

  .contact-copy {
    gap: 14px;
  }
}
