:root {
  --ink: #1e1917;
  --muted: #746b66;
  --cream: #fff8f4;
  --paper: #fffdfb;
  --rose: #e8b7b0;
  --rose-soft: #f5ded9;
  --cocoa: #6c4035;
  --chartreuse: #d7e49a;
  --line: rgba(30, 25, 23, .14);
  --shadow: 0 18px 70px rgba(58, 34, 27, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, system-ui, sans-serif;
  line-height: 1.5;
}
body.no-scroll { overflow: hidden; }
img { display: block; width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
.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; }

.announcement {
  min-height: 34px;
  padding: 8px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
}
.announcement__close {
  position: absolute;
  right: 20px;
  border: 0;
  background: none;
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.site-header {
  height: 86px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, .92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 22px; letter-spacing: .18em; }
.brand__text small { margin-top: 4px; font-size: 8px; letter-spacing: .34em; }
.nav { display: flex; align-items: center; gap: 32px; font-size: 13px; }
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--ink);
  transition: right .25s ease;
}
.nav a:hover::after { right: 0; }
.header-actions { display: flex; justify-content: flex-end; gap: 8px; }
.icon-button {
  width: 42px; height: 42px; border: 0; background: transparent; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; position: relative;
}
.icon-button:hover { background: var(--cream); }
.icon-button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cart-count {
  position: absolute; top: 1px; right: 0;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 99px; display: grid; place-items: center;
  background: var(--rose); color: var(--ink); font-size: 10px; font-weight: 700;
}
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 120px);
  padding: 7vw 6vw 6vw;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 6vw;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 88%, rgba(215,228,154,.34), transparent 28%),
    linear-gradient(135deg, #fffdfb 0%, #fff7f2 100%);
}
.eyebrow {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.hero h1, .section h2, .mood-panel h2, .story h2, .editorial h2, .newsletter h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: .98;
}
.hero h1 { margin: 0; font-size: clamp(64px, 8vw, 124px); letter-spacing: -.055em; }
.hero h1 em { display: block; color: var(--cocoa); }
.hero__lead { max-width: 540px; margin: 28px 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); color: white; }
.button--dark:hover { background: var(--cocoa); }
.button--light { background: white; color: var(--ink); }
.button--outline { border-color: var(--ink); }
.button--full { width: 100%; }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 600; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: white; }
.hero__notes { display: flex; gap: 20px; margin-top: 52px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero__notes span + span::before { content: "•"; margin-right: 20px; color: var(--rose); }

.hero__visual { min-height: 640px; position: relative; }
.hero-card {
  position: absolute; overflow: hidden; border: 0; box-shadow: 0 18px 55px rgba(43, 31, 27, .14); background: #eee7e1;
}
.hero-card--front { width: 70%; right: 0; top: 0; z-index: 2; }
.hero-card--back { width: 41%; left: 0; bottom: 2%; z-index: 3; }
.hero-card__caption {
  min-height: 54px; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.94); font-size: 9px; letter-spacing: .12em;
}
.hero-sticker {
  width: auto; height: auto; border-radius: 0;
  position: absolute; right: 2%; bottom: 6%; z-index: 4;
  display: block; text-align: center; padding: 10px 14px;
  background: var(--ink); color: white; border: 0;
  font-size: 10px; font-weight: 700; line-height: 1.15; letter-spacing: .12em; transform: none;
}

.ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--chartreuse); }
.ticker div {
  width: max-content; padding: 14px 0; display: flex; gap: 28px; align-items: center;
  animation: ticker 28s linear infinite; font-size: 11px; font-weight: 700; letter-spacing: .16em;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 110px 5vw; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 42px; }
.section-heading h2, .story h2, .editorial h2, .newsletter h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); letter-spacing: -.04em; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { position: relative; }
.product-card__image { aspect-ratio: .76; position: relative; overflow: hidden; background: #ece8e4; }
.product-card__image img { height: 100%; object-fit: cover; object-position: center top; transition: transform .55s ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-badge {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  padding: 7px 9px; background: var(--ink); color: white; font-size: 9px; letter-spacing: .16em;
}
.product-badge--light { background: var(--rose-soft); color: var(--ink); }
.favorite-button {
  position: absolute; right: 12px; top: 12px; z-index: 2;
  width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9);
  font-size: 20px; cursor: pointer;
}
.favorite-button.is-active { background: var(--rose); }
.product-card__meta { display: flex; justify-content: space-between; gap: 12px; padding-top: 16px; }
.product-card__meta h3 { margin: 0 0 4px; font-size: 15px; }
.product-card__meta p { margin: 0; color: var(--muted); font-size: 12px; }
.product-card__meta strong { font-size: 14px; }
.quick-add {
  width: 100%; margin-top: 14px; padding: 11px; border: 1px solid var(--line);
  background: transparent; opacity: 0; transform: translateY(6px); cursor: pointer;
  transition: .2s ease;
}
.product-card:hover .quick-add, .quick-add:focus { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--ink); color: white; }

.mood-section { min-height: 760px; display: grid; grid-template-columns: 1.15fr .85fr; }
.mood-panel { position: relative; overflow: hidden; min-height: 650px; }
.mood-panel img { height: 100%; object-fit: cover; transition: transform .8s ease; }
.mood-panel:hover img { transform: scale(1.03); }
.mood-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,12,11,.7), rgba(16,12,11,.08) 62%); }
.mood-panel__content { position: absolute; left: 7%; right: 7%; bottom: 7%; z-index: 2; color: white; }
.mood-panel h2 { max-width: 680px; margin: 0 0 28px; font-size: clamp(40px, 5vw, 72px); }
.mood-panel--small h2 { font-size: clamp(36px, 4vw, 58px); }

.story {
  display: grid;
  grid-template-columns: 1.2fr .8fr 180px;
  gap: 7vw;
  align-items: center;
  background: var(--cream);
}
.story h2 { max-width: 820px; }
.story__body { color: var(--muted); font-size: 16px; line-height: 1.8; }
.story__body p:first-child { color: var(--ink); font-size: 19px; }
.story__seal {
  aspect-ratio: 1; border: 1px solid var(--ink); border-radius: 50%;
  display: grid; place-content: center; text-align: center; transform: rotate(6deg);
}
.story__seal span { font-family: Georgia, "Times New Roman", serif; font-size: 38px; font-style: italic; }
.story__seal small { font-size: 8px; letter-spacing: .16em; }

.editorial { display: grid; grid-template-columns: 1fr 1fr; min-height: 730px; background: var(--rose-soft); }
.editorial__image img { height: 100%; object-fit: cover; }
.editorial__copy { padding: 8vw; display: flex; flex-direction: column; justify-content: center; }
.editorial__copy h2 { margin: 0 0 42px; }
.editorial ol { margin: 0 0 42px; padding: 0; list-style: none; }
.editorial li { padding: 18px 0; border-bottom: 1px solid rgba(30,25,23,.18); display: flex; gap: 18px; font-size: 15px; }
.editorial li span { font-family: Georgia, "Times New Roman", serif; color: var(--cocoa); }

.testimonials { text-align: center; background: var(--paper); }
.quote-slider { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 56px 1fr 56px; gap: 34px; align-items: center; }
blockquote { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4vw, 58px); line-height: 1.16; letter-spacing: -.025em; }
blockquote cite { display: block; margin-top: 24px; font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-style: normal; letter-spacing: .14em; text-transform: uppercase; }
.slider-button {
  width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer;
}
.slider-button:hover { background: var(--ink); color: white; }

.newsletter {
  padding: 100px 6vw;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 7vw;
  color: white; background: var(--cocoa);
}
.newsletter h2 { max-width: 720px; }
.newsletter-form { align-self: center; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(255,255,255,.7); }
.newsletter-form input { min-width: 0; padding: 18px 4px; border: 0; outline: 0; color: white; background: transparent; font-size: 16px; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form button { border: 0; background: transparent; color: white; font-weight: 700; cursor: pointer; }
.form-message { grid-column: 1 / -1; min-height: 22px; margin: 10px 0 0; font-size: 12px; }
.contact-note { grid-column: 2; display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; color: rgba(255,255,255,.76); font-size: 12px; }
.contact-note strong { color: white; }

.footer { padding: 76px 5vw 26px; background: var(--ink); color: white; }
.footer__brand { display: flex; justify-content: space-between; align-items: end; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.16); }
.brand--footer .brand__mark { background: var(--rose); color: var(--ink); }
.footer__brand p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-style: italic; }
.footer__links { padding: 52px 0; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 680px; margin-left: auto; gap: 40px; }
.footer__links div { display: flex; flex-direction: column; gap: 10px; font-size: 12px; color: rgba(255,255,255,.62); }
.footer__links strong { margin-bottom: 8px; color: white; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; }
.footer__links a:hover { color: white; }
.footer__bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.search-modal { width: min(740px, 92vw); border: 0; padding: 0; box-shadow: var(--shadow); background: var(--paper); }
.search-modal::backdrop { background: rgba(22,16,14,.62); backdrop-filter: blur(5px); }
.search-modal__inner { padding: 58px; position: relative; }
.search-modal__inner > label { display: block; margin-bottom: 16px; font-family: Georgia, "Times New Roman", serif; font-size: 46px; }
.modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; font-size: 34px; cursor: pointer; }
.search-field { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--ink); }
.search-field input { min-width: 0; border: 0; outline: 0; padding: 16px 0; background: transparent; }
.search-field button { border: 0; background: transparent; font-weight: 700; cursor: pointer; }
.search-hint { color: var(--muted); font-size: 12px; }

.cart-drawer {
  position: fixed; z-index: 60; top: 0; right: 0; width: min(440px, 94vw); height: 100dvh;
  padding: 28px; display: flex; flex-direction: column;
  background: var(--paper); box-shadow: var(--shadow); transform: translateX(105%); transition: transform .3s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 55; background: rgba(22,16,14,.55);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer__header { display: flex; justify-content: space-between; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.cart-drawer__header h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 44px; }
.cart-drawer__header button { border: 0; background: transparent; font-size: 32px; cursor: pointer; }
.cart-items { flex: 1; overflow: auto; padding: 22px 0; }
.empty-cart { color: var(--muted); }
.cart-item { display: grid; grid-template-columns: 68px 1fr auto; gap: 14px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cart-item__thumb { width: 68px; height: 84px; display: grid; place-items: center; background: var(--cream); font-family: Georgia, "Times New Roman", serif; font-size: 28px; }
.cart-item h3 { margin: 0 0 3px; font-size: 13px; }
.cart-item p { margin: 0; color: var(--muted); font-size: 11px; }
.cart-item button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.cart-drawer__footer { padding-top: 18px; border-top: 1px solid var(--line); }
.cart-drawer__footer > div { display: flex; justify-content: space-between; margin-bottom: 18px; }
.cart-drawer__footer small { display: block; margin-top: 10px; text-align: center; color: var(--muted); }

.simple-page { min-height: 100vh; background: var(--cream); }
.simple-page main { max-width: 840px; margin: 0 auto; padding: 90px 24px 120px; }
.simple-page h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 8vw, 82px); margin: 0 0 28px; }
.simple-page h2 { margin-top: 42px; font-family: Georgia, "Times New Roman", serif; font-size: 30px; }
.simple-page p, .simple-page li { color: var(--muted); line-height: 1.8; }
.back-link { display: inline-block; margin-bottom: 40px; font-weight: 600; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1fr; padding-inline: 4vw; }
  .hero__visual { min-height: 550px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .story { grid-template-columns: 1fr 1fr; }
  .story__seal { display: none; }
}

@media (max-width: 760px) {
  .announcement { padding-inline: 44px; font-size: 9px; text-align: center; }
  .site-header { height: 72px; grid-template-columns: auto 1fr auto; }
  .brand__mark { width: 36px; height: 36px; font-size: 21px; }
  .brand__text strong { font-size: 18px; }
  .menu-toggle {
    display: flex; width: 38px; height: 38px; padding: 10px; border: 0; background: transparent;
    flex-direction: column; justify-content: center; gap: 4px; cursor: pointer; grid-column: 2; justify-self: end; margin-right: 6px;
  }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 1px; background: var(--ink); }
  .nav {
    position: absolute; left: 0; right: 0; top: 71px; padding: 26px 5vw;
    display: none; flex-direction: column; align-items: flex-start; background: var(--paper); border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .header-actions { grid-column: 3; }
  .icon-button:first-child { display: none; }
  .hero { min-height: auto; padding: 72px 5vw 60px; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(58px, 19vw, 88px); }
  .hero__lead { font-size: 16px; }
  .hero__notes { margin-top: 34px; gap: 10px; flex-wrap: wrap; }
  .hero__notes span + span::before { margin-right: 10px; }
  .hero__visual { min-height: 510px; margin-top: 18px; }
  .hero-card--front { width: 73%; right: 4%; }
  .hero-card--back { width: 52%; }
  .hero-sticker { width: auto; height: auto; font-size: 9px; }
  .section { padding: 78px 5vw; }
  .section-heading { align-items: start; }
  .section-heading .text-link { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; row-gap: 38px; }
  .quick-add { opacity: 1; transform: none; font-size: 11px; }
  .product-card__meta { display: block; }
  .product-card__meta > strong { display: inline-block; margin-top: 8px; }
  .mood-section { grid-template-columns: 1fr; }
  .mood-panel { min-height: 520px; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .editorial { grid-template-columns: 1fr; }
  .editorial__image { min-height: 480px; }
  .editorial__copy { padding: 78px 6vw; }
  .quote-slider { grid-template-columns: 42px 1fr 42px; gap: 10px; }
  .slider-button { width: 42px; height: 42px; }
  .newsletter { padding: 78px 6vw; grid-template-columns: 1fr; }
  .contact-note { grid-column: 1; flex-direction: column; }
  .footer__brand { align-items: start; flex-direction: column; gap: 30px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); margin: 0; }
  .footer__bottom { gap: 14px; flex-direction: column; }
  .search-modal__inner { padding: 40px 24px; }
  .search-modal__inner > label { font-size: 36px; }
}

@media (max-width: 470px) {
  .brand__text small { display: none; }
  .header-actions .icon-button { width: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 430px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
}
