:root {
  --bg: #f7f3ec;
  --bg-soft: #fffdf9;
  --surface: rgba(255, 252, 247, 0.84);
  --surface-strong: #fffaf3;
  --text: #1f1913;
  --muted: #75685c;
  --line: rgba(87, 67, 45, 0.14);
  --accent: #d79f67;
  --accent-deep: #ab6f3b;
  --shadow: 0 28px 60px rgba(75, 51, 27, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 159, 103, 0.26), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.92), transparent 22%),
    linear-gradient(180deg, #f9f4ed 0%, #f5f1ea 48%, #f8f6f2 100%);
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.announcement-bar {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(87, 67, 45, 0.08);
  background: rgba(255, 251, 245, 0.75);
  backdrop-filter: blur(16px);
}

.announcement-bar p {
  margin: 0;
}

.hero-header {
  width: var(--container);
  margin: 18px auto 0;
  padding: 18px 18px 36px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.86), rgba(253, 248, 240, 0.94)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 8px 22px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: linear-gradient(135deg, #fff5e6, #efd5b8);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.65);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-panel {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-panel a {
  position: relative;
  padding-bottom: 6px;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-panel a:hover::after,
.nav-panel a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--text);
  box-shadow: 0 10px 25px rgba(87, 67, 45, 0.08);
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 0.92rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  padding: 56px 14px 22px 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f0d7bc);
}

.hero-copy h1 {
  max-width: 10ch;
  margin: 24px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 6.1rem);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 36px rgba(41, 28, 20, 0.24);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #18120e, #3d2d21);
  box-shadow: 0 18px 30px rgba(41, 28, 20, 0.18);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero-points li:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 249, 0.95);
}

.hero-stage {
  position: relative;
  min-height: 680px;
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    linear-gradient(180deg, rgba(251, 246, 239, 0.72), rgba(248, 240, 230, 0.95)),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.9), transparent 16%);
  overflow: hidden;
  border: 1px solid rgba(87, 67, 45, 0.1);
}

.hero-photo-frame {
  position: absolute;
  inset: 34px 34px 190px 110px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 44px rgba(64, 42, 23, 0.16);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 246, 235, 0.02), rgba(34, 20, 11, 0.22));
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.shape-one {
  inset: 60px auto auto 42px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.8);
}

.shape-two {
  right: -34px;
  bottom: 96px;
  width: 260px;
  height: 260px;
  background: rgba(215, 159, 103, 0.18);
}

.feature-card {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(87, 67, 45, 0.1);
  background: rgba(255, 252, 247, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(74, 50, 28, 0.12);
}

.feature-card-main {
  left: 42px;
  right: 86px;
  bottom: 70px;
  padding: 28px 28px 30px;
}

.card-label,
.price-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 159, 103, 0.16);
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-card-main h2 {
  margin: 16px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.feature-card-main p,
.feature-card-side p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.feature-card-side {
  top: 52px;
  right: 34px;
  width: 210px;
  padding: 22px;
}

.collection-section,
.note-band,
.story-section,
.benefits-section,
.faq-section,
.site-footer {
  width: var(--container);
  margin: 24px auto 48px;
}

.collection-section {
  padding: 34px 0 12px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 800;
}

.section-heading h2,
.note-card h2,
.cart-panel-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.section-copy,
.note-card p,
.cart-summary p,
.cart-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.product-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(87, 67, 45, 0.1);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 20px 40px rgba(74, 50, 28, 0.08);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(74, 50, 28, 0.12);
  border-color: rgba(171, 111, 59, 0.22);
}

.product-card-tall {
  grid-column: span 5;
}

.product-card:nth-child(3) {
  grid-column: span 3;
}

.product-card:nth-child(4) {
  grid-column: span 4;
}

.product-media {
  position: relative;
  aspect-ratio: 0.9;
  overflow: hidden;
  background: #f0e6d8;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(87, 67, 45, 0.12);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(62, 42, 25, 0.08);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-meta,
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.product-meta p,
.product-meta span,
.product-price small {
  margin: 0;
}

.product-content h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.25;
}

.product-content > p {
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.product-footer {
  margin-top: auto;
  align-items: end;
}

.product-price {
  display: grid;
  gap: 4px;
}

.product-price strong {
  font-size: 1.4rem;
}

.product-price small {
  color: var(--muted);
}

.add-to-cart,
.cart-close {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.add-to-cart {
  min-height: 50px;
  padding: 0 18px;
  font-weight: 700;
}

.add-to-cart::after {
  content: "+";
  margin-left: 8px;
  font-size: 1.05rem;
}

.add-to-cart:hover,
.add-to-cart:focus-visible,
.cart-close:hover,
.cart-close:focus-visible {
  transform: translateY(-1px);
  background: #fff7ee;
}

.note-band {
  margin-top: 10px;
}

.note-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(87, 67, 45, 0.1);
  background:
    radial-gradient(circle at top right, rgba(215, 159, 103, 0.12), transparent 28%),
    rgba(255, 252, 247, 0.78);
  box-shadow: 0 20px 40px rgba(74, 50, 28, 0.06);
}

.note-card h2 {
  max-width: 12ch;
  margin-bottom: 14px;
}

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

.launch-strip article,
.story-panel,
.benefit-card,
.contact-card,
.faq-item,
.site-footer {
  border: 1px solid rgba(87, 67, 45, 0.1);
  background: rgba(255, 252, 247, 0.82);
}

.launch-strip article {
  padding: 18px;
  border-radius: 22px;
  display: grid;
  gap: 6px;
}

.launch-strip strong,
.story-stat strong,
.benefit-card span,
.contact-card strong {
  display: block;
}

.launch-strip strong {
  font-size: 1.1rem;
}

.launch-strip span,
.story-stat span,
.benefit-card p,
.contact-card p,
.footer-meta span,
.site-footer p,
.faq-item p {
  color: var(--muted);
  line-height: 1.75;
}

.story-layout,
.faq-layout,
.footer-grid {
  display: grid;
  gap: 22px;
}

.story-layout,
.faq-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.story-panel {
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(74, 50, 28, 0.06);
}

.story-panel-main h2,
.faq-copy h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.story-panel-main p,
.faq-copy > p,
.site-footer p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.85;
}

.story-panel-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.story-image {
  overflow: hidden;
  border-radius: 24px;
  min-height: 220px;
}

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

.story-stat {
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid rgba(87, 67, 45, 0.1);
}

.story-stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.story-stat strong {
  margin-bottom: 8px;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.micro-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(215, 159, 103, 0.14);
  color: var(--accent-deep);
  font-size: 0.8rem;
}

.benefits-heading {
  margin-bottom: 24px;
}

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

.benefit-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 254, 250, 0.95);
}

.benefit-card span {
  margin-bottom: 26px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 800;
}

.benefit-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
}

.faq-copy,
.faq-list {
  display: grid;
  gap: 18px;
}

.contact-card,
.faq-item {
  border-radius: 26px;
  padding: 22px;
}

.contact-card a {
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 6px;
}

.contact-card p {
  margin: 8px 0 0;
}

.faq-item p {
  margin: 0;
}

.site-footer {
  margin-top: 10px;
  padding: 28px 30px;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(74, 50, 28, 0.06);
}

.footer-links a,
.contact-card a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-links a::after,
.contact-card a::after {
  content: "↗";
  margin-left: 8px;
  font-size: 0.88em;
  opacity: 0.7;
}

.footer-links a:hover,
.contact-card a:hover {
  color: var(--accent-deep);
  transform: translateX(2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal[data-reveal="left"] {
  transform: translateX(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  display: grid;
  justify-items: end;
  visibility: hidden;
  pointer-events: none;
  z-index: 40;
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 20, 12, 0.38);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cart-panel {
  position: relative;
  width: min(420px, 100vw);
  height: 100%;
  padding: 26px 22px 22px;
  background: #fffaf4;
  border-left: 1px solid rgba(87, 67, 45, 0.12);
  box-shadow: -30px 0 60px rgba(35, 23, 15, 0.14);
  transform: translateX(100%);
  transition: transform 260ms ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-drawer.is-open .cart-backdrop {
  opacity: 1;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.cart-close {
  width: 44px;
  height: 44px;
  font-size: 1.05rem;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 140px;
  max-height: 42vh;
  overflow: auto;
  padding-right: 2px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(87, 67, 45, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.cart-item strong,
.cart-item p,
.cart-item span {
  margin: 0;
}

.cart-item p,
.cart-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item-price {
  font-weight: 800;
}

.cart-summary,
.checkout-form {
  border: 1px solid rgba(87, 67, 45, 0.1);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.cart-summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.cart-summary strong {
  font-size: 1.45rem;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form label {
  font-weight: 700;
}

.checkout-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(87, 67, 45, 0.16);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--text);
}

.checkout-button {
  width: 100%;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(87, 67, 45, 0.1);
  background: rgba(255, 251, 245, 0.96);
  box-shadow: 0 24px 50px rgba(35, 23, 15, 0.14);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: 50;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast strong,
.toast p {
  margin: 0;
}

.toast p {
  margin-top: 8px;
  color: var(--muted);
}

.legal-page {
  min-height: 100vh;
  padding: 18px 0 48px;
}

.legal-wrap {
  width: var(--container);
  margin: 0 auto;
}

.legal-hero,
.legal-card {
  border: 1px solid rgba(87, 67, 45, 0.1);
  border-radius: 32px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 20px 40px rgba(74, 50, 28, 0.06);
}

.legal-hero {
  padding: 28px 30px;
  margin-bottom: 22px;
}

.legal-hero h1 {
  margin: 10px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.legal-hero p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.85;
}

.legal-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-deep);
  font-weight: 700;
}

.legal-grid {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 24px 26px;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

@media (max-width: 980px) {
  .top-nav {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: center;
  }

  .nav-panel {
    position: absolute;
    top: 112px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 251, 245, 0.96);
    box-shadow: var(--shadow);
    z-index: 10;
  }

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

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

  .hero-copy {
    padding-right: 0;
  }

  .hero-photo-frame {
    inset: 20px 20px 172px 20px;
    border-radius: 26px;
  }

  .section-heading,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .launch-strip,
  .story-layout,
  .faq-layout,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-tall,
  .product-card:nth-child(3),
  .product-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .announcement-bar {
    font-size: 0.72rem;
    padding-inline: 16px;
  }

  .hero-header {
    width: min(100vw - 20px, 100%);
    margin-top: 10px;
    padding: 14px 14px 22px;
    border-radius: 28px;
  }

  .top-nav {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding-bottom: 18px;
  }

  .brand-copy small {
    display: none;
  }

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

  .cart-button span {
    display: none;
  }

  .hero-copy {
    padding: 34px 4px 14px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-stage {
    min-height: 520px;
  }

  .nav-toggle,
  .cart-button {
    min-height: 46px;
    padding-inline: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(65, 45, 28, 0.08);
  }

  .feature-card-main {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 22px;
  }

  .feature-card-side {
    top: 18px;
    right: 18px;
    width: calc(100% - 36px);
  }

  .collection-section,
  .note-band,
  .story-section,
  .benefits-section,
  .faq-section,
  .site-footer {
    width: min(100vw - 20px, 100%);
  }

  .collection-section {
    padding-top: 22px;
  }

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

  .button {
    width: 100%;
  }

  .section-heading h2,
  .note-card h2,
  .cart-panel-header h2 {
    font-size: 2.4rem;
  }

  .product-content,
  .note-card,
  .story-panel,
  .benefit-card,
  .contact-card,
  .faq-item,
  .site-footer,
  .legal-hero,
  .legal-card {
    padding: 20px;
  }

  .launch-strip article {
    padding: 16px;
  }

  .story-image {
    min-height: 180px;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .add-to-cart {
    width: 100%;
  }

  .cart-panel {
    padding: 18px 16px 16px;
  }

  .toast {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}
