@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;1,500&display=swap");

:root {
  --ink: #24211f;
  --muted: #6d6660;
  --cream: #f7f3ee;
  --paper: #fffdf9;
  --rose: #b45d64;
  --rose-dark: #803e44;
  --blush: #efd9d4;
  --sage: #dce2d5;
  --line: #ded7cf;
  --max: 1200px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 20px 55px rgba(61, 45, 39, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h1, h2 { font-family: var(--serif); font-weight: 500; }
h1 { font-size: clamp(2.6rem, 8vw, 5.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -.035em; }
h3 { font-size: 1.1rem; }
.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;
}
.skip-link {
  position: fixed; top: 1rem; left: 1rem; z-index: 100; padding: .75rem 1rem;
  background: var(--ink); color: white; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; }
.preview-bar {
  padding: .48rem 1rem;
  background: var(--ink);
  color: white;
  text-align: center;
  font-size: .77rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 max(1.25rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(36, 33, 31, .1);
  background: rgba(255, 253, 249, .95);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .94rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .01em;
}
.wordmark i { font-family: var(--serif); font-weight: 500; }
.wordmark-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.nav-toggle {
  display: grid; gap: 5px; padding: .75rem; border: 0; background: transparent; cursor: pointer;
}
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; background: var(--ink); }
.site-nav {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: grid; }
.site-nav a { padding: .7rem 0; text-decoration: none; font-size: .94rem; }
.site-nav a[aria-current="page"] { color: var(--rose-dark); font-weight: 600; }
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: calc(100svh - 108px);
  background: var(--cream);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem max(1.25rem, calc((100vw - var(--max)) / 2)) 2.5rem;
}
.hero h1 { max-width: 760px; margin-bottom: 1.3rem; }
.hero h1 em { color: var(--rose-dark); font-weight: 500; }
.hero .lead { max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.hero-art { min-height: 390px; background: var(--blush); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow {
  margin-bottom: .8rem;
  color: var(--rose-dark);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: .8rem 1.4rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: var(--rose-dark); border-color: var(--rose-dark); }
.button-secondary { background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: white; }
.button-disabled, .button:disabled {
  width: 100%; border-color: #aaa29c; background: #aaa29c; cursor: not-allowed; transform: none;
}
.delivery-strip {
  padding: 1.4rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: var(--rose-dark);
  color: white;
}
.delivery-strip-inner { display: grid; gap: .4rem; max-width: var(--max); margin: auto; }
.delivery-strip strong { font-family: var(--serif); font-size: 1.25rem; }
.delivery-strip p { margin: 0; font-size: .9rem; }
.section { padding: 5rem 1.25rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-heading {
  display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem;
}
.section-heading h2 { max-width: 680px; margin: 0; }
.section-heading p { max-width: 520px; margin: 0; color: var(--muted); }
.text-link { color: var(--rose-dark); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.category-grid, .product-grid, .values-grid { display: grid; gap: 1.25rem; }
.category-card {
  position: relative; min-height: 400px; overflow: hidden; background: var(--blush); color: white;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.category-card:hover img { transform: scale(1.025); }
.category-card-content {
  position: absolute; inset: auto 0 0; padding: 4rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(30, 23, 21, .76));
}
.category-card h3 { margin-bottom: .4rem; font-family: var(--serif); font-size: 2rem; }
.category-card p { margin: 0; }
.steps {
  background: var(--sage);
  counter-reset: step;
}
.steps-grid { display: grid; gap: 2.5rem; margin-top: 3rem; }
.step { counter-increment: step; border-top: 1px solid rgba(36,33,31,.25); padding-top: 1.2rem; }
.step::before {
  content: "0" counter(step); display: block; margin-bottom: 2rem; color: var(--rose-dark);
  font-family: var(--serif); font-size: 1.2rem;
}
.step h3 { font-family: var(--serif); font-size: 1.55rem; }
.step p { color: #514c48; }
.editorial { display: grid; background: var(--cream); }
.editorial-image { min-height: 420px; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy { display: flex; flex-direction: column; justify-content: center; padding: 4rem 1.25rem; }
.editorial-copy > * { max-width: 520px; }
.cta {
  position: relative; overflow: hidden; padding: 5rem 1.25rem; text-align: center; background: var(--rose-dark); color: white;
}
.cta::after {
  content: ""; position: absolute; width: 320px; height: 320px; right: -120px; top: -180px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
}
.cta h2, .cta p { max-width: 680px; margin-left: auto; margin-right: auto; }
.cta .button { background: white; border-color: white; color: var(--ink); }
.site-footer { padding: 4rem max(1.25rem, calc((100vw - var(--max)) / 2)) 1.5rem; background: #292523; color: #f5eee9; }
.footer-main { display: grid; gap: 2.5rem; }
.footer-main > div:first-child p { max-width: 290px; margin-top: 1.2rem; color: #cfc5bd; }
.footer-main h2 { margin-bottom: .9rem; font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; }
.footer-main a:not(.wordmark), .footer-main > div > span { display: block; margin: .45rem 0; color: #ded5ce; font-size: .9rem; text-decoration: none; }
.footer-main a:hover { color: white; text-decoration: underline; }
.footer-main p { color: #ded5ce; font-size: .9rem; }
.footer-bottom {
  display: flex; flex-direction: column; gap: .5rem; margin-top: 3rem; padding-top: 1.25rem;
  border-top: 1px solid #4c4642; color: #bdb4ad; font-size: .78rem;
}
.page-hero { padding: 4.5rem 1.25rem 3rem; background: var(--cream); }
.page-hero-inner { max-width: var(--max); margin: auto; }
.page-hero h1 { max-width: 850px; margin-bottom: 1rem; font-size: clamp(2.8rem, 7vw, 5rem); }
.page-hero p { max-width: 660px; }
.shop-tools {
  display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line);
}
.filters { display: flex; gap: .5rem; overflow-x: auto; padding: 3px; }
.filter-button {
  flex: 0 0 auto; padding: .58rem .95rem; border: 1px solid var(--line); border-radius: 3rem; background: transparent; cursor: pointer;
}
.filter-button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: white; }
.shop-tools p { margin: 0; color: var(--muted); font-size: .9rem; }
.product-card { overflow: hidden; background: white; border: 1px solid var(--line); }
.product-image { position: relative; display: block; aspect-ratio: 4/4.7; overflow: hidden; background: var(--cream); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-image:hover img { transform: scale(1.025); }
.status-pill {
  position: absolute; top: .9rem; left: .9rem; padding: .4rem .65rem; background: rgba(255,253,249,.92);
  color: var(--ink); font-size: .68rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
}
.product-card-body { padding: 1.25rem; }
.product-card-body h2 { margin-bottom: .5rem; font-family: var(--sans); font-size: 1.2rem; letter-spacing: 0; }
.product-card-body h2 a { text-decoration: none; }
.product-meta { margin-bottom: 1rem; color: var(--muted); font-size: .9rem; }
.empty-state { grid-column: 1/-1; padding: 4rem 1.5rem; background: var(--cream); text-align: center; }
.product-layout { display: grid; gap: 2.5rem; max-width: var(--max); margin: auto; padding: 2rem 1.25rem 5rem; }
.product-main-image { position: relative; background: var(--cream); }
.product-main-image img { width: 100%; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; color: var(--muted); font-size: .78rem; }
.product-info h1 { margin-bottom: .8rem; font-size: clamp(2.5rem, 6vw, 4.4rem); }
.product-price { margin-bottom: 1.4rem; font-weight: 600; }
.notice { padding: 1rem 1.1rem; border-left: 3px solid var(--rose-dark); background: var(--cream); }
.notice p { margin: .3rem 0 0; font-size: .9rem; }
.notice-warm { margin: 1.5rem 0; }
.delivery-card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; margin: 1.5rem 0; padding: 1.2rem; background: var(--sage); }
.delivery-card p { margin: .3rem 0 0; font-size: .88rem; }
.delivery-icon { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 1.1rem 0; font-weight: 600; cursor: pointer; }
details p { color: var(--muted); }
.content-page { max-width: 800px; margin: auto; padding: 4rem 1.25rem 6rem; }
.content-page h2 { margin: 3rem 0 1rem; font-size: 2rem; }
.content-page h3 { margin-top: 2rem; }
.content-page p, .content-page li { color: #514c48; }
.content-page .notice { margin: 2rem 0; }
.content-page a { color: var(--rose-dark); }
.policy-meta { color: var(--muted); font-size: .84rem; }
.definition-list { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--line); }
.definition-row { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.definition-row dt { font-weight: 600; }
.definition-row dd { margin: .3rem 0 0; color: var(--muted); }
.contact-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
.contact-card { padding: 1.5rem; background: var(--cream); }
.contact-card h2 { margin: 0 0 .5rem; font-family: var(--sans); font-size: 1.1rem; }
.contact-card p { margin: 0; }
.config-list { padding: 0; list-style: none; border-top: 1px solid var(--line); }
.config-list li { padding: .8rem 0; border-bottom: 1px solid var(--line); }
.config-list li::before { content: "Pending"; margin-right: .7rem; color: var(--rose-dark); font-size: .7rem; font-weight: 600; text-transform: uppercase; }

@media (min-width: 700px) {
  .section { padding: 7rem 2rem; }
  .section-heading { flex-direction: row; align-items: end; justify-content: space-between; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .editorial { grid-template-columns: 1fr 1fr; }
  .editorial-copy { padding: 5rem clamp(2rem, 6vw, 6rem); }
  .footer-main { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .shop-tools { flex-direction: row; align-items: center; justify-content: space-between; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; position: static; gap: 1.8rem; padding: 0; border: 0; box-shadow: none; background: transparent; }
  .hero { grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); }
  .hero-copy { padding-right: 5vw; }
  .hero-art { min-height: 650px; }
  .delivery-strip-inner { grid-template-columns: 260px 1fr; align-items: center; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card:nth-child(2) { transform: translateY(2rem); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: clamp(3rem, 7vw, 7rem); padding-top: 4rem; }
  .product-info { position: sticky; top: 2rem; align-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
