:root {
  --ink: #211c18;
  --ink-soft: #625a52;
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --sand: #e7ddd2;
  --clay: #b98964;
  --cognac: #6a3e27;
  --line: rgba(33, 28, 24, .16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow: 0 18px 60px rgba(56, 37, 24, .12);
  --section: clamp(76px, 9vw, 144px);
  --container: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open, body.search-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.sr-only, .skip-link:not(:focus) {
  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:focus { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 12px 18px; background: var(--paper); border-radius: 8px; }

.announcement {
  min-height: 36px;
  display: block;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  overflow: hidden;
}
.announcement__track { width: max-content; min-width: 200%; display: flex; animation: announcement-marquee 28s linear infinite; }
.announcement__group { min-width: 50%; padding: 9px 36px; display: flex; align-items: center; justify-content: space-around; gap: 34px; white-space: nowrap; }
.announcement__group i { color: var(--clay); font-style: normal; font-size: 8px; }
@keyframes announcement-marquee { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, .94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(33, 28, 24, .05); }
.header-inner {
  width: var(--container);
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 38px;
}
.brand { width: 132px; }
.brand img, .footer-brand img { height: auto; }
.desktop-navigation { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 34px); }
.desktop-navigation a, .header-actions > a, .header-actions > button { position: relative; font-size: 13px; letter-spacing: .035em; }
.desktop-navigation a::after, .header-actions > a:not(.header-actions__cart)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--ink);
  transition: right .2s ease;
}
.desktop-navigation a:hover::after, .desktop-navigation a:focus-visible::after,
.header-actions > a:hover::after, .header-actions > a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions__search { min-height: 40px; padding: 0 13px; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); background: transparent; border: 0; cursor: pointer; }
.header-actions__search svg, .mobile-navigation__search svg, .search-panel__form svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.header-actions__account { min-height: 40px; padding: 0 13px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.header-actions__account svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.header-actions__cart { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.header-actions__cart svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.menu-toggle, .mobile-navigation { display: none; }

.search-panel { position: fixed; inset: 0; z-index: 60; }
.search-panel[hidden] { display: none; }
.search-panel__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(25, 20, 17, .38); border: 0; cursor: default; backdrop-filter: blur(3px); }
.search-panel__dialog { position: relative; width: 100%; padding: clamp(30px, 4vw, 54px) max(24px, calc((100% - 1240px) / 2)); background: var(--paper); box-shadow: var(--shadow); }
.search-panel__topline { margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.search-panel__topline p { margin: 0; font-family: Georgia, serif; font-size: clamp(27px, 3vw, 40px); }
.search-panel__topline button { padding: 8px 0; color: var(--ink-soft); background: transparent; border: 0; border-bottom: 1px solid currentColor; font-size: 12px; cursor: pointer; }
.search-panel__form { display: grid; grid-template-columns: 1fr 54px; align-items: center; border-bottom: 1px solid var(--ink); }
.search-panel__form input { width: 100%; padding: 14px 0 18px; color: var(--ink); background: transparent; border: 0; outline: 0; font-family: Georgia, serif; font-size: clamp(24px, 4vw, 54px); }
.search-panel__form input::placeholder { color: #9d958e; }
.search-panel__form button { width: 54px; height: 54px; display: grid; place-items: center; color: #fff; background: var(--ink); border: 0; border-radius: 50%; cursor: pointer; }
.search-panel__form svg { width: 21px; }
.search-panel__hint { margin: 14px 0 0; color: var(--ink-soft); font-size: 12px; }

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 128px));
  overflow: hidden;
  background: #a78c7a;
}
.hero__image, .hero__shade { position: absolute; inset: 0; height: 100%; }
.hero__image { object-fit: cover; object-position: center 52%; }
.hero__shade { background: linear-gradient(90deg, rgba(30, 22, 18, .64) 0%, rgba(30, 22, 18, .24) 42%, rgba(30, 22, 18, 0) 70%); }
.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 130px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}
.eyebrow { margin: 0 0 18px; font-size: 11px; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .section h2, .story h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 620px; font-size: clamp(64px, 9.2vw, 132px); }
.hero__copy { max-width: 480px; margin: 30px 0 34px; color: rgba(255, 255, 255, .88); font-size: clamp(15px, 1.5vw, 19px); }
.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .035em;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button--primary { color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.button--primary:hover, .button--primary:focus-visible { color: #fff; background: var(--ink); }
.button--outline { border-color: var(--ink); }
.button--outline:hover, .button--outline:focus-visible { color: #fff; background: var(--ink); }
.hero__scroll { position: absolute; z-index: 3; right: 30px; bottom: 28px; color: #fff; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }

.section { width: var(--container); margin: 0 auto; padding: var(--section) 0; }
.section-heading { margin-bottom: 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.section-heading > * { min-width: 0; }
.section-heading h2, .story h2, .social-hub h2 { font-size: clamp(42px, 5.5vw, 76px); }
.section-heading > p { max-width: 410px; margin: 0 0 8px; color: var(--ink-soft); }
.section-heading--compact { margin-bottom: 42px; }

.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.category-card { position: relative; aspect-ratio: .76; overflow: hidden; border-radius: var(--radius-md); background: var(--sand); box-shadow: 0 0 0 1px rgba(33, 28, 24, .04); }
.category-card img { height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.category-card:nth-child(1) img { object-position: 50% 36%; }
.category-card:nth-child(2) img { object-position: 54% 48%; }
.category-card:nth-child(3) img { object-position: 50% 28%; }
.category-card:nth-child(4) img { object-position: 50% 50%; }
.category-card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(24, 18, 14, .68)); }
.category-card__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 54px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: rgba(255, 253, 249, .94);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 650;
  backdrop-filter: blur(10px);
}
.category-card:hover img, .category-card:focus-visible img { transform: scale(1.035); }
.category-card:focus-visible { outline: 3px solid var(--cognac); outline-offset: 4px; }

.proof {
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof article { padding: 12px clamp(18px, 3.4vw, 48px); display: grid; gap: 8px; border-right: 1px solid var(--line); }
.proof article:first-child { padding-left: 0; }
.proof article:last-child { padding-right: 0; border-right: 0; }
.proof strong { font-family: Georgia, serif; font-size: clamp(28px, 3.2vw, 46px); font-weight: 400; line-height: 1; }
.proof span { max-width: 230px; color: var(--ink-soft); font-size: 13px; }

.text-link { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 650; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { display: grid; gap: 18px; }
.product-card__image { aspect-ratio: .88; overflow: hidden; border-radius: var(--radius-md); background: var(--paper); }
.product-card__image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:nth-child(1) img { object-position: 50% 35%; }
.product-card:nth-child(2) img { object-position: center; }
.product-card:nth-child(3) img { object-position: center; }
.product-card:hover img, .product-card:focus-visible img { transform: scale(1.025); }
.product-card__meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; font-size: 14px; }
.product-card__meta span { max-width: 65%; }
.product-card__meta strong { font-size: 12px; text-align: right; }

.story { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; gap: 0; }
.story__media { min-height: 640px; overflow: hidden; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.story__media img { height: 100%; object-fit: cover; object-position: 48% center; }
.story__content { padding: clamp(48px, 7vw, 96px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: var(--sand); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.story__content p:not(.eyebrow) { max-width: 530px; margin: 30px 0; color: var(--ink-soft); font-size: 16px; }

.social-hub { padding-top: clamp(56px, 7vw, 92px); padding-bottom: clamp(56px, 7vw, 92px); display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: clamp(48px, 8vw, 120px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.social-hub__intro h2 { margin: 0; font-size: clamp(42px, 5vw, 66px); }
.social-hub__intro > p:last-child { max-width: 470px; margin: 24px 0 0; color: var(--ink-soft); }
.social-hub__links { display: grid; }
.social-hub__links a { min-height: 86px; padding: 19px 0; display: grid; grid-template-columns: 108px 1fr auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.social-hub__links a:first-child { border-top: 1px solid var(--line); }
.social-hub__links a > span:first-child { color: var(--ink-soft); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.social-hub__links strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(24px, 2.4vw, 34px); font-weight: 400; }
.social-hub__links a > span:last-child { font-size: 18px; transition: transform .2s ease; }
.social-hub__links a:hover > span:last-child, .social-hub__links a:focus-visible > span:last-child { transform: translate(3px, -3px); }
.social-hub__links a:focus-visible { outline: 2px solid var(--cognac); outline-offset: 4px; }

.site-footer { padding: 72px max(24px, calc((100% - 1240px) / 2)) 24px; color: #f5eee7; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: 128px; filter: invert(1); }
.footer-brand p, .footer-note { max-width: 280px; color: #bdb3aa; font-size: 13px; }
.footer-grid h2 { margin: 0 0 18px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a { font-size: 13px; color: #ddd4cc; }
.footer-grid a:hover, .footer-grid a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { margin-top: 64px; padding-top: 20px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.15); color: #938980; font-size: 11px; }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  .header-inner { position: relative; height: 76px; display: flex; justify-content: center; gap: 14px; }
  .brand { width: 116px; justify-self: center; }
  .desktop-navigation { display: none; }
  .header-actions { position: absolute; right: 0; }
  .header-actions__search { display: none; }
  .header-actions__account { width: 40px; padding: 0; justify-content: center; border-radius: 50%; }
  .header-actions__account span { display: none; }
  .menu-toggle { position: absolute; left: 0; width: 42px; height: 42px; padding: 11px 8px; display: grid; align-content: center; gap: 6px; color: var(--ink); background: transparent; border: 0; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-navigation { position: fixed; inset: 76px 0 auto; z-index: 30; max-height: calc(100svh - 76px); padding: 28px 24px 40px; display: grid; background: var(--paper); border-top: 1px solid var(--line); box-shadow: var(--shadow); overflow: auto; }
  .mobile-navigation[hidden] { display: none; }
  .mobile-navigation__search { min-height: 48px; margin-bottom: 14px; padding: 0 16px; display: flex; align-items: center; gap: 10px; color: var(--ink); background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 650; cursor: pointer; }
  .mobile-navigation a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 28px; }
  .hero { min-height: 720px; }
  .hero__image { object-position: 61% 50%; }
  .hero__shade { background: linear-gradient(180deg, rgba(27,19,15,.12) 20%, rgba(27,19,15,.72) 100%); }
  .hero__content { justify-content: flex-end; padding-bottom: 82px; }
  .hero h1 { font-size: clamp(68px, 17vw, 104px); }
  .hero__copy { margin: 22px 0 28px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { display: none; }
  .story { grid-template-columns: 1fr; }
  .story__media { min-height: 520px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .story__content { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .social-hub { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); --section: 76px; --radius-md: 8px; --radius-lg: 12px; }
  .announcement { min-height: 34px; font-size: 9px; }
  .announcement__group { padding: 9px 24px; gap: 24px; }
  .hero { min-height: calc(100svh - 110px); max-height: 760px; }
  .hero__image { object-position: 58% 50%; }
  .hero__content { padding-bottom: 62px; }
  .hero h1 { font-size: clamp(64px, 21vw, 88px); }
  .hero__copy { max-width: 330px; font-size: 15px; }
  .hero__scroll { display: none; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .story h2, .social-hub h2 { font-size: 43px; }
  .mobile-line { display: block; }
  .category-grid { grid-template-columns: 1fr; gap: 12px; }
  .category-card { aspect-ratio: 1.08; }
  .category-card:nth-child(1) img { object-position: 50% 40%; }
  .category-card:nth-child(3) img { object-position: 50% 23%; }
  .proof { grid-template-columns: 1fr; padding: 8px 0; }
  .proof article, .proof article:first-child, .proof article:last-child { padding: 24px 0; grid-template-columns: minmax(128px, .8fr) 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof article:last-child { border-bottom: 0; }
  .proof strong { font-size: clamp(29px, 9vw, 40px); }
  .search-panel__dialog { padding: 30px 20px 34px; }
  .search-panel__form { grid-template-columns: 1fr 46px; }
  .search-panel__form input { min-width: 0; font-size: 23px; }
  .search-panel__form button { width: 44px; height: 44px; }
  .product-grid { display: flex; margin-right: -14px; padding-right: 14px; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .product-card, .product-card:last-child { min-width: 82vw; display: grid; scroll-snap-align: start; }
  .story__media { min-height: 430px; }
  .story__content { padding: 40px 24px 46px; }
  .social-hub__links a { grid-template-columns: 92px 1fr auto; gap: 12px; }
  .social-hub__links strong { font-size: 26px; }
  .site-footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .announcement__track { width: 100%; min-width: 0; transform: none; }
  .announcement__group { min-width: 100%; justify-content: center; }
  .announcement__group span:not(:first-child), .announcement__group i, .announcement__group[aria-hidden="true"] { display: none; }
}
