:root {
  --ink: #2c1d1d;
  --muted: #6e5a55;
  --cream: #fff9ef;
  --paper: #fffdf8;
  --sand: #f1e3ca;
  --red: #8f1d2c;
  --red-dark: #6e1020;
  --mint: #cfe2d5;
  --mint-dark: #315b49;
  --gold: #e4b863;
  --line: rgba(44, 29, 29, 0.14);
  --shadow: 0 18px 50px rgba(74, 34, 29, 0.11);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 10%, rgba(228, 184, 99, 0.15), transparent 25rem),
    radial-gradient(circle at 95% 28%, rgba(207, 226, 213, 0.35), transparent 31rem);
}

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

a {
  color: var(--red);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--red-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--red-dark);
  border-radius: 99px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.announcement {
  padding: 0.55rem 1rem;
  color: white;
  background: var(--red);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner,
.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--red);
}

.nav .nav-order {
  padding: 0.65rem 1rem;
  color: white;
  background: var(--red);
  border-radius: 99px;
}

.nav .nav-order:hover,
.nav .nav-order[aria-current="page"] {
  color: white;
  background: var(--red-dark);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
}

main {
  min-height: 55vh;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-tight {
  padding-block: 2.5rem 4.5rem;
}

.section-mint {
  background: var(--mint);
}

.section-red {
  color: white;
  background: var(--red-dark);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-red .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 7vw, 6.7rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.25rem;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.section-red .lede,
.section-red p {
  color: rgba(255, 255, 255, 0.82);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--red);
  color: white;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  color: white;
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  color: var(--red);
  background: transparent;
}

.button-secondary:hover {
  color: white;
}

.section-red .button {
  color: var(--red-dark);
  background: var(--cream);
  border-color: var(--cream);
}

.section-red .button-secondary {
  color: white;
  background: transparent;
}

.hero {
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.hero h1 em {
  color: var(--red);
  font-weight: inherit;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 8px solid var(--paper);
  background: var(--sand);
  border-radius: 42% 58% 47% 53% / 44% 38% 62% 56%;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo:nth-child(1) {
  inset: 2% 13% 23% 7%;
  transform: rotate(-3deg);
}

.hero-photo:nth-child(2) {
  right: -2%;
  bottom: 2%;
  width: 55%;
  height: 48%;
  transform: rotate(5deg);
}

.hero-badge {
  position: absolute;
  right: 2%;
  top: 6%;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  padding: 1rem;
  color: var(--red-dark);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.trust-item {
  padding: 1.35rem;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.heading-row h2,
.heading-row p {
  margin-bottom: 0;
}

.editorial-links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.text-link {
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.product-card,
.story-card,
.article-card,
.info-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(74, 34, 29, 0.05);
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-card[hidden] {
  display: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.image-fallback {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 2rem;
  color: var(--red);
  background:
    radial-gradient(circle at center, var(--paper) 0 18%, transparent 19%),
    repeating-radial-gradient(circle at center, transparent 0 22px, rgba(143, 29, 44, 0.08) 23px 25px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.product-card-body,
.article-card-body,
.info-card {
  padding: 1.35rem;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card-kicker,
.availability {
  margin: 0 0 0.4rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 a,
.article-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.product-card h3 a::after,
.article-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.product-card,
.article-card {
  position: relative;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.price {
  color: var(--ink);
  font-weight: 850;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.4rem;
  color: white;
  background: var(--red-dark);
  border-radius: var(--radius);
  text-decoration: none;
}

.category-card:nth-child(2n) {
  color: var(--ink);
  background: var(--mint);
}

.category-card:nth-child(3n) {
  color: var(--ink);
  background: var(--gold);
}

.category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.category-card span {
  opacity: 0.78;
  font-size: 0.85rem;
  font-weight: 700;
}

.story-split,
.content-split,
.product-detail,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.story-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.story-collage img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

.story-collage img:first-child {
  margin-top: 2rem;
}

.page-hero {
  padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: inherit;
}

.catalog-tools {
  position: sticky;
  top: 78px;
  z-index: 20;
  padding-block: 1rem;
  border-block: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.96);
  backdrop-filter: blur(12px);
}

.catalog-tool-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-field {
  min-width: min(100%, 290px);
  padding: 0.76rem 1rem;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
}

.filter-row {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.result-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 3rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.product-detail {
  align-items: start;
}

.gallery-main {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  border-radius: var(--radius);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
  overflow-x: auto;
}

.gallery-thumb {
  width: 84px;
  height: 70px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--sand);
  border-radius: 12px;
  cursor: pointer;
}

.gallery-thumb[aria-pressed="true"] {
  border-color: var(--red);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.product-price {
  margin-block: 1rem;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 850;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-block: 1.2rem;
}

.tag {
  padding: 0.34rem 0.7rem;
  color: var(--mint-dark);
  background: var(--mint);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
}

.notice {
  margin-block: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: rgba(228, 184, 99, 0.17);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.article-card-image {
  aspect-ratio: 16 / 9;
  background: var(--sand);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.article-hero-image {
  width: 100%;
  max-height: 560px;
  margin-bottom: 2rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-hero-image-contain {
  height: 340px;
  object-fit: contain;
  background: var(--paper);
}

.archive-notice {
  max-width: 760px;
}

.prose {
  font-size: 1.05rem;
}

.prose h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.prose h3 {
  margin-top: 1.8rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose > * {
  max-width: 72ch;
}

.prose .legal-note {
  max-width: none;
}

.faq-list {
  display: grid;
  max-width: 850px;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 16px;
}

summary {
  padding: 1.1rem 3rem 1.1rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

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

.step-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
}

.step-card ol {
  padding-left: 1.3rem;
}

.form-card {
  padding: clamp(1.3rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(44, 29, 29, 0.24);
  color: var(--ink);
  background: white;
  border-radius: 11px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field-help {
  color: var(--muted);
  font-size: 0.78rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--mint);
  border-radius: var(--radius);
}

.contact-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.contact-list a {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.site-footer {
  padding-block: 4rem 2rem;
  color: rgba(255, 255, 255, 0.82);
  background: #30171a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.footer-links strong {
  margin-bottom: 0.5rem;
  color: white;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
  }

  .nav[data-open] {
    display: grid;
  }

  .nav a {
    padding: 0.55rem;
  }

  .hero-grid,
  .story-split,
  .content-split,
  .product-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

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

  .catalog-tool-row {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .filter-row {
    order: 3;
    flex-basis: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .shell {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 54px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-photo:nth-child(1) {
    right: 7%;
  }

  .hero-badge {
    width: 100px;
    height: 100px;
    font-size: 0.68rem;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .heading-row {
    align-items: start;
    flex-direction: column;
  }

  .card-grid,
  .category-grid,
  .article-list,
  .steps,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .product-card-body {
    min-height: 180px;
  }

  .catalog-tools {
    top: 77px;
  }

  .search-field {
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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