:root {
  --paper: #fffaf3;
  --paper-strong: #f5ece1;
  --ink: #302a26;
  --ink-soft: #655d57;
  --terracotta: #b6533b;
  --terracotta-dark: #843926;
  --sage: #68765f;
  --sage-light: #e5eadf;
  --rose: #d58c80;
  --gold: #d9a646;
  --white: #ffffff;
  --line: #dfd3c8;
  --shadow: 0 16px 50px rgba(64, 43, 30, 0.1);
  --radius-sm: 0.65rem;
  --radius: 1rem;
  --radius-lg: 1.6rem;
  --container: 74rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.16em; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.announcement {
  background: var(--sage);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-align: center;
  padding: 0.55rem 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.95);
  border-bottom: 1px solid rgba(126, 53, 38, 0.12);
  backdrop-filter: blur(12px);
}
.header-inner { position: relative; min-height: 4.65rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; flex: 0 1 auto; text-decoration: none; }
.brand img { width: clamp(11.25rem, 20vw, 13.75rem); height: auto; }
.nav-toggle { display: none; align-items: center; gap: 0.55rem; min-height: 2.75rem; border: 1px solid var(--line); background: var(--white); color: var(--ink); padding: 0.55rem 0.75rem; border-radius: 0.7rem; font-weight: 800; cursor: pointer; }
.nav-toggle:hover { border-color: var(--terracotta); color: var(--terracotta-dark); }
.nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after { display: block; width: 1.15rem; height: 2px; border-radius: 2px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before, .nav-toggle-lines::after { content: ""; position: absolute; left: 0; }
.nav-toggle-lines::before { top: -0.36rem; }
.nav-toggle-lines::after { top: 0.36rem; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }
.main-nav { display: flex; align-items: center; gap: 1.35rem; }
.main-nav a { text-decoration: none; color: var(--ink-soft); font-size: 0.94rem; font-weight: 700; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--terracotta-dark); }

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.12; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 7vw, 5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: 1.32rem; }
p { margin: 0; }
.eyebrow { color: var(--terracotta-dark); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.lede { color: var(--ink-soft); font-size: clamp(1.04rem, 2vw, 1.22rem); max-width: 42rem; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tight { padding: 2rem 0 4.5rem; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2rem; }
.section-heading > div { display: grid; gap: 0.65rem; }
.section-heading p { color: var(--ink-soft); max-width: 39rem; }
.text-link { color: var(--terracotta-dark); font-weight: 800; }

.hero { overflow: clip; padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6.5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr); align-items: center; gap: clamp(2.25rem, 5vw, 4.75rem); }
.hero-copy { display: grid; gap: 1.35rem; min-width: 0; }
.hero-copy h1 { max-width: 11ch; }
.hero-copy h1 em { color: var(--terracotta); font-weight: inherit; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: var(--terracotta-dark); }
.button-secondary { background: transparent; border-color: var(--terracotta); color: var(--terracotta-dark); }
.button-secondary:hover { background: var(--paper-strong); }
.button[aria-disabled="true"], .button:disabled { background: #b8aaa2; color: #fff; cursor: not-allowed; }
.hero-note { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink-soft); font-size: 0.9rem; }
.hero-note::before { content: "PDF"; flex: none; border-radius: 0.35rem; background: var(--sage-light); color: #42513d; padding: 0.18rem 0.38rem; font-size: 0.68rem; font-weight: 900; }
.hero-visual { position: relative; width: 100%; max-width: 34rem; height: clamp(27rem, 44vw, 34rem); justify-self: end; animation: hero-rise 420ms ease-out both; }
.hero-main {
  position: absolute;
  inset: 0 14% 0 8%;
  width: 76%;
  height: 100%;
  object-fit: contain;
  background: var(--paper-strong);
  border-radius: 11rem 11rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}
.hero-mini { position: absolute; width: 34%; aspect-ratio: 4 / 5; object-fit: cover; border: 0.45rem solid var(--paper); border-radius: 1.2rem; box-shadow: var(--shadow); }
.hero-mini-one { right: 0; bottom: 8%; transform: rotate(3deg); }
.hero-mini-two { left: 0; top: 8%; width: 25%; transform: rotate(-4deg); }
@keyframes hero-rise { from { transform: translateY(10px); } to { transform: translateY(0); } }
.stitch-line { border: 0; border-top: 2px dashed rgba(168, 79, 56, 0.25); margin: 0; }

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.trust-item { background: var(--white); padding: 1.15rem; text-align: center; }
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item span { color: var(--ink-soft); font-size: 0.84rem; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.35rem; }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; height: 100%; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card:has(h3 a:focus-visible) { outline: 3px solid var(--gold); outline-offset: 3px; }
.product-card h3 a:focus-visible { outline: none; }
.product-card-media { display: block; position: relative; background: var(--paper-strong); aspect-ratio: 4 / 5; overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 240ms ease; }
.product-card:hover img { transform: scale(1.025); }
.badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; border-radius: 999px; background: var(--terracotta-dark); color: var(--white); padding: 0.32rem 0.68rem; font-size: 0.72rem; font-weight: 900; box-shadow: 0 3px 15px rgba(0,0,0,.12); }
.product-card-body { display: grid; grid-template-rows: auto minmax(2.6em, auto) 1fr auto; gap: 0.5rem; padding: 1rem; flex: 1; }
.product-category { color: var(--sage); font-size: 0.74rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.product-card h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.product-card h3 a { text-decoration: none; }
.product-card h3 a::after { content: ""; position: absolute; inset: 0; }
.product-card-copy { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.5; }
.product-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; margin-top: auto; padding-top: 0.65rem; }
.price { color: var(--terracotta-dark); font-size: 1.22rem; font-weight: 900; }
.card-arrow { color: var(--terracotta-dark); font-weight: 900; }

.catalog-tools { display: grid; grid-template-columns: minmax(18rem, 1fr) auto; grid-template-areas: "search filters" "status filters"; column-gap: 1rem; row-gap: 0.5rem; align-items: center; margin-bottom: 1.6rem; }
.search-wrap { position: relative; }
.search-wrap { grid-area: search; }
.search-input { width: 100%; min-height: 3.2rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); padding: 0.8rem 1.15rem; }
.filters { grid-area: filters; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.55rem; }
.filter-button { border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink-soft); padding: 0.68rem 0.95rem; font-weight: 750; cursor: pointer; }
.filter-button:hover, .filter-button[aria-pressed="true"] { background: var(--sage); border-color: var(--sage); color: var(--white); }
.results-status { grid-area: status; color: var(--ink-soft); margin: 0; font-size: 0.9rem; }
.product-card[hidden] { display: none; }
.no-results { display: none; padding: 3rem 1rem; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; color: var(--ink-soft); }
.no-results[data-visible="true"] { display: block; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: steps; }
.step { position: relative; background: var(--paper-strong); border-radius: var(--radius-lg); padding: 1.7rem; counter-increment: steps; }
.step::before { content: "0" counter(steps); display: block; color: var(--terracotta); font-family: Georgia, serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 1.6rem; }
.step h3 { margin-bottom: 0.55rem; }
.step p { color: var(--ink-soft); }
.notice-box { border-left: 4px solid var(--terracotta); background: var(--paper-strong); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1rem 1.15rem; font-weight: 750; }

.faq-list { display: grid; gap: 0.75rem; max-width: 52rem; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); padding: 0 1.1rem; transition: border-color 180ms ease, background-color 180ms ease; }
.faq-list details[open] { border-color: rgba(182, 83, 59, .45); background: #fffdf9; }
.faq-list summary { cursor: pointer; font-weight: 800; padding: 1rem 2rem 1rem 0; position: relative; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; color: var(--terracotta); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--ink-soft); padding: 0 0 1.1rem; }
.faq-list details[open] p { animation: faq-in 180ms ease-out; }
@keyframes faq-in { from { transform: translateY(-4px); } to { transform: translateY(0); } }

.page-hero { padding: clamp(3rem, 7vw, 5.5rem) 0 2.5rem; }
.page-hero .container { display: grid; gap: 1rem; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.product-detail { padding: 2.5rem 0 5rem; }
.product-detail-grid { display: grid; grid-template-columns: minmax(20rem, 0.86fr) minmax(22rem, 1.14fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.product-image-wrap { position: sticky; top: 6.3rem; display: grid; place-items: center; width: 100%; max-width: 35rem; min-height: 0; margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-strong); box-shadow: var(--shadow); }
.product-image-wrap img { display: block; width: auto; max-width: 100%; height: auto; max-height: min(72vh, 40rem); object-fit: contain; object-position: center; }
.product-info { display: grid; gap: 1.25rem; }
.product-info .lede { max-width: 38rem; }
.product-info h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.product-info .price { font-size: 1.8rem; }
.product-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
.meta-item { background: var(--paper-strong); border-radius: 0.7rem; padding: 0.8rem; }
.meta-item strong { display: block; font-size: 0.82rem; }
.meta-item span { color: var(--ink-soft); font-size: 0.83rem; }
.checkout-note { color: var(--ink-soft); font-size: 0.88rem; }
.product-info .button { width: 100%; min-height: 3.7rem; }
.content-page { padding: 2rem 0 6rem; }
.prose { max-width: 48rem; }
.prose h2 { font-size: 1.75rem; margin: 2.4rem 0 0.8rem; }
.prose h3 { margin: 1.8rem 0 0.6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p + p { margin-top: 1rem; }
.prose ul { padding-left: 1.25rem; }
.prose a { color: var(--terracotta-dark); }
.related { border-top: 1px solid var(--line); }

.site-footer { background: #292522; color: #fdf4eb; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer .brand { margin-bottom: 1rem; }
.footer-brand img { width: min(100%, 13.75rem); }
.site-footer p, .site-footer a { color: #d6c9bf; }
.footer-links { display: grid; align-content: start; gap: 0.45rem; }
.footer-links strong { margin-bottom: 0.35rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid #4c443f; margin-top: 2.5rem; padding-top: 1.25rem; font-size: 0.82rem; color: #b9aaa0; }

@media (max-width: 64rem) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(20rem, .88fr); gap: 2rem; }
  .hero-visual { height: clamp(25rem, 43vw, 29rem); }
  .product-detail-grid { grid-template-columns: minmax(18rem, .9fr) minmax(20rem, 1.1fr); gap: 2.5rem; }
}

@media (max-width: 48rem) {
  .announcement { min-height: 2rem; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; line-height: 1.25; padding: 0.45rem 0.75rem; }
  .header-inner { min-height: 4rem; gap: 0.75rem; }
  .brand img { width: clamp(10.25rem, 50vw, 12rem); }
  .nav-toggle { display: inline-flex; }
  .main-nav { position: absolute; left: 0; right: 0; top: calc(100% + 0.5rem); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 0.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-0.45rem); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
  .main-nav[data-open="true"] { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 0.8rem; border-radius: 0.5rem; }
  .hero { padding: 2.7rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-visual { width: min(100%, 27rem); height: auto; aspect-ratio: 4 / 5; justify-self: center; }
  .hero-main { position: static; width: 100%; height: 100%; object-fit: contain; border-radius: 7rem 7rem 1.35rem 1.35rem; }
  .hero-mini { display: none; }
  .hero-copy { text-align: center; justify-items: center; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions .button { flex: 1 1 12rem; }
  .hero-note { text-align: left; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
  .product-card-body { grid-template-rows: auto minmax(2.6em, auto) auto; padding: 0.9rem; }
  .product-card-copy { display: none; }
  .product-card h3 { font-size: 1.1rem; }
  .product-card-footer { display: flex; align-items: end; min-height: 2.4rem; padding-top: 0.45rem; }
  .card-arrow { display: none; }
  .trust-strip, .steps { grid-template-columns: 1fr; }
  .catalog-tools { grid-template-columns: minmax(0, 1fr); grid-template-areas: "search" "status" "filters"; gap: 0.7rem; }
  .filters { width: calc(100vw - 2rem); max-width: 100%; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: thin; padding: 0.15rem 0 0.45rem; }
  .filter-button { flex: 0 0 auto; white-space: nowrap; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail { padding: 1.6rem 0 4rem; }
  .product-image-wrap { position: relative; top: auto; width: min(100%, 27rem); max-width: 100%; }
  .product-image-wrap img { max-height: min(53vh, 32rem); }
  .product-info { gap: 1rem; }
  .product-info h1 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 25rem) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .product-grid { gap: 0.55rem; }
  .product-card h3 { font-size: 1rem; }
  .price { font-size: 1.05rem; }
  .product-meta { grid-template-columns: 1fr; }
  .filters { width: calc(100vw - 1.25rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}

@media (max-width: 21.875rem) {
  .product-grid { grid-template-columns: 1fr; gap: 1rem; }
  .product-card-body { padding: 1rem; }
  .product-card h3 { font-size: 1.18rem; }
  .product-card-footer { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
