:root {
  --paper: #fcfaf7;
  --warm: #f7f1e8;
  --tan: #f4ebdd;
  --ink: #2f2a24;
  --muted: #5f564e;
  --soft: #8a7c6f;
  --line: #e2d7ca;
  --line-strong: #d8cabe;
  --accent: #b66a74;
  --accent-dark: #9e5962;
  --chip: #f4eee6;
  --shadow: 0 18px 34px rgba(74, 53, 37, 0.06);
  --radius: 4px;
  --page: 1440px;

  /* Spacing system */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 72px;
  --spacing-2xl: 96px;
  --spacing-3xl: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(182, 106, 116, 0.3);
  outline-offset: 4px;
}

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  font-size: 64px;
  line-height: 0.96;
  margin-bottom: 20px;
}

h2 {
  font-size: 44px;
  line-height: 1.06;
  margin-bottom: 16px;
}

h3 {
  font-size: 24px;
  line-height: 1.18;
}

.skip-link {
  position: absolute;
  left: 24px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: min(100%, var(--page));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: var(--spacing-md) var(--spacing-xl) 0;
}

.brand {
  flex: 0 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #6f675f;
  font-size: 14px;
}

.nav-links a:not(.button) {
  border-bottom: 1px solid transparent;
  padding: 6px 0;
}

.nav-links a:not(.button):hover {
  color: var(--ink);
  border-color: currentColor;
}

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 12px 18px;
  font-size: 14px;
}

.button-secondary,
.button-product {
  background: var(--paper);
  color: #3e342b;
  border-color: var(--line-strong);
}

.button-secondary:hover,
.button-product:hover {
  background: #fff;
  border-color: #ccbcae;
  color: var(--ink);
}

.button-mobile {
  width: 100%;
}

.text-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.page-section {
  width: min(100%, var(--page));
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-xl);
}

.section-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.surface-warm {
  background: var(--warm);
}

.surface-tan {
  background: var(--tan);
}

.surface-dark {
  background: var(--ink);
}

.hero-section {
  display: grid;
  align-items: center;
  gap: 56px;
}

.hero-home {
  grid-template-columns: 560px 568px;
  padding-bottom: 0;
}

.collections-hero {
  grid-template-columns: 540px 620px;
}

.product-hero {
  display: grid;
  grid-template-columns: 612px 628px;
  align-items: start;
  gap: 56px;
  padding-bottom: 0;
}

.hero-copy,
.cta-copy,
.split-copy,
.section-intro {
  display: flex;
  flex-direction: column;
}

.hero-copy {
  gap: 20px;
}

.narrow-copy {
  max-width: 540px;
}

.eyebrow {
  color: var(--soft);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.lead {
  margin-bottom: 4px;
}

.lead,
.section-intro p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.cta-copy p:not(.eyebrow),
.detail-card p,
.info-card p,
.collection-card p:not(.tag),
.product-card p:not(.tag),
.popular-copy p:not(.tag),
.popular-footer,
.note-card span,
.mobile-note span,
details p,
.proof-card span {
  color: var(--muted);
}

.section-intro {
  gap: 16px;
  max-width: 860px;
  margin-bottom: 8px;
}

.compact-intro {
  max-width: 760px;
}

.format-intro {
  max-width: 860px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip-row li,
.benefit-stack li {
  border: 1px solid #ebe2d8;
  border-radius: var(--radius);
  background: var(--chip);
  color: #6a5d53;
  padding: 9px 13px;
  font-size: 13px;
}

.mosaic,
.editorial-collage {
  position: relative;
}

.mosaic-card,
.editorial-shot,
.product-card,
.popular-card,
.soft-card,
details,
.note-card,
.mobile-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mosaic-card,
.editorial-shot {
  position: absolute;
  overflow: hidden;
  background: #efe6dc;
  box-shadow: var(--shadow);
}

.mosaic-card img,
.editorial-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-home {
  width: 568px;
  height: 620px;
}

.mosaic-home .primary {
  left: 0;
  top: 44px;
  width: 398px;
  height: 520px;
}

.mosaic-home .top,
.mosaic-home .bottom {
  left: 418px;
  width: 150px;
  height: 194px;
}

.mosaic-home .top {
  top: 86px;
}

.mosaic-home .bottom {
  top: 316px;
}

.mosaic-collections {
  width: 620px;
  height: 620px;
}

.mosaic-collections .primary {
  left: 0;
  top: 38px;
  width: 430px;
  height: 542px;
}

.mosaic-collections .top,
.mosaic-collections .bottom {
  left: 454px;
  width: 166px;
  height: 204px;
}

.mosaic-collections .top {
  top: 82px;
}

.mosaic-collections .bottom {
  top: 316px;
}

.mosaic-note {
  position: absolute;
  left: 418px;
  top: 520px;
  width: 150px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: #6e6257;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.mosaic-collections .mosaic-note {
  left: 454px;
  top: 542px;
  width: 166px;
  min-height: 58px;
}

.mosaic-note.short {
  min-height: 58px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: var(--warm);
  padding-top: 0;
  padding-bottom: 0;
}

.section-band {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.soft-card,
.note-card,
.mobile-note {
  background: var(--paper);
  padding: 20px;
}

.note-card {
  gap: 6px;
  width: fit-content;
  max-width: 260px;
}

.note-card,
.mobile-note,
.popular-copy,
.faq-stack,
.stack-list,
.detail-stack,
.mobile-stack,
.mobile-product-stack {
  display: flex;
  flex-direction: column;
}

.note-card strong,
.mobile-note strong {
  color: var(--ink);
  font-size: 15px;
}

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

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

.cards-grid,
.product-grid,
.popular-grid,
.pill-grid {
  gap: 20px;
}

.card-title-small {
  font-size: 18px;
}

.info-card {
  min-height: 95px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tall-info {
  min-height: 118px;
}

.tag {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.subtle-tag {
  color: #8a7c6f;
}

.collection-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.step-card {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--warm);
  padding: 18px;
}

.image-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.image-link:hover img {
  transform: scale(1.015);
}

.button-product {
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  padding: 14px 18px;
}

.editorial-row {
  grid-template-columns: 560px 620px;
}

.editorial-collage {
  width: 620px;
  height: 700px;
}

.editorial-backdrop {
  position: absolute;
  left: 28px;
  top: 40px;
  width: 564px;
  height: 600px;
  border-radius: 24px 24px 48px 24px;
  background: linear-gradient(180deg, #f9f3eb 0%, #f2e6d7 100%);
}

.editorial-collage .main {
  left: 74px;
  top: 54px;
  width: 336px;
  height: 420px;
}

.editorial-collage .top {
  left: 432px;
  top: 102px;
  width: 148px;
  height: 188px;
}

.editorial-collage .bottom {
  left: 392px;
  top: 324px;
  width: 188px;
  height: 230px;
}

.editorial-caption {
  position: absolute;
  left: 56px;
  top: 458px;
  width: 300px;
  gap: 8px;
  box-shadow: var(--shadow);
}

.mini-pill {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.split-section,
.split-grid-section {
  display: grid;
  gap: 48px;
}

.split-section {
  grid-template-columns: 520px minmax(0, 1fr);
}

.split-grid-section {
  grid-template-columns: 360px minmax(0, 1fr);
}

.narrow-panel {
  gap: 16px;
}

.benefit-stack,
.stack-list,
.detail-stack {
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card,
.promise-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-stack {
  gap: 12px;
}

details {
  background: var(--paper);
  padding: 16px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-top: 8px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.cta-copy {
  max-width: 760px;
  gap: 16px;
}

.surface-dark .eyebrow {
  color: #e4d9cc;
}

.surface-dark h2,
.surface-dark p,
.surface-dark span {
  color: #fff;
}

.surface-dark p:not(.eyebrow),
.surface-dark span {
  color: #d9cfc4;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  white-space: nowrap;
}

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

.occasion-card {
  min-height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.occasion-card span {
  color: #6a5d53;
  font-size: 13px;
  font-weight: 600;
}

.format-grid {
  display: grid;
  grid-template-columns: 720px minmax(0, 1fr);
  gap: 24px;
}

.format-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.format-visual > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.format-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promise-card .eyebrow {
  color: var(--soft);
}

.popular-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  overflow: hidden;
}

.popular-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.popular-copy {
  gap: 10px;
  padding: 18px 18px 0;
}

.popular-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  font-size: 13px;
}

.popular-footer a {
  color: var(--ink);
  font-weight: 600;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-main {
  width: 100%;
  aspect-ratio: 612 / 520;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

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

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

.product-meta strong {
  color: var(--ink);
}

.compact-trust {
  gap: 12px;
}

.current-focus {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.mobile-page {
  width: 100%;
}

.mobile-section {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-md);
}

.mobile-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-section h1 {
  font-size: 40px;
  line-height: 0.98;
  margin-bottom: 20px;
}

.mobile-section h2 {
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.mobile-section p {
  margin-bottom: 16px;
}

.mobile-section .eyebrow {
  margin-bottom: 12px;
}

.mobile-section .button {
  margin-top: 8px;
}

.mobile-stack {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-hero-photo,
.mobile-gallery > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mobile-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mobile-gallery-row img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.mobile-note {
  gap: 8px;
}

.mobile-product-stack {
  gap: 20px;
}

.compact-product img {
  aspect-ratio: 1.25 / 1;
}

.mobile-step {
  min-height: 0;
}

.mobile-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

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

.quick-link {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.quick-link strong {
  color: var(--ink);
  font-size: 16px;
}

.quick-link span {
  color: #6a5d53;
  font-size: 12px;
  line-height: 1.35;
}

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

.proof-card {
  min-height: 92px;
  gap: 6px;
  padding: 14px;
}

.proof-card strong {
  color: var(--ink);
  font-size: 14px;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-cta h2 {
  color: #fff;
}

.mobile-cta .button {
  width: fit-content;
}

@media (max-width: 1240px) {
  .hero-home,
  .collections-hero,
  .editorial-row,
  .product-hero,
  .format-grid,
  .split-section,
  .split-grid-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-home,
  .collections-hero,
  .editorial-row,
  .product-hero {
    gap: 36px;
  }

  .mosaic-home,
  .mosaic-collections,
  .editorial-collage {
    margin: 0 auto;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    align-items: flex-start;
    white-space: normal;
  }

  .trust-band,
  .grid-3,
  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .page-section,
  .site-header {
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-2,
  .grid-3,
  .trust-band,
  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-home,
  .mosaic-collections,
  .editorial-collage {
    transform: scale(0.92);
    transform-origin: top center;
  }
}

@media (max-width: 760px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .site-header {
    width: 100%;
    padding: 24px 20px 0;
    gap: 16px;
  }

  .brand {
    font-size: 22px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    min-width: 118px;
  }

  .page-section {
    padding: 40px 20px;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  h3 {
    font-size: 22px;
  }

  .product-hero,
  .format-grid,
  .split-section,
  .split-grid-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-thumbs {
    gap: 10px;
  }

  .product-card,
  .popular-card,
  .soft-card,
  details {
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 20px;
  }

  .mobile-section h1 {
    font-size: 38px;
  }

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

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