:root {
  --ink: #302723;
  --muted: #746965;
  --paper: #fbf8f5;
  --cream: #f4ede7;
  --rose: #dcc3b9;
  --rose-deep: #a96f62;
  --line: #dfd6d0;
  --white: #fff;
  --dark: #312520;
  --shadow: 0 24px 70px rgba(53, 37, 31, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body.locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--dark);
  color: white;
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.announcement {
  min-height: 34px;
  padding: 8px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--dark);
  color: #f8eee8;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rose); }

.site-header {
  width: min(1440px, 100%);
  height: 82px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 245, .94);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 18px;
  letter-spacing: .26em;
  font-weight: 650;
}
.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
  letter-spacing: 0;
}
.desktop-nav { display: flex; gap: 34px; font-size: 13px; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.cart-button {
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.cart-button span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-size: 11px;
}

.hero {
  width: min(1440px, 100%);
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
}
.hero-copy {
  padding: clamp(70px, 9vw, 135px) clamp(40px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.hero h1, .section-heading h2, .promise-section h2, .service-band h2,
.modal h2, .drawer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(50px, 5vw, 78px); line-height: .98; }
.hero-text {
  max-width: 520px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  min-height: 50px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: var(--dark); color: white; }
.button-dark:hover { background: #4a3831; }
.button-light { background: white; color: var(--dark); }
.button-quiet { background: transparent; border-color: var(--line); }
.button-paypal { background: #ffc439; color: #142c8e; }
.button-full { width: 100%; }
.text-link {
  border: 0;
  background: transparent;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}
.hero-trust {
  margin-top: 70px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.hero-trust span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero-image-wrap {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: #e8d8ce;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  max-width: 260px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
}
.hero-card span { color: var(--rose-deep); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-card strong { margin-top: 5px; font-family: Georgia, serif; font-weight: 400; }

.category-strip {
  min-height: 80px;
  padding: 18px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.filter {
  padding: 9px 17px;
  border: 1px solid transparent;
  border-radius: 30px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.filter.active { color: var(--ink); border-color: #cdbdb6; background: white; }

.products-section { width: min(1320px, 92vw); margin: 0 auto; padding: 100px 0 120px; }
.section-heading {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.section-heading h2, .promise-section h2, .service-band h2 { font-size: clamp(38px, 4vw, 58px); line-height: 1.05; }
.section-heading > p { max-width: 390px; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 20px; }
.product-card { min-width: 0; }
.product-image {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-image img { transform: scale(1.025); }
.quick-add {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 45px;
  border: 0;
  background: rgba(49, 37, 32, .92);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: .2s ease;
}
.product-card:hover .quick-add, .quick-add:focus { opacity: 1; transform: none; }
.product-info { padding: 16px 4px 0; }
.product-brand { margin: 0 0 6px; color: var(--rose-deep); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-info h3 { margin: 0 0 4px; font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.product-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 12px; }
.product-price { color: var(--ink); font-weight: 650; }

.promise-section {
  padding: 110px max(5vw, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
  background: var(--cream);
}
.promise-intro > p:last-child { max-width: 520px; color: var(--muted); line-height: 1.8; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.promise-grid article { padding-top: 18px; border-top: 1px solid #cdbfb7; }
.promise-number { color: var(--rose-deep); font-size: 11px; }
.promise-grid h3 { margin: 28px 0 12px; font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.promise-grid p { color: var(--muted); font-size: 14px; line-height: 1.75; }

.service-band {
  padding: 70px max(5vw, calc((100vw - 1280px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: #b87969;
  color: white;
}
.service-band .eyebrow { color: #f5ded6; }

footer { padding: 80px 5vw 24px; background: var(--dark); color: #f8f0eb; }
.footer-top { max-width: 1280px; margin: 0 auto 70px; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; }
.footer-brand p { color: #bbaea8; }
.footer-top h3 { margin: 5px 0 18px; color: #cabbb4; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-top > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; font-size: 13px; }
.footer-top a:hover { color: var(--rose); }
.footer-button { width: max-content; padding: 0; border: 0; background: transparent; color: inherit; font-size: 13px; cursor: pointer; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #554640; color: #a99d97; font-size: 11px; }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(30, 22, 19, .55);
  backdrop-filter: blur(2px);
}
.drawer, .modal {
  position: fixed;
  z-index: 100;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.drawer {
  top: 0;
  right: 0;
  width: min(470px, 100%);
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .28s ease;
}
.drawer.open { transform: none; }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; }
.drawer h2 { font-size: 37px; }
.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.cart-items { margin-top: 20px; overflow: auto; }
.cart-item { padding: 18px 0; display: grid; grid-template-columns: 82px 1fr auto; gap: 14px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 82px; height: 96px; object-fit: cover; background: var(--cream); }
.cart-item h3 { margin: 5px 0 3px; font-family: Georgia, serif; font-size: 16px; font-weight: 400; }
.cart-item p { margin: 0; color: var(--muted); font-size: 11px; }
.cart-qty { margin-top: 12px; display: flex; align-items: center; gap: 12px; }
.cart-qty button { width: 25px; height: 25px; border: 1px solid var(--line); background: white; cursor: pointer; }
.remove-item { align-self: start; border: 0; background: transparent; color: var(--muted); font-size: 18px; cursor: pointer; }
.cart-empty { margin: auto; text-align: center; color: var(--muted); }
.cart-footer { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.cart-line { margin-bottom: 9px; display: flex; justify-content: space-between; }
.delivery-note, .secure-note { color: var(--muted); font-size: 11px; }
.secure-note { text-align: center; }

.modal {
  inset: 50% auto auto 50%;
  width: min(1040px, 92vw);
  max-height: 92vh;
  overflow: auto;
  transform: translate(-50%, -50%);
}
.modal-close { position: absolute; right: 20px; top: 20px; z-index: 2; }
.product-modal-grid { display: grid; grid-template-columns: 1.05fr .95fr; }
.modal-main-image { aspect-ratio: 1/1.05; background: var(--cream); }
.modal-main-image img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail-row { padding: 12px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; background: white; }
.thumbnail-row button { padding: 0; aspect-ratio: 1; border: 1px solid transparent; background: var(--cream); cursor: pointer; }
.thumbnail-row button.active { border-color: var(--dark); }
.thumbnail-row img { width: 100%; height: 100%; object-fit: cover; }
.modal-product-copy { padding: 70px 55px 45px; }
.modal-product-copy h2 { font-size: clamp(35px, 4vw, 52px); line-height: 1.05; }
.modal-size { color: var(--muted); font-size: 12px; }
.modal-price { margin: 18px 0; font-size: 21px; font-weight: 650; }
.modal-summary { color: var(--muted); line-height: 1.75; }
.benefit-list { padding: 0; margin: 22px 0; list-style: none; }
.benefit-list li { padding: 8px 0 8px 22px; position: relative; border-top: 1px solid var(--line); font-size: 13px; }
.benefit-list li::before { content: "—"; position: absolute; left: 0; color: var(--rose-deep); }
.quantity-row { margin: 20px 0 14px; display: flex; align-items: center; justify-content: space-between; }
.quantity-row label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.quantity-row select { width: 80px; padding: 8px; border: 1px solid var(--line); background: white; }
details { border-bottom: 1px solid var(--line); }
summary { padding: 16px 0; cursor: pointer; font-size: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; }
details p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }

.checkout-modal { width: min(1100px, 94vw); }
.checkout-grid { display: grid; grid-template-columns: 1.3fr .7fr; }
.checkout-form-wrap { padding: 55px; }
.checkout-form-wrap h2 { margin-bottom: 30px; font-size: 45px; }
#checkout-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field.full, .terms-check.full { grid-column: 1/-1; }
.field label { margin: 0 0 6px; font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: .07em; }
.field label span { color: var(--muted); font-weight: 400; text-transform: none; }
.field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: white;
  outline: none;
}
.field input:focus { border-color: var(--rose-deep); }
.terms-check { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 12px; }
.terms-check input { margin-top: 3px; }
.terms-check a { text-decoration: underline; }
.payment-area { margin-top: 28px; padding-top: 25px; border-top: 1px solid var(--line); }
.payment-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.payment-help { color: var(--muted); font-size: 11px; text-align: center; }
.checkout-summary { padding: 55px 35px; background: var(--cream); }
.checkout-summary h3 { margin: 0 0 22px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.checkout-item { padding: 12px 0; display: grid; grid-template-columns: 54px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid #d8cbc3; font-size: 12px; }
.checkout-item img { width: 54px; height: 60px; object-fit: cover; }
.checkout-item strong { font-family: Georgia, serif; font-weight: 400; }
.summary-line { padding: 13px 0; display: flex; justify-content: space-between; font-size: 13px; }
.summary-line.total { margin-top: 5px; padding-top: 19px; border-top: 1px solid #c8bab2; font-size: 17px; }
.checkout-summary > p { color: var(--muted); font-size: 11px; }

.success-modal { width: min(540px, 90vw); padding: 65px; text-align: center; }
.success-mark { width: 58px; height: 58px; margin: 0 auto 28px; display: grid; place-items: center; border-radius: 50%; background: #dfeadd; color: #2f6037; font-size: 24px; }
.success-modal h2 { font-size: 39px; line-height: 1.1; }
.success-modal > p:not(.eyebrow) { margin: 22px 0 30px; color: var(--muted); }

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cookie-banner strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.cookie-banner p { margin: 5px 0 0; max-width: 700px; color: var(--muted); font-size: 12px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

[hidden] { display: none !important; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr 1fr; min-height: 620px; }
  .hero-copy { padding: 70px 5vw; }
  .hero-image-wrap { min-height: 620px; }
  .hero-trust { margin-top: 45px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .promise-section { grid-template-columns: 1fr; gap: 55px; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-top > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .announcement { gap: 8px; font-size: 9px; }
  .announcement-dot { display: none; }
  .site-header { height: 68px; padding: 0 20px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 27px; height: 27px; }
  .hero { display: flex; flex-direction: column; }
  .hero-copy { padding: 65px 24px 55px; }
  .hero h1 { font-size: 52px; }
  .hero-text { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-trust { gap: 8px; }
  .hero-trust strong { font-size: 15px; }
  .hero-trust span { font-size: 8px; }
  .hero-image-wrap { min-height: auto; aspect-ratio: 1/1; }
  .category-strip { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .filter { white-space: nowrap; }
  .products-section { width: calc(100% - 36px); padding: 75px 0 90px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading > p { margin: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
  .quick-add { opacity: 1; transform: none; left: 8px; right: 8px; bottom: 8px; min-height: 40px; }
  .product-info h3 { font-size: 16px; }
  .product-meta { flex-direction: column; gap: 2px; }
  .promise-section { padding: 80px 24px; }
  .promise-grid { grid-template-columns: 1fr; }
  .service-band { padding: 60px 24px; align-items: flex-start; flex-direction: column; }
  footer { padding: 65px 24px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-top > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .drawer { padding: 24px 20px; }
  .modal { width: 100%; max-height: 95vh; inset: auto 0 0 0; transform: none; border-radius: 12px 12px 0 0; }
  .product-modal-grid, .checkout-grid { grid-template-columns: 1fr; }
  .modal-main-image { aspect-ratio: 1/1; }
  .modal-product-copy { padding: 38px 24px 35px; }
  .checkout-form-wrap { padding: 48px 22px 30px; }
  .checkout-form-wrap h2 { font-size: 37px; }
  #checkout-form { grid-template-columns: 1fr; }
  .field.full, .terms-check.full { grid-column: auto; }
  .checkout-summary { padding: 35px 22px; }
  .success-modal { inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 90vw; padding: 48px 25px; border-radius: 0; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; align-items: stretch; flex-direction: column; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

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