/* Bradford & Magaline — Luxury Floral Design */

/* Fonts */
@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('fonts/cormorant-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/cormorant-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('fonts/cormorant-600.woff2') format('woff2');
}

/* Design tokens */
:root {
  --color-primary: #0a211c;
  --color-bg: #ffffff;
  --color-bg-warm: #f5f2ee;
  --color-text: #0a211c;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #e8e8e8;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 60px;
  --space-xl: 80px;
  --space-2xl: 120px;

  --header-height: 80px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Site Header wrapper ────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-xs) var(--space-sm);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space-xs); }

/* ─── Promo Banner ────────────────────────────────────────── */
.promo-banner {
  background: var(--color-primary);
  color: white;
  padding: 8px var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  max-height: 40px;
  overflow: hidden;
  transition: max-height 0.3s ease, min-height 0.3s ease,
              padding-top 0.3s ease, padding-bottom 0.3s ease, opacity 0.3s ease;
}
.promo-banner.hidden {
  max-height: 0;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.promo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.promo-carousel__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.promo-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-sm);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.promo-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.promo-carousel__slide p {
  margin: 0;
  font-size: 0.65rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.promo-carousel__slide a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.5em;
  border-bottom: 1px solid white;
  transition: opacity 0.2s;
}
.promo-carousel__slide a:hover {
  opacity: 0.7;
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--space-sm);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav__wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}
.nav--solid .nav__wordmark { color: var(--color-text); }
.nav__links {
  display: none;
  gap: var(--space-md);
  list-style: none;
}
.nav__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
  padding: var(--space-xs) 0;
}
.nav--inner .nav__link { color: var(--color-text-light); font-weight: 600; }
.nav--solid .nav__link { color: var(--color-text); }
.nav__link:hover { color: rgba(255,255,255,0.8); }
.nav--solid .nav__link:hover,
.nav--inner .nav__link:hover { color: var(--color-text); }
.nav__link--active {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.nav--solid .nav__link--active,
.nav--inner .nav__link--active {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

/* Inner page nav (white bg by default) */
.nav--inner {
  background: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav--inner .nav__wordmark { color: var(--color-text); }


/* Hamburger — mobile base: visible */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: background 0.3s ease;
}
.nav--solid .nav__hamburger span,
.nav--inner .nav__hamburger span { background: var(--color-text); }

/* ─── Mobile overlay ─────────────────────────────────────── */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav__link {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  padding: var(--space-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: var(--space-xs);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Hero (approved — do not modify) ───────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--color-primary);
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.hero__wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.hero__tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__cta {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 24px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.hero__cta:hover {
  background: #fff;
  color: var(--color-primary);
}

/* ─── Editorial split — mobile first (1 col base) ───────── */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
}
.editorial__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.editorial__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.section-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}
.editorial__body {
  color: var(--color-text-light);
  max-width: 380px;
  margin-bottom: var(--space-md);
}
.text-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.7; }

/* ─── Homepage featured collection grid ─────────────────── */
.featured-collection {
  background: var(--color-bg-warm);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.featured-collection__header {
  margin-bottom: var(--space-xl);
}
.featured-collection__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.featured-card {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-sm);
}
.featured-card:last-child { border-bottom: none; }
.featured-card__image-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.featured-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.featured-card:hover .featured-card__image {
  transform: scale(1.03);
}
.featured-card__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}
.featured-card__link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.featured-card__link:hover { color: var(--color-text); }

/* ─── Featured carousel ────────────────────────────── */
.featured-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.featured-carousel__slide {
  display: none;
  animation: featuredFadeIn 0.5s ease;
}
.featured-carousel__slide.is-active { display: block; }
.featured-carousel__slide.is-exiting {
  display: block;
  animation: featuredFadeOut 0.35s ease forwards;
}
@keyframes featuredFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes featuredFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
.featured-collection__eyebrow,
.featured-collection__heading {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.featured-collection__header.is-transitioning .featured-collection__eyebrow,
.featured-collection__header.is-transitioning .featured-collection__heading {
  opacity: 0;
  transform: translateY(-6px);
}
.featured-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.featured-carousel__prev,
.featured-carousel__next {
  background: none;
  border: 1px solid var(--color-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color 0.2s, border-color 0.2s;
}
.featured-carousel__prev:hover,
.featured-carousel__next:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}
.featured-carousel__dots {
  display: flex;
  gap: 8px;
}
.featured-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}
.featured-carousel__dot.is-active {
  background: var(--color-text);
  border-color: var(--color-text);
}
.featured-carousel__dot:hover {
  border-color: var(--color-text);
}

/* ─── Magaline's Porch section ──────────────────────────── */
.porch {
  display: grid;
  grid-template-columns: 1fr;
}
.porch__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.porch__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-bg);
}
.porch__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}
.porch__body {
  color: var(--color-text-light);
  max-width: 400px;
}

/* ─── About page: story section ────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
}
.about-story__image {
  width: 100%;
  display: block;
}
.about-story__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-bg);
}
.about-story__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}
.about-story__body {
  color: var(--color-text-light);
  max-width: 400px;
}
.about-story__body p + p {
  margin-top: var(--space-sm);
}

/* ─── About page: immersive place section ──────────────── */
.about-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-immersive__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-immersive__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 33, 28, 0.3) 0%,
    rgba(10, 33, 28, 0.65) 100%
  );
}
.about-immersive__content {
  position: relative;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  max-width: 680px;
}
.about-immersive__eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.7);
  margin-bottom: var(--space-sm);
}
.about-immersive__heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.15em;
  line-height: 1.3;
  color: #f5f2ee;
  margin-bottom: var(--space-lg);
}
.about-immersive__body {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245, 242, 238, 0.85);
  margin-bottom: var(--space-md);
}
.about-immersive__body:last-child {
  margin-bottom: 0;
}

/* ─── Closing CTA ───────────────────────────────────────── */
.closing-cta {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-bg);
}
.closing-cta__line {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

/* ─── Page header ───────────────────────────────────────── */
.page-header {
  text-align: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-md);
}
.page-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.page-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

/* ─── Collection page sections ──────────────────────────── */
.collection-section {
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--color-border);
}
.collection-section:first-of-type { border-top: none; }
.collection-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.collection-section__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  max-width: 480px;
  margin: 0 auto;
}
.collection-placeholder {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  color: var(--color-text-muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
}

/* ─── Product grid — mobile first (1 col) ───────────────── */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.product-card {
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.product-card__image-container {
  position: relative;
  padding-top: 100%;
  background: var(--color-bg);
  overflow: hidden;
}
.product-card__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 66%;
  max-height: 66%;
  object-fit: contain;
  transition: opacity 0.5s ease;
}
.product-card__hover-picture {
  position: absolute;
  inset: 0;
}
.product-card__hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-card:hover .product-card__hover-image { opacity: 1; }
.product-card:hover .product-card__image { opacity: 0; }
.product-card__info {
  padding: 20px 24px 24px;
  text-align: center;
}
.product-card__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}
.product-card__cta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.product-card__cta:hover { color: var(--color-text); }

/* ─── Product detail pages ──────────────────────────────── */
.product-main {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--header-height);
}
.product-hero {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-border);
}
.product-details-visual {
  overflow: hidden;
}
.product-closeup {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-info {
  padding: var(--space-xl) var(--space-md);
  max-width: 680px;
  margin: 0 auto;
}
.product-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.product-desc {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  max-width: 480px;
}
.product-asterisk {
  font-size: 11px;
  font-style: italic;
  color: var(--color-text-light);
  opacity: 0.65;
  max-width: 480px;
  margin-bottom: var(--space-xl);
}
.variant-group {
  margin-bottom: var(--space-lg);
}
.variant-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  display: block;
}
.variant-options {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.variant-chip {
  position: relative;
}
.variant-chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.variant-chip label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 var(--space-md);
  border: 1px solid var(--color-border);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  color: var(--color-text-light);
}
.variant-chip input[type="radio"]:checked + label {
  border-color: var(--color-text);
  color: var(--color-text);
}
.variant-chip label:hover {
  border-color: var(--color-text-light);
  color: var(--color-text);
}
.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}
.product-price-currency {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.product-price {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-text);
  margin: 0;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.btn-primary {
  display: block;
  width: 100%;
  padding: 16px var(--space-md);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  min-height: 52px;
}
.btn-primary:hover { opacity: 0.85; }
.product-editorial {
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--color-border);
  max-width: 680px;
  margin: 0 auto;
}
.product-editorial__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}
.product-editorial__body {
  color: var(--color-text-light);
  max-width: 540px;
}
.product-editorial__body p + p {
  margin-top: var(--space-sm);
}
.product-editorial img {
  width: 100%;
  display: block;
  object-fit: cover;
  margin-bottom: var(--space-lg);
}
.product-delivery {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  border-top: 1px solid var(--color-border);
  max-width: 680px;
  margin: 0 auto;
}
.product-delivery__heading {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.product-delivery__body {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 480px;
}

/* ─── About — mobile first (1 col) ──────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--header-height);
}
.about__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
}
.about__body p {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  max-width: 400px;
}

/* ─── Events showcase ──────────────────────────────────── */
.events-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.events-showcase__tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.events-showcase__tile .featured-card__image-wrap {
  margin-bottom: var(--space-md);
}
.events-showcase__caption {
  max-width: 360px;
  margin: 0 auto;
}
.events-showcase__caption .eyebrow {
  margin-bottom: var(--space-xs);
}
.events-showcase__body {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .events-showcase {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-xl);
  }
}

/* ─── Contact ────────────────────────────────────────────── */
.contact {
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}
.contact .eyebrow { color: var(--color-text-muted); }
.contact .page-heading { color: var(--color-text); }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}
.contact__detail {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}
.contact__detail a {
  color: var(--color-text-light);
  transition: color 0.2s;
}
.contact__detail a:hover { color: var(--color-text); }
.btn-outline {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  padding: 14px 48px;
  color: var(--color-text);
  transition: background 0.2s, border-color 0.2s;
  min-height: 44px;
}
.btn-outline:hover {
  background: var(--color-bg-warm);
  border-color: var(--color-text);
}

/* ─── Contact Form ───────────────────────────────────────── */
.contact-form {
  width: 100%;
  max-width: 560px;
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: left;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 480px) {
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.contact-form__input {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.6;
}
.contact-form__input:focus {
  border-color: var(--color-text);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn-outline {
  align-self: center;
  margin-top: var(--space-sm);
  cursor: pointer;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md) var(--space-sm);
  text-align: center;
}
.footer__inner {
  max-width: 960px;
  margin: 0 auto;
}
.footer__wordmark {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  margin-bottom: var(--space-md);
}
.footer__columns {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.footer__col {
  min-width: 160px;
}
.footer__heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 6px;
}
.footer__links a {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--color-text);
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__social svg {
  width: 16px;
  height: 16px;
}
.footer__legal {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}
.footer__legal-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.footer__legal-links a {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal-links a:hover {
  color: var(--color-text);
}
.footer__copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ─── Legal pages ───────────────────────────────────────── */
.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  line-height: 1.7;
  color: var(--color-text-light);
  font-size: 14px;
}
.legal-content__updated {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin: var(--space-md) 0 var(--space-xs);
}
.legal-content h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: var(--space-sm) 0 var(--space-xs);
}
.legal-content p {
  margin-bottom: var(--space-sm);
}
.legal-content ul {
  margin: 0 0 var(--space-sm) var(--space-sm);
}
.legal-content li {
  margin-bottom: 4px;
}
.legal-content a {
  color: var(--color-text);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.legal-content a:hover {
  color: var(--color-text-light);
}

/* ─── 404 ────────────────────────────────────────────────── */
.error-page {
  background: var(--color-primary);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-page__wordmark {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}
.error-page__message {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}
.error-page__link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.error-page__link:hover { color: #fff; }


/* ─── Mobile-first responsive breakpoints ────────────────── */

/* 480px — landscape phones / small tablets: 2-col product grid */
@media (min-width: 480px) {
  :root { --header-height: 84px; }
  .promo-banner { padding: 10px var(--space-sm); min-height: 40px; max-height: 44px; }
  .promo-carousel__slide p { font-size: 0.7rem; }
  .nav { padding: 10px var(--space-md); }

  .product-card {
    width: 50%;
    border-right: 1px solid var(--color-border);
  }
  .product-card:nth-child(2n) { border-right: none; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--color-border); }
  .featured-card { background: var(--color-bg-warm); border-bottom: none; padding: var(--space-lg) var(--space-md); }
  .featured-grid::after { content: ''; background: var(--color-bg-warm); }
}

/* 769px — tablet: desktop nav, 2-col editorial/about, enhanced typography */
@media (min-width: 769px) {
  :root { --header-height: 88px; }
  .promo-banner { padding: 12px var(--space-xl); min-height: 44px; max-height: 48px; }
  .promo-carousel__slide p { font-size: 0.75rem; }
  .nav { padding: 13px var(--space-xl); }
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
  .nav__wordmark { font-size: 29px; letter-spacing: 0.15em; }

  .hero__wordmark { font-size: 52px; letter-spacing: 0.25em; }
  .hero__tagline { font-size: 14px; }

  .editorial {
    grid-template-columns: 55% 45%;
    min-height: 80vh;
  }
  .editorial__image { aspect-ratio: unset; height: 100%; }
  .editorial__text { padding: var(--space-xl); }

  .porch {
    grid-template-columns: 55% 45%;
    min-height: 70vh;
  }
  .porch__image { aspect-ratio: unset; height: 100%; }
  .porch__text { padding: var(--space-xl); }
  .porch__heading { font-size: 36px; }

  .about-story {
    grid-template-columns: 55% 45%;
    min-height: 70vh;
  }
  .about-story__image { width: 100%; height: 100%; object-fit: cover; }
  .about-story__text { padding: var(--space-xl); }
  .about-story__heading { font-size: 36px; }

  .about-immersive__heading { font-size: 52px; }
  .about-immersive__body { font-size: 20px; }

  .featured-collection { padding: var(--space-2xl) var(--space-xl); }
  .featured-collection__heading { font-size: 36px; }

  .section-heading { font-size: 36px; }
  .page-heading { font-size: 42px; }
  .page-header { padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-lg); }

  .product-main {
    grid-template-columns: 55% 45%;
    min-height: calc(100vh - var(--header-height));
    margin-top: 0;
    padding-top: var(--header-height);
  }
  .product-hero {
    aspect-ratio: unset;
    height: calc(100vh - var(--header-height));
    min-height: 0;
    align-self: start;
    position: sticky;
    top: var(--header-height);
  }
  .product-info {
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    margin: 0;
    border-left: 1px solid var(--color-border);
  }
  .product-name { font-size: 42px; }
  .btn-primary { width: auto; max-width: 320px; display: inline-block; }
  .product-details-grid {
    grid-template-columns: 47% 53%;
    align-items: stretch;
  }
  .product-details-text .product-editorial { padding: var(--space-xl) var(--space-md); max-width: none; margin: 0; }
  .product-details-text .product-delivery { padding: var(--space-md) var(--space-md) var(--space-xl); max-width: none; margin: 0; }
  .product-closeup { aspect-ratio: unset; height: 100%; min-height: 600px; }

  .about {
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
  .about__image { aspect-ratio: unset; height: 100%; }
  .about__text { padding: var(--space-xl); }

  .contact { padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-xl); }

  .collection-section { padding: var(--space-2xl) var(--space-xl); }
  .footer { padding: var(--space-lg) var(--space-xl) var(--space-sm); }
  .closing-cta { padding: var(--space-2xl) var(--space-xl); }
  .closing-cta__line { font-size: 32px; }
}

/* 1024px — desktop: 3-col product grid */
@media (min-width: 1024px) {
  .product-card { width: 33.333%; border-right: 1px solid var(--color-border); }
  .product-card:nth-child(2n) { border-right: 1px solid var(--color-border); }
  .product-card:nth-child(3n) { border-right: none; }
  .featured-grid { grid-template-columns: repeat(4, 1fr); background: transparent; gap: 0; }
  .featured-grid::after { display: none; }
  .featured-card { border-right: 1px solid var(--color-border); }
  .featured-card:last-child { border-right: none; }
  .product-details-grid { grid-template-columns: 45% 55%; }
  .product-details-text .product-editorial { padding: var(--space-xl) var(--space-lg); }
  .product-details-text .product-delivery { padding: var(--space-md) var(--space-lg) var(--space-xl); }
}

/* ─── Commerce: Fresh delivery ZIP checker ──────────── */
.fresh-notice {
  margin: var(--space-sm) 0 var(--space-md);
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  background: #fafaf7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fresh-notice[hidden] { display: none; }
.fresh-notice__hint {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
.fresh-zip {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fresh-zip__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.fresh-zip__row {
  display: flex;
  gap: 8px;
}
.fresh-zip__input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  font: inherit;
  font-size: 14px;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
.fresh-zip__input:focus {
  outline: none;
  border-color: var(--color-text);
}
.fresh-zip__submit {
  padding: 11px 18px;
  background: var(--color-text);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.fresh-zip__submit:hover { background: #163832; }
.fresh-zip__result {
  margin: 4px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
}
.fresh-zip__result--pending { color: var(--color-text-muted); }
.fresh-zip__result--ok      { color: #1f6f3f; }
.fresh-zip__result--err     { color: #8b2a2a; }

/* ─── Commerce: Add to Cart Button ──────────────────── */
.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px var(--space-md);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  min-height: 56px;
  transition: background 0.25s ease, transform 0.15s ease;
  position: relative;
}
.btn-cart:hover { background: #163832; transform: translateY(-1px); }
.btn-cart:active { transform: translateY(0); }
.btn-cart.is-added { background: var(--color-bg-warm); color: var(--color-text); }
.btn-cart:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-cart svg { width: 16px; height: 16px; flex-shrink: 0; stroke-width: 1.5; }

/* ─── Commerce: Trust Row ───────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: var(--space-sm);
}
.trust-row__item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0 12px;
}
.trust-row__item + .trust-row__item { border-left: 1px solid var(--color-border); }

/* ─── Navigation: Cart Button ───────────────────────── */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: #fff;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}
.nav--solid .nav__cart-btn,
.nav--inner .nav__cart-btn { color: var(--color-text); }
.nav__cart-btn:hover { opacity: 0.7; }
.nav__cart-btn svg { width: 20px; height: 20px; stroke-width: 1.5; }
.nav__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.nav__cart-count.is-visible { opacity: 1; }

/* ─── Cart Drawer ───────────────────────────────────── */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 33, 28, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 200;
}
.cart-backdrop.is-open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
}
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--color-text-light);
  padding: 4px;
  line-height: 1;
  transition: opacity 0.2s;
}
.cart-drawer__close:hover { opacity: 0.6; }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
}
.cart-empty__message {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
.cart-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}
.cart-item:first-child { border-top: 1px solid var(--color-border); }
.cart-item__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-bg-warm);
  display: block;
}
.cart-item__image--placeholder {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
}
.cart-item__details {
  flex: 1;
}
.cart-item__name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 4px;
}
.cart-item__variant {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.cart-item__qty-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.cart-item__qty-dec {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: var(--color-text-muted);
  background: none;
  border: 1px solid var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s, border-color 0.2s;
}
.cart-item__qty-dec:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}
.cart-item__remove {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cart-item__remove:hover { color: var(--color-text); }
.cart-item__price {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-text);
  flex-shrink: 0;
}
.cart-drawer__footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-md);
}
.cart-subtotal__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.cart-subtotal__price {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-text);
}
.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px var(--space-md);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  min-height: 52px;
  transition: background 0.25s ease;
}
.btn-checkout:hover { background: #163832; }
.cart-continue {
  display: block;
  text-align: center;
  margin-top: var(--space-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.cart-continue:hover { color: var(--color-text); }

/* ─── Image placeholder (missing/broken) ────────────── */
.--no-image {
  position: relative;
  background: var(--color-bg-warm);
}
.--no-image picture,
.--no-image > img {
  visibility: hidden;
}
.--no-image::after {
  content: 'B';
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.08;
  pointer-events: none;
}

/* ─── Reduced motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cart-drawer, .cart-backdrop { transition: none; }
}

/* ─── Checkout Page ─────────────────────────────────── */
.checkout-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-2xl);
}
.checkout-main[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .checkout-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
  .checkout-summary {
    position: sticky;
    top: var(--space-lg);
  }
}

.checkout-summary,
.checkout-payment {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

#payment-element {
  min-height: 280px;
}

.checkout-payment .contact-form__textarea {
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 10px 12px;
  min-height: unset;
  resize: none;
}
.checkout-payment .contact-form__textarea:focus {
  border-color: var(--color-text);
}

.checkout-error {
  font-size: 13px;
  color: #8b2a2a;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
}

/* ── Checkout ledger ──────────────────────────────────────────────────────── */
.checkout-ledger {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-sm);
}
.checkout-ledger__row td {
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  vertical-align: top;
}
.checkout-ledger__row:first-child td {
  border-top: none;
}
.checkout-ledger__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.checkout-ledger__sub {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text-muted);
  opacity: 0.8;
}
.checkout-ledger__value {
  text-align: right;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-text);
  white-space: nowrap;
}
.checkout-ledger__row--total td {
  border-top: 1px solid var(--color-text);
  padding-top: 14px;
}
.checkout-ledger__row--total .checkout-ledger__value {
  font-size: 18px;
}
.checkout-ledger__value--free {
  font-style: italic;
  color: var(--color-text-muted);
}
.checkout-ledger--mobile {
  margin-top: var(--space-md);
}
@media (min-width: 768px) {
  .checkout-ledger--mobile { display: none; }
}

#checkout-submit {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

/* ── Promo code field ─────────────────────────────────────────────────────── */
.promo-field__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.promo-field__row .contact-form__input {
  flex: 1 1 auto;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-outline--small {
  padding: 0 18px;
  min-height: 0;
  font-size: 10px;
  white-space: nowrap;
}
.promo-field__remove {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: center;
  background: none;
  border: 0;
  padding: 0 8px;
  cursor: pointer;
}
.promo-field__msg {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
}
.promo-field__msg--ok  { color: var(--color-text); }
.promo-field__msg--err { color: #8b2a2a; }

/* ── Delivery picker ──────────────────────────────────────────────────────── */
.delivery-picker {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
}
.delivery-picker[hidden] { display: none; }
.delivery-picker__hint {
  font-size: 13px;
  line-height: 1.6;
  color: #8b2a2a;
  margin: 0;
}
.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.delivery-option {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.delivery-option:hover {
  border-color: var(--color-text);
}
.delivery-option--selected {
  border-color: var(--color-text);
  background: #fafaf7;
}
.delivery-option__radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--color-text-muted);
  position: relative;
}
.delivery-option--selected .delivery-option__radio {
  border-color: var(--color-text);
}
.delivery-option--selected .delivery-option__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-text);
}
.delivery-option__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.delivery-option__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
}
.delivery-option__eta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.02em;
}
.delivery-option__note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
  font-style: italic;
}
.delivery-option__price {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
}
.delivery-option__price--free {
  font-style: italic;
  color: var(--color-text-muted);
}
.delivery-picker__blocked {
  padding: 18px 20px;
  border: 1px solid #8b2a2a;
  background: #fdf4f4;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.delivery-picker__blocked-msg {
  font-size: 13px;
  line-height: 1.6;
  color: #4a1414;
  margin: 0;
}
.delivery-picker__cta {
  align-self: flex-start;
}

.checkout-success {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.checkout-success__detail {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text);
}

.checkout-success__message {
  font-size: 14px;
  color: var(--color-text-light);
}

#checkout-empty {
  max-width: 480px;
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.checkout-empty__message {
  font-size: 14px;
  color: var(--color-text-light);
}

#checkout-success,
#checkout-empty {
  display: flex;
}

#checkout-success[hidden],
#checkout-empty[hidden] {
  display: none;
}

/* ─── Newsletter Invitation ─────────────────────────── */
.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;
}
.invite {
  position: fixed;
  left: var(--space-sm);
  right: var(--space-sm);
  bottom: var(--space-sm);
  max-width: 380px;
  margin-left: auto;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  z-index: 150;
  box-shadow: 0 6px 24px rgba(10, 33, 28, 0.08);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  visibility: hidden;
  pointer-events: none;
}
.invite.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.invite__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--color-text-muted);
  padding: 4px;
  transition: color 0.2s;
}
.invite__close:hover { color: var(--color-text); }
.invite__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.invite__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.invite__body {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.invite__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.invite__input {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
}
.invite__input:focus { border-color: var(--color-text); }
.invite__input::placeholder { color: var(--color-text-muted); }
.invite__submit {
  align-self: flex-start;
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-text);
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.invite__submit:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.invite__dismiss {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 2px;
  transition: color 0.2s;
}
.invite__dismiss:hover { color: var(--color-text); }
.invite__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.invite__consent-check {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.invite__consent-label {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text-muted);
  cursor: pointer;
}
.invite__consent-link {
  color: inherit;
  text-decoration: underline;
}
.invite__consent-link:hover { color: var(--color-text); }
.invite__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.invite__success {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  padding: var(--space-xs) 0;
}
@media (min-width: 640px) {
  .invite {
    left: auto;
    right: var(--space-md);
    bottom: var(--space-md);
    width: 360px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .invite { transition: opacity 0.2s linear, visibility 0.2s linear; transform: none; }
  .invite.is-open { transform: none; }
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.contact-form__consent-check {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.contact-form__consent-label {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  cursor: pointer;
}
.contact-form__consent-link {
  color: inherit;
  text-decoration: underline;
}
.contact-form__consent-link:hover { color: var(--color-text); }
.contact-form__status {
  font-size: 12px;
  line-height: 1.5;
  color: #8b2a2a;
  padding-top: 8px;
}
.contact-form__success {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.02em;
  padding: 32px 0;
}
