:root {
  --ivory: #faf8f4;
  --cream: #f3efe8;
  --warm-white: #fffcf8;
  --espresso: #2c2319;
  --espresso-soft: #4a3d32;
  --taupe: #9a8b7a;
  --taupe-light: #d4c9bc;
  --taupe-muted: #b8ada0;
  --brass: #b8956b;
  --brass-light: #c4a574;
  --brass-soft: rgba(184, 149, 107, 0.12);
  --wood-light: #c4a882;
  --wood-mid: #8b6f4e;
  --wood-dark: #5c4a35;
  --wood-grain: #6b5438;
  --border: rgba(44, 35, 25, 0.1);
  --border-light: rgba(44, 35, 25, 0.06);
  --shadow: 0 8px 32px rgba(44, 35, 25, 0.06);
  --shadow-lg: 0 20px 60px rgba(44, 35, 25, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --font: 'Source Sans 3', system-ui, sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--ivory);
  color: var(--espresso);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--espresso);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Typography ─── */

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}

.eyebrow--light {
  color: var(--brass-light);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--espresso);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--espresso-soft);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.75;
  max-width: 520px;
}

/* ─── Header ─── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 244, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.logo-mark {
  color: var(--brass);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--espresso-soft);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--espresso);
}

.nav-cta {
  padding: 0.55rem 1.25rem !important;
  background: var(--espresso) !important;
  border: 1px solid var(--espresso) !important;
  color: var(--ivory) !important;
  border-radius: 100px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  font-size: 0.85rem !important;
}

.nav-cta:hover {
  background: var(--espresso-soft) !important;
  border-color: var(--espresso-soft) !important;
  color: var(--ivory) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--espresso);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
  box-shadow: 0 4px 20px rgba(44, 35, 25, 0.15);
}

.btn-primary:hover {
  background: var(--espresso-soft);
  border-color: var(--espresso-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(44, 35, 25, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--espresso);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--warm-white);
  border-color: var(--espresso-soft);
}

.btn-light {
  background: var(--ivory);
  color: var(--espresso);
  border-color: var(--ivory);
}

.btn-light:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.btn-full {
  width: 100%;
}

.btn-checkout {
  padding: 1.1rem 2rem;
  font-size: 1rem;
}

.btn-sticky {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ─── Hero ─── */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(184, 149, 107, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212, 201, 188, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--ivory) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-lead {
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.hero-price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 1.75rem;
}

.hero-price-note {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--taupe);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.hero-trust li {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--taupe);
  padding-left: 1rem;
  position: relative;
}

.hero-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cross-showcase {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse at center, rgba(255, 252, 248, 0.9) 0%, transparent 70%);
}

.product-photo--hero {
  max-width: 360px;
  filter: drop-shadow(0 32px 64px rgba(44, 35, 25, 0.14));
}

.product-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-photo--detail {
  max-width: 280px;
  margin: 2rem;
}

.product-photo--gift {
  max-width: 240px;
  margin: 1.5rem;
}

.product-photo--cta {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.cross-caption {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ─── Shop ─── */

.shop {
  padding: 5rem 0 6rem;
  background: var(--warm-white);
  border-top: 1px solid var(--border-light);
}

.shop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.shop-gallery-main {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2.5rem;
}

.shop-gallery-main .product-photo {
  max-height: 100%;
  max-width: 320px;
  filter: drop-shadow(0 20px 40px rgba(44, 35, 25, 0.1));
}

.shop-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.shop-thumb {
  width: 72px;
  height: 72px;
  padding: 0.5rem;
  background: var(--ivory);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.25s var(--ease);
}

.shop-thumb.is-active,
.shop-thumb:hover {
  border-color: var(--espresso-soft);
}

.shop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.35rem;
}

.shop-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 1.25rem;
}

.shop-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
}

.shop-price-row .price {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 500;
}

.shop-price-shipping {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--taupe);
}

.shop-panel .option-toggle {
  margin-bottom: 1.5rem;
}

.shop-panel .order-form {
  padding: 0;
  background: none;
  border: none;
}

.order-summary--compact {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

/* ─── Details ─── */

.details {
  padding: 6rem 0;
  background: var(--cream);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.details-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.details-list li:last-child {
  border-bottom: none;
}

.details-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.35rem;
}

.details-list span {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.6;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Social Proof ─── */

.social-proof {
  padding: 5rem 0;
  background: var(--ivory);
}

.social-proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.social-proof-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.social-proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.social-proof .testimonial {
  max-width: none;
  margin: 0;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0;
}

.social-proof .testimonial::before {
  display: none;
}

.social-proof .testimonial p {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

/* ─── Sticky Buy Bar ─── */

.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(44, 35, 25, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  display: none;
}

@media (max-width: 768px) {
  .sticky-buy {
    display: block;
  }
}

.sticky-buy.is-visible {
  transform: translateY(0);
}

.sticky-buy-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-buy-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.sticky-buy-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--espresso);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-buy-price {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--espresso);
}

/* ─── Purpose (legacy) ─── */

.purpose {
  padding: 7rem 0;
  background: var(--warm-white);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.purpose-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  transition: background 0.4s var(--ease);
}

.purpose-card:hover {
  background: var(--cream);
}

.purpose-card--featured {
  background: var(--cream);
}

.purpose-card--featured:hover {
  background: var(--ivory);
}

.card-index {
  display: block;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 1.5rem;
}

.purpose-card h3 {
  font-size: 1.5rem;
}

.purpose-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.75;
}

/* ─── Moments ─── */

.moments {
  padding: 7rem 0;
  background: var(--ivory);
}

.moments-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}

.moments-list {
  list-style: none;
  margin-top: 2.5rem;
}

.moments-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.moments-list li:last-child {
  border-bottom: none;
}

.moments-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
}

.moments-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.6;
}

.moments-desc em {
  font-style: italic;
}

.testimonial {
  position: relative;
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--border-light);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.3;
}

.testimonial p {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--espresso);
  position: relative;
  z-index: 1;
}

.testimonial footer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ─── How It Works ─── */

.how-it-works {
  padding: 7rem 0;
  background: var(--warm-white);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.step {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.optional {
  font-weight: 400;
  color: var(--taupe);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--espresso);
  background: var(--cream);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.35rem;
}

.step p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.7;
}

/* ─── Product Detail ─── */

.product-detail {
  padding: 7rem 0;
  background: var(--cream);
}

.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.product-gallery .product-cross-wrap--gift {
  margin-top: 3rem;
}

.product-cross-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  position: relative;
}

.product-cross-wrap::after {
  content: '';
  position: absolute;
  inset: 2rem;
  border: 1px solid var(--border-light);
  pointer-events: none;
}

.product-price {
  margin-bottom: 2rem;
}

.price {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--espresso);
}

.price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.product-features {
  list-style: none;
}

.product-features li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--espresso-soft);
  border-bottom: 1px solid var(--border-light);
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--brass);
}

.product-features li:last-child {
  border-bottom: none;
}

/* ─── Order ─── */

.order {
  padding: 7rem 0;
  background: var(--ivory);
}

.order-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.option-toggle {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.option-card {
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card-inner {
  display: block;
  padding: 1rem 1.15rem;
  border: 1.5px solid var(--border);
  background: var(--warm-white);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  height: 100%;
}

.option-card input:checked + .option-card-inner {
  border-color: var(--espresso);
  background: var(--cream);
  box-shadow: 0 0 0 1px var(--espresso);
}

.option-card:hover .option-card-inner {
  border-color: var(--taupe-muted);
}

.option-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}

.option-desc {
  display: block;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.4;
}

.order-summary {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--warm-white);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.summary-row--muted {
  color: var(--taupe);
  font-weight: 300;
}

.summary-row--total {
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-form {
  padding: 2.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
}

.form-section {
  margin-bottom: 2rem;
}

.form-section h3 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.form-hint {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--espresso);
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--espresso-soft);
  box-shadow: 0 0 0 3px rgba(44, 35, 25, 0.06);
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--espresso-soft);
  margin-bottom: 0.4rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--taupe-muted);
}

.char-count {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--taupe);
  text-align: right;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--taupe);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.form-note a {
  color: var(--espresso-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note svg {
  flex-shrink: 0;
}

.form-error {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #7a2e2e;
  background: rgba(122, 46, 46, 0.08);
  border: 1px solid rgba(122, 46, 46, 0.2);
  text-align: center;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-result {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: var(--ivory);
}

.checkout-result-inner {
  max-width: 560px;
  text-align: center;
}

.checkout-result-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.75;
  margin: 1.5rem 0 2.5rem;
}

/* ─── Gift CTA ─── */

.gift-cta {
  padding: 4rem 0;
  background: var(--espresso);
  color: var(--ivory);
}

.gift-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.gift-cta-text h2 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.gift-cta-text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.6;
  margin: 0;
}

.gift-cta .btn-primary {
  background: var(--ivory);
  color: var(--espresso);
  border-color: var(--ivory);
  flex-shrink: 0;
}

.gift-cta .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

/* ─── Legal Pages ─── */

.legal-page {
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  background: var(--ivory);
}

.legal-content {
  max-width: 680px;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--taupe);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--espresso);
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.75;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--wood-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--espresso);
}

.legal-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--taupe);
}

/* ─── Footer ─── */

.site-footer {
  padding: 4rem 0 2.5rem;
  background: var(--espresso);
  color: rgba(250, 248, 244, 0.6);
  border-top: 1px solid rgba(250, 248, 244, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.logo--footer {
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  font-family: var(--display);
  color: rgba(250, 248, 244, 0.5);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer-nav a:hover {
  color: var(--ivory);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 244, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(250, 248, 244, 0.35);
}

/* ─── Toast ─── */

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  padding: 1rem 2rem;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  border: 1px solid rgba(250, 248, 244, 0.1);
  transition: transform 0.5s var(--ease);
  max-width: 90vw;
  text-align: center;
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
}

/* ─── Reveal Animations ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .hero-inner,
  .shop-inner,
  .details-grid,
  .social-proof-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-lead,
  .hero-trust {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .shop-gallery {
    max-width: 440px;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gift-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav {
    padding: 0 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(250, 248, 244, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
  }

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

  .moments-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 3rem);
  }

  .cross-showcase {
    width: min(100%, 300px);
  }

  .product-photo--hero {
    max-width: 280px;
  }

  .option-toggle {
    grid-template-columns: 1fr;
  }

  .shop-gallery-main {
    aspect-ratio: 1 / 1;
    padding: 1.5rem;
  }

  .social-proof-photo img {
    min-height: 280px;
  }

  .social-proof .testimonial {
    text-align: center;
  }

  .details,
  .shop,
  .how-it-works,
  .social-proof {
    padding: 4rem 0;
  }

  body:has(.sticky-buy.is-visible) {
    padding-bottom: 5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .order-form {
    padding: 1.5rem;
  }

  section {
    padding-left: 0;
    padding-right: 0;
  }

  .purpose,
  .moments,
  .how-it-works,
  .product-detail,
  .order,
  .details,
  .shop,
  .social-proof {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .toast {
    transition: none;
  }
}
