:root {
  --ink: #171513;
  --paper: #f4efe8;
  --cream: #ebe2d7;
  --white: #fffdf9;
  --wine: #642b38;
  --rose: #bda29c;
  --line: rgba(23, 21, 19, .16);
  --muted: #6d665f;
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.skip-link { background: var(--ink); color: var(--white); left: 12px; padding: 10px 14px; position: fixed; top: -60px; z-index: 9999; }
.skip-link:focus { top: 12px; }

.announcement {
  align-items: center;
  background: var(--wine);
  color: var(--white);
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 22px;
  justify-content: center;
  letter-spacing: .14em;
  min-height: 32px;
  padding: 8px 20px;
  text-transform: uppercase;
}
.announcement span { background: rgba(255,255,255,.5); border-radius: 50%; height: 3px; width: 3px; }

.header {
  align-items: center;
  background: rgba(244,239,232,.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 92px;
  padding: 0 clamp(20px, 4vw, 68px);
  position: sticky;
  top: 0;
  transition: min-height .25s ease, box-shadow .25s ease;
  z-index: 1000;
}
.header.is-scrolled { box-shadow: 0 12px 35px rgba(23,21,19,.07); min-height: 72px; }
.logo { display: grid; justify-self: start; line-height: 1; width: max-content; }
.logo span { font-family: var(--serif); font-size: 30px; letter-spacing: .16em; }
.logo small { font-size: 7px; font-weight: 600; letter-spacing: .22em; margin-top: 7px; text-transform: uppercase; }
.nav { align-items: center; display: flex; gap: clamp(20px, 2.5vw, 42px); }
.nav a { font-size: 11px; font-weight: 600; letter-spacing: .08em; position: relative; text-transform: uppercase; }
.nav a::after { background: var(--wine); bottom: -8px; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: right; transition: transform .2s; width: 100%; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-action { align-items: center; border-bottom: 1px solid var(--ink); display: flex; font-size: 11px; font-weight: 600; gap: 18px; justify-self: end; letter-spacing: .1em; padding-bottom: 5px; text-transform: uppercase; }
.menu-toggle { background: none; border: 0; display: none; height: 44px; position: relative; width: 44px; }
.menu-toggle span { background: var(--ink); height: 1px; left: 10px; position: absolute; transition: transform .2s, top .2s; width: 24px; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle.is-active span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-active span:last-child { top: 21px; transform: rotate(-45deg); }

.hero {
  display: grid;
  gap: 0 clamp(30px, 5vw, 84px);
  grid-template-columns: minmax(300px, .9fr) minmax(400px, 1.1fr);
  min-height: calc(100vh - 124px);
  padding: clamp(48px, 7vw, 104px) clamp(20px, 4vw, 68px) 48px;
  position: relative;
}
.hero-copy { align-self: center; max-width: 720px; padding-bottom: 45px; }
.kicker { align-items: center; display: flex; font-size: 10px; font-weight: 600; gap: 13px; letter-spacing: .15em; margin-bottom: 28px; text-transform: uppercase; }
.kicker span { color: var(--wine); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .97; }
h1 { font-size: clamp(62px, 7.2vw, 118px); letter-spacing: -.04em; }
h1 em, h2 em { color: var(--wine); display: block; font-weight: 400; }
.hero-lead { color: var(--muted); font-size: clamp(16px, 1.3vw, 20px); margin-top: 34px; max-width: 520px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 34px; margin-top: 38px; }
.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .14em;
  min-height: 53px;
  padding: 14px 27px;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--wine); }
.text-link { border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 600; letter-spacing: .08em; padding-bottom: 6px; text-transform: uppercase; }
.text-link span { margin-left: 14px; }
.hero-note { border-left: 1px solid var(--wine); display: grid; gap: 12px; grid-template-columns: auto 1fr; margin-top: clamp(50px, 8vh, 95px); max-width: 520px; padding-left: 20px; }
.hero-note strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.hero-note p { color: var(--muted); font-size: 12px; padding-top: 3px; }
.photo-slot {
  background:
    linear-gradient(135deg, transparent 49.8%, rgba(23,21,19,.09) 50%, transparent 50.2%),
    linear-gradient(45deg, transparent 49.8%, rgba(23,21,19,.09) 50%, transparent 50.2%),
    #ddd2c6;
  border: 1px solid rgba(23,21,19,.12);
  overflow: hidden;
  position: relative;
}
.photo-slot::after { border: 1px solid rgba(255,255,255,.48); content: ""; inset: 14px; pointer-events: none; position: absolute; }
.photo-slot > img { height: 100%; inset: 0; object-fit: cover; object-position: center 38%; position: absolute; width: 100%; z-index: 1; }
.photo-slot.has-photo .photo-instruction { display: none; }
.photo-index { background: var(--paper); font-size: 9px; font-weight: 600; left: 0; letter-spacing: .12em; padding: 10px 13px; position: absolute; top: 0; z-index: 2; }
.photo-instruction { left: 50%; position: absolute; text-align: center; top: 50%; transform: translate(-50%,-50%); width: 80%; z-index: 2; }
.photo-instruction strong { display: block; font-family: var(--serif); font-size: clamp(22px, 2.2vw, 34px); font-weight: 400; }
.photo-instruction small { color: var(--muted); display: block; font-size: 10px; letter-spacing: .08em; margin-top: 9px; text-transform: uppercase; }
.photo-slot-hero { min-height: 650px; }
.vertical-copy { bottom: 30px; font-size: 8px; font-weight: 600; letter-spacing: .18em; position: absolute; right: -57px; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left; z-index: 3; }
.hero-caption { bottom: 38px; font-family: var(--serif); font-size: 15px; left: clamp(20px, 4vw, 68px); position: absolute; }

.trust-row { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4,1fr); }
.trust-row article { align-items: center; border-right: 1px solid var(--line); display: flex; gap: 18px; min-height: 82px; padding: 20px clamp(18px, 3vw, 46px); }
.trust-row article:last-child { border: 0; }
.trust-row span { color: var(--wine); font-size: 9px; }
.trust-row p { font-family: var(--serif); font-size: 17px; }

.section { padding: clamp(90px, 10vw, 160px) clamp(20px, 5.5vw, 90px); }
.section-heading { align-items: end; display: grid; gap: 40px; grid-template-columns: 1.35fr .65fr; margin-bottom: clamp(52px, 7vw, 90px); }
.section-heading h2, .finder-copy h2, .faq-title h2 { font-size: clamp(48px, 6.2vw, 94px); letter-spacing: -.03em; }
.section-heading > p { color: var(--muted); font-size: 14px; max-width: 450px; padding-bottom: 8px; }
.height-section { background: var(--white); }
.height-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.height-card { background: var(--cream); border: 1px solid var(--line); min-height: 590px; overflow: hidden; padding: 34px; position: relative; }
.height-card + .height-card { border-left: 0; }
.height-card.is-featured { background: #d7c1ba; transform: translateY(-22px); }
.height-card-dark { background: var(--ink); color: var(--white); }
.height-number { font-family: var(--serif); font-size: clamp(120px, 15vw, 220px); letter-spacing: -.09em; line-height: .8; opacity: .95; }
.height-unit { font-size: 8px; letter-spacing: .2em; margin: 13px 0 0 12px; text-transform: uppercase; }
.height-card-body { bottom: 34px; left: 34px; max-width: 360px; position: absolute; right: 34px; }
.card-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: .15em; margin-bottom: 11px; text-transform: uppercase; }
.height-card h3 { font-size: 46px; margin-bottom: 15px; }
.height-card-body > p:not(.card-eyebrow) { color: var(--muted); font-size: 13px; min-height: 62px; }
.height-card-dark .height-card-body > p { color: rgba(255,255,255,.65); }
.height-card button { background: transparent; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; display: flex; font-size: 9px; font-weight: 600; justify-content: space-between; letter-spacing: .12em; margin-top: 26px; padding: 0 0 7px; text-align: left; text-transform: uppercase; width: 100%; }
.most-loved { background: var(--wine); color: white; font-size: 8px; letter-spacing: .15em; padding: 9px 14px; position: absolute; right: 0; text-transform: uppercase; top: 0; }

.products-section { background: var(--paper); }
.products-heading { margin-bottom: 45px; }
.filters { border-bottom: 1px solid var(--line); display: flex; gap: 33px; margin-bottom: 38px; overflow-x: auto; }
.filters button { background: none; border: 0; color: var(--muted); cursor: pointer; flex: 0 0 auto; font-size: 10px; font-weight: 600; letter-spacing: .1em; padding: 0 0 13px; position: relative; text-transform: uppercase; }
.filters button::after { background: var(--wine); bottom: -1px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); width: 100%; }
.filters button.is-active { color: var(--ink); }
.filters button.is-active::after { transform: scaleX(1); }
.product-grid { display: grid; gap: 54px 18px; grid-template-columns: repeat(3,1fr); }
.product-card { animation: productIn .45s ease both; }
.product-media { aspect-ratio: 4/5; background-color: #e1d8ce; position: relative; }
.product-media img { height: 100%; object-fit: cover; object-position: center 34%; position: relative; width: 100%; z-index: 1; }
.product-media__action { background: rgba(255,253,249,.94); border: 0; bottom: 15px; cursor: pointer; font-size: 8px; font-weight: 600; left: 15px; letter-spacing: .12em; opacity: 0; padding: 13px 17px; position: absolute; text-transform: uppercase; transform: translateY(8px); transition: opacity .2s, transform .2s; z-index: 4; }
.product-card:hover .product-media__action,
.product-media__action:focus-visible { opacity: 1; transform: none; }
.product-media::before {
  background:
    linear-gradient(135deg, transparent 49.8%, rgba(23,21,19,.08) 50%, transparent 50.2%),
    linear-gradient(45deg, transparent 49.8%, rgba(23,21,19,.08) 50%, transparent 50.2%);
  content: ""; inset: 0; position: absolute;
}
.product-media::after { border: 1px solid rgba(255,255,255,.5); content: ""; inset: 10px; position: absolute; }
.product-photo-label { left: 50%; position: absolute; text-align: center; top: 50%; transform: translate(-50%,-50%); width: 80%; z-index: 2; }
.product-photo-label strong { display: block; font-family: var(--serif); font-size: clamp(22px, 2vw, 32px); font-weight: 400; }
.product-photo-label small { color: var(--muted); display: block; font-size: 8px; letter-spacing: .14em; margin-top: 8px; text-transform: uppercase; }
.product-badge { background: var(--wine); color: white; font-size: 8px; left: 0; letter-spacing: .13em; padding: 9px 12px; position: absolute; text-transform: uppercase; top: 0; z-index: 3; }
.product-index { bottom: 17px; font-size: 9px; letter-spacing: .14em; position: absolute; right: 17px; z-index: 3; }
.product-info { align-items: start; display: grid; gap: 5px 20px; grid-template-columns: 1fr auto; padding-top: 17px; }
.product-info small { color: var(--wine); font-size: 8px; font-weight: 600; grid-column: 1/-1; letter-spacing: .14em; text-transform: uppercase; }
.product-info h3 { font-size: 27px; }
.product-info > span { font-family: var(--serif); font-size: 18px; }
.product-info p { color: var(--muted); font-size: 11px; }
.product-view-button { background: none; border: 0; border-bottom: 1px solid var(--ink); cursor: pointer; font-size: 8px; font-weight: 600; grid-column: 2; grid-row: 3; letter-spacing: .1em; padding-bottom: 3px; text-transform: uppercase; }
.empty-message { color: var(--muted); grid-column: 1/-1; padding: 50px 0; text-align: center; }

.editorial { background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1.15fr .85fr; min-height: 790px; }
.photo-slot-wide { background-color: #4f4641; border: 0; margin: 44px 0 44px 44px; }
.photo-slot-wide .photo-index { background: var(--ink); color: var(--white); }
.photo-slot-wide .photo-instruction small { color: rgba(255,255,255,.55); }
.editorial-copy { align-self: center; padding: 80px clamp(44px, 7vw, 120px); }
.kicker-light span { color: #d7aab3; }
.editorial h2 { font-size: clamp(52px, 6vw, 90px); }
.editorial h2 em { color: #d7aab3; }
.editorial-copy > p:not(.kicker) { color: rgba(255,255,255,.62); font-size: 14px; margin: 30px 0; max-width: 480px; }
.button-light { border-color: rgba(255,255,255,.4); color: var(--white); }
.button-light:hover { background: var(--white); color: var(--ink); }
.finder-section { align-items: start; display: grid; gap: clamp(50px, 9vw, 150px); grid-template-columns: .75fr 1.25fr; }
.finder-copy > p:last-child { color: var(--muted); font-size: 14px; margin-top: 27px; max-width: 420px; }
.finder-intro { display: grid; gap: 46px; }
.size-guide { max-width: 430px; }
.size-guide a { background: var(--white); box-shadow: 0 24px 65px rgba(23,21,19,.12); display: block; overflow: hidden; }
.size-guide img { display: block; height: auto; transition: transform .35s ease; width: 100%; }
.size-guide a:hover img { transform: scale(1.015); }
.size-guide figcaption { align-items: center; color: var(--muted); display: flex; font-size: 9px; justify-content: space-between; letter-spacing: .08em; padding-top: 14px; text-transform: uppercase; }
.size-guide figcaption span { color: var(--wine); font-size: 14px; }
.finder { background: var(--white); border: 1px solid var(--line); padding: clamp(28px, 4vw, 56px); }
.finder fieldset { border: 0; margin-bottom: 44px; }
.finder legend { font-family: var(--serif); font-size: 24px; margin-bottom: 20px; }
.choice-grid { display: grid; gap: 9px; grid-template-columns: repeat(3,1fr); }
.choice-grid input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.choice-grid span { border: 1px solid var(--line); cursor: pointer; display: grid; font-size: 10px; font-weight: 600; min-height: 60px; padding: 12px; place-items: center; text-align: center; text-transform: uppercase; transition: background .2s, color .2s; }
.choice-grid input:checked + span { background: var(--wine); border-color: var(--wine); color: white; }
.choice-grid input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 3px; }
.finder-result { align-items: center; border-top: 1px solid var(--line); display: flex; gap: 30px; justify-content: space-between; padding-top: 30px; }
.finder-result div { display: grid; }
.finder-result small { color: var(--muted); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.finder-result strong { font-family: var(--serif); font-size: 36px; font-weight: 400; }

.campaign { background: var(--ink); display: grid; gap: 2px; grid-template-columns: 1fr 1fr; padding: 2px; }
.campaign figure { min-height: min(82vh, 880px); overflow: hidden; position: relative; }
.campaign img { height: 100%; object-fit: cover; object-position: center 35%; position: absolute; transition: transform .6s ease; width: 100%; }
.campaign figure:hover img { transform: scale(1.025); }
.campaign figure::after { background: linear-gradient(180deg, transparent 62%, rgba(23,21,19,.7)); content: ""; inset: 0; position: absolute; }
.campaign figcaption { bottom: clamp(24px, 4vw, 58px); color: white; display: grid; left: clamp(22px, 4vw, 58px); position: absolute; z-index: 2; }
.campaign figcaption span { font-size: 8px; letter-spacing: .17em; margin-bottom: 8px; text-transform: uppercase; }
.campaign figcaption strong { font-family: var(--serif); font-size: clamp(28px, 4vw, 58px); font-weight: 400; }

.service-section { background: var(--white); }
.service-grid { border-left: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4,1fr); }
.service-grid article { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); min-height: 245px; padding: 30px; }
.service-grid span { color: var(--wine); font-size: 9px; }
.service-grid h3 { font-size: 30px; margin: 45px 0 12px; }
.service-grid p { color: var(--muted); font-size: 12px; min-height: 48px; }
.service-grid a { border-bottom: 1px solid var(--ink); font-size: 8px; font-weight: 600; letter-spacing: .1em; padding-bottom: 4px; text-transform: uppercase; }

.faq-section { display: grid; gap: clamp(50px, 9vw, 150px); grid-template-columns: .8fr 1.2fr; }
.faq-title { max-width: 630px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list article { border-bottom: 1px solid var(--line); }
.faq-list button { align-items: center; background: none; border: 0; cursor: pointer; display: flex; font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); justify-content: space-between; padding: 26px 0; text-align: left; width: 100%; }
.faq-list i { font-family: var(--sans); font-size: 22px; font-style: normal; font-weight: 300; transition: transform .25s; }
.faq-list article.is-open i { transform: rotate(45deg); }
.faq-list article > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-list article > div p { color: var(--muted); font-size: 13px; max-width: 620px; overflow: hidden; }
.faq-list article.is-open > div { grid-template-rows: 1fr; }
.faq-list article.is-open > div p { padding-bottom: 28px; }

.contact-section { align-items: center; background: var(--wine); color: white; display: grid; min-height: 660px; overflow: hidden; padding: 100px 20px; position: relative; text-align: center; }
.contact-inner { margin: auto; max-width: 950px; position: relative; z-index: 2; }
.contact-inner .kicker { justify-content: center; }
.contact-inner h2 { font-size: clamp(64px, 9vw, 132px); letter-spacing: -.04em; }
.contact-inner h2 em { color: #e6cbd0; }
.contact-inner > p:not(.kicker) { color: rgba(255,255,255,.7); margin: 30px 0; }
.contact-word { bottom: -9vw; color: rgba(255,255,255,.035); font-family: var(--serif); font-size: 30vw; left: 50%; letter-spacing: -.07em; line-height: 1; position: absolute; transform: translateX(-50%); }

.footer { background: var(--ink); color: var(--white); display: grid; gap: 50px; grid-template-columns: 2fr repeat(3,1fr); padding: 80px clamp(20px, 5.5vw, 90px) 28px; }
.logo-light { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: 12px; margin-top: 24px; max-width: 320px; }
.footer > div:not(.footer-brand) { display: grid; gap: 12px; align-content: start; }
.footer strong { font-size: 9px; letter-spacing: .14em; margin-bottom: 10px; text-transform: uppercase; }
.footer > div a:not(.logo) { color: rgba(255,255,255,.55); font-size: 11px; }
.footer > div a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.38); display: flex; font-size: 8px; grid-column: 1/-1; justify-content: space-between; letter-spacing: .12em; margin-top: 35px; padding-top: 25px; text-transform: uppercase; }
.mobile-buy { display: none; }

.product-modal { display: grid; inset: 0; opacity: 0; pointer-events: none; position: fixed; transition: opacity .25s ease; z-index: 2000; }
.product-modal.is-open { opacity: 1; pointer-events: auto; }
.product-modal__backdrop { background: rgba(23,21,19,.72); inset: 0; position: absolute; }
.product-modal__dialog { align-self: center; background: var(--paper); display: grid; grid-template-columns: minmax(320px,.88fr) minmax(420px,1.12fr); justify-self: center; max-height: min(900px,92vh); max-width: 1080px; overflow: hidden; position: relative; transform: translateY(18px); transition: transform .3s ease; width: min(1080px,94vw); z-index: 1; }
.product-modal.is-open .product-modal__dialog { transform: none; }
.product-modal__close { background: var(--paper); border: 0; cursor: pointer; font-family: var(--sans); font-size: 28px; font-weight: 300; height: 50px; line-height: 1; position: absolute; right: 0; top: 0; width: 50px; z-index: 5; }
.product-modal__media { background: #ddd4ca; min-height: 660px; position: relative; }
.product-modal__zoom { background: transparent; border: 0; cursor: zoom-in; inset: 0; overflow: hidden; padding: 0; position: absolute; width: 100%; }
.product-modal__zoom img { height: 100%; inset: 0; object-fit: cover; object-position: center 34%; position: absolute; transition: transform .45s ease; width: 100%; }
.product-modal__zoom:hover img { transform: scale(1.025); }
.product-modal__zoom > span { align-items: center; background: rgba(255,253,249,.94); bottom: 18px; display: flex; font-size: 8px; font-weight: 600; gap: 18px; letter-spacing: .12em; padding: 14px 16px; position: absolute; right: 18px; text-transform: uppercase; z-index: 2; }
.product-modal__zoom > span i { font-style: normal; }
.product-modal__share { background: rgba(255,253,249,.94); border: 0; bottom: 18px; cursor: pointer; display: flex; font-size: 8px; font-weight: 600; justify-content: space-between; left: 18px; letter-spacing: .12em; padding: 14px 16px; position: absolute; text-transform: uppercase; width: 140px; }
.product-modal__content { align-self: center; padding: clamp(42px,5vw,76px); }
.product-modal__eyebrow { color: var(--wine); font-size: 9px; font-weight: 600; letter-spacing: .15em; margin-bottom: 13px; text-transform: uppercase; }
.product-modal__content h2 { font-size: clamp(52px,6vw,82px); }
.product-modal__detail { color: var(--muted); font-size: 14px; margin-top: 12px; }
.product-modal__price-row { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; margin: 28px 0 24px; padding-bottom: 22px; }
.product-modal__price-row > strong { font-family: var(--serif); font-size: 30px; font-weight: 400; }
.availability { align-items: center; color: var(--muted); display: flex; font-size: 9px; gap: 7px; text-transform: uppercase; }
.availability i { background: #81976a; border-radius: 50%; height: 6px; width: 6px; }
.payment-note { align-items: center; background: #e9dfd5; display: grid; gap: 16px; grid-template-columns: auto 1fr; padding: 15px 17px; }
.payment-note span { background: #6f3191; border-radius: 6px; color: white; font-size: 9px; font-weight: 600; letter-spacing: .1em; padding: 8px 10px; }
.payment-note p { color: var(--muted); font-size: 10px; }
.size-picker { border: 0; margin-top: 27px; }
.size-picker legend { font-size: 9px; font-weight: 600; letter-spacing: .13em; margin-bottom: 13px; text-transform: uppercase; }
.size-picker > div { display: grid; gap: 7px; grid-template-columns: repeat(6,1fr); }
.size-picker button { background: transparent; border: 1px solid var(--line); cursor: pointer; min-height: 46px; transition: background .2s,color .2s,border .2s; }
.size-picker button:hover,
.size-picker button.is-selected { background: var(--wine); border-color: var(--wine); color: white; }
.modal-size-guide { border-bottom: 1px solid var(--ink); display: flex; font-size: 8px; font-weight: 600; justify-content: space-between; letter-spacing: .1em; margin: 15px 0 25px; padding-bottom: 5px; text-transform: uppercase; width: max-content; }
.modal-size-guide span { margin-left: 28px; }
.product-modal__buy { width: 100%; }
.product-modal__buy:disabled { background: #b8afa7; cursor: not-allowed; transform: none; }
.product-modal__shipping { color: var(--muted); font-size: 9px; margin-top: 14px; text-align: center; }
.share-feedback { color: var(--wine); font-size: 9px; min-height: 15px; margin-top: 5px; text-align: center; }

.photo-lightbox { display: grid; inset: 0; opacity: 0; pointer-events: none; position: fixed; transition: opacity .22s ease; z-index: 3000; }
.photo-lightbox.is-open { opacity: 1; pointer-events: auto; }
.photo-lightbox__backdrop { background: rgba(16,14,13,.94); inset: 0; position: absolute; }
.photo-lightbox__dialog { align-self: center; display: grid; height: 94vh; justify-self: center; max-width: 1400px; place-items: center; position: relative; width: 96vw; z-index: 1; }
.photo-lightbox__dialog img { height: 100%; max-height: calc(94vh - 46px); max-width: 100%; object-fit: contain; width: 100%; }
.photo-lightbox__close { align-items: center; background: rgba(255,253,249,.96); border: 0; cursor: pointer; display: flex; font-size: 30px; height: 48px; justify-content: center; line-height: 1; position: fixed; right: 18px; top: 18px; width: 48px; z-index: 3; }
.photo-lightbox__dialog p { bottom: 0; color: rgba(255,255,255,.76); font-size: 9px; letter-spacing: .13em; position: absolute; text-transform: uppercase; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@keyframes productIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .header { grid-template-columns: 1fr auto auto; }
  .nav { background: var(--paper); display: grid; inset: 0; opacity: 0; padding: 120px 30px 50px; pointer-events: none; position: fixed; text-align: center; transform: translateY(-12px); transition: opacity .2s, transform .2s; z-index: -1; }
  .nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .nav a { font-family: var(--serif); font-size: 34px; font-weight: 400; text-transform: none; }
  .menu-toggle { display: block; grid-column: 2; margin-left: 20px; z-index: 2; }
  .header-action { grid-column: 3; }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .photo-slot-hero { min-height: 570px; }
  .trust-row { grid-template-columns: repeat(2,1fr); }
  .trust-row article:nth-child(2) { border-right: 0; }
  .trust-row article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 800px) {
  .announcement { gap: 10px; justify-content: space-between; }
  .announcement p:nth-of-type(2), .announcement span:nth-of-type(2) { display: none; }
  .header { min-height: 74px; padding: 0 16px; }
  .logo span { font-size: 25px; }
  .logo small { display: none; }
  .header-action { display: none; }
  .menu-toggle { grid-column: 3; justify-self: end; }
  .hero { display: flex; flex-direction: column; min-height: auto; padding: 52px 16px 40px; }
  .hero-copy { display: contents; }
  .hero .kicker { order: 1; }
  .hero h1 { font-size: clamp(58px, 17vw, 90px); order: 2; }
  .hero-lead { order: 3; }
  .hero-actions { order: 4; }
  .hero-media { margin-top: 46px; order: 5; }
  .hero-note { order: 6; }
  .hero-caption { display: none; }
  .photo-slot-hero { min-height: 510px; }
  .section { padding: 88px 16px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 24px; }
  .height-grid { gap: 12px; grid-template-columns: 1fr; }
  .height-card, .height-card.is-featured { border: 1px solid var(--line); min-height: 500px; transform: none; }
  .height-card + .height-card { border-left: 1px solid var(--line); }
  .height-number { font-size: 180px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .editorial { grid-template-columns: 1fr; }
  .photo-slot-wide { min-height: 560px; margin: 16px; }
  .editorial-copy { padding: 80px 22px; }
  .campaign { grid-template-columns: 1fr; }
  .campaign figure { min-height: 78vh; }
  .finder-section, .faq-section { grid-template-columns: 1fr; }
  .finder-copy { position: static; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .footer { grid-template-columns: 1fr 1fr; padding-bottom: 100px; }
  .product-modal__dialog { grid-template-columns: .9fr 1.1fr; }
  .product-modal__media { min-height: 600px; }
  .product-modal__content { max-height: 92vh; overflow-y: auto; padding: 42px 30px; }
  .footer-brand { grid-column: 1/-1; }
  .mobile-buy { align-items: center; background: var(--wine); bottom: 0; color: white; display: flex; font-size: 10px; font-weight: 600; justify-content: space-between; left: 0; letter-spacing: .06em; padding: 16px 18px; position: fixed; right: 0; text-transform: uppercase; z-index: 900; }
  .mobile-buy span { color: rgba(255,255,255,.6); font-size: 9px; font-weight: 400; text-transform: none; }
}

@media (max-width: 540px) {
  .announcement { font-size: 8px; }
  .hero-actions { align-items: stretch; display: grid; gap: 20px; }
  .text-link { justify-self: start; }
  .hero-note { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-row article { display: grid; gap: 5px; min-height: 92px; padding: 16px; }
  .trust-row p { font-size: 14px; }
  .product-grid { gap: 38px 9px; }
  .product-info { display: block; }
  .product-info h3 { font-size: 20px; margin-top: 5px; }
  .product-info > span { display: block; font-size: 15px; margin: 4px 0; }
  .product-view-button { display: inline-block; margin-top: 8px; }
  .product-photo-label strong { font-size: 18px; }
  .product-photo-label small { display: none; }
  .choice-grid { grid-template-columns: 1fr; }
  .finder-result { align-items: stretch; display: grid; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 260px; }
  .service-grid h3 { margin-top: 45px; }
  .footer { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-bottom { display: grid; gap: 8px; }
  .product-modal { align-items: end; }
  .product-modal__dialog { align-self: end; display: block; max-height: 94vh; overflow-y: auto; width: 100%; }
  .product-modal__media { min-height: 44vh; }
  .product-modal__content { max-height: none; overflow: visible; padding: 34px 20px 45px; }
  .product-modal__content h2 { font-size: 56px; }
  .product-modal__price-row { align-items: start; display: grid; gap: 8px; }
  .availability { font-size: 8px; }
  .size-picker > div { grid-template-columns: repeat(3,1fr); }
  .product-modal__zoom > span { bottom: 14px; right: 14px; }
  .product-modal__share { bottom: 14px; left: 14px; width: 118px; }
  .photo-lightbox__dialog { height: 90vh; width: 100vw; }
  .photo-lightbox__dialog img { max-height: calc(90vh - 40px); }
  .photo-lightbox__close { right: 12px; top: 12px; }
}

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