:root {
  --ink: #0b0c0b;
  --ink-soft: #151613;
  --ivory: #f3f1eb;
  --warm: #e4dfd5;
  --sage: #a18e70;
  --line-dark: rgba(242, 239, 231, .18);
  --line-light: rgba(16, 19, 15, .18);
  --header-h: 88px;
  --pad: clamp(22px, 4vw, 68px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { color: inherit; }

::selection { background: var(--sage); color: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  gap: 22px;
  background: var(--ink);
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-mark { font-family: "Manrope", Arial, sans-serif; font-size: 34px; letter-spacing: -.04em; text-align: center; }
.preloader-line { width: 140px; height: 1px; overflow: hidden; background: rgba(255,255,255,.14); }
.preloader-line span { display: block; width: 40%; height: 100%; background: var(--ivory); animation: loading 1.1s ease-in-out infinite; }
@keyframes loading { from { transform: translateX(-120%); } to { transform: translateX(360%); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 800;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  color: var(--ivory);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color .42s var(--ease), border-color .42s var(--ease),
              color .42s var(--ease), box-shadow .42s var(--ease), height .35s var(--ease);
}
.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(243, 241, 235, .86);
  border-color: rgba(16, 19, 15, .12);
  box-shadow: 0 12px 36px rgba(16, 19, 15, .06);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
}
.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
}
.brand-word { font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: clamp(24px, 3.1vw, 52px); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a { position: relative; opacity: .78; transition: opacity .25s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right .3s var(--ease); }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 24px; }
.cart-button, .menu-button, .panel-close { border: 0; background: none; cursor: pointer; }
.cart-button { display: flex; gap: 10px; align-items: center; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.cart-count { display: grid; place-items: center; min-width: 25px; height: 25px; padding: 0 7px; border: 1px solid currentColor; border-radius: 999px; opacity: .9; }
.menu-button { display: none; width: 34px; height: 34px; padding: 8px 2px; }
.menu-button span { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .3s; }

section { position: relative; padding: clamp(110px, 13vw, 190px) var(--pad); }
.section-dark { background: var(--ink); color: var(--ivory); }
.section-light { background: var(--ivory); color: var(--ink); }
.section-warm { background: var(--warm); color: var(--ink); }
.eyebrow, .section-index { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.section-index { margin-bottom: 60px; opacity: .65; }
.display-title { margin: 0; max-width: 970px; font-family: "Manrope", Arial, sans-serif; font-weight: 400; font-size: clamp(47px, 7vw, 112px); line-height: .98; letter-spacing: -.04em; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: clamp(60px, 8vw, 120px); }
.section-head .section-index { margin-bottom: 28px; }
.section-head > p { max-width: 430px; margin: 0 0 8px; font-size: 14px; opacity: .7; }
.lead { font-size: clamp(22px, 2.5vw, 34px); line-height: 1.28; letter-spacing: -.025em; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 7vw;
  align-items: center;
  padding-top: calc(var(--header-h) + 42px);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; width: 60vw; height: 60vw; right: -22vw; top: -18vw; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 27px 0 52px; font-family: "Manrope", Arial, sans-serif; font-size: clamp(62px, 9.2vw, 150px); font-weight: 400; line-height: .82; letter-spacing: -.055em; }
.hero h1 em, .contact-title em { color: var(--sage); font-style: italic; }
.hero-bottom { display: grid; grid-template-columns: minmax(220px, 420px) auto; align-items: end; gap: 42px; border-top: 1px solid var(--line-dark); padding-top: 26px; }
.hero-bottom p { margin: 0; font-size: 14px; opacity: .72; }
.text-link { display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.text-link span { font-size: 20px; transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(5px, 5px); }
.hero-visual { position: relative; min-height: min(74vh, 760px); }
.hero-image { position: absolute; margin: 0; overflow: hidden; }
.hero-image img { height: 100%; object-fit: cover; }
.hero-image-main { top: 0; right: 0; width: 77%; height: 82%; }
.hero-image-detail { left: 0; bottom: 0; width: 43%; height: 40%; border: 10px solid var(--ink); }
.hero-seal { position: absolute; right: 72%; top: 14%; width: 112px; height: 112px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; }
.hero-seal span { position: absolute; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; transform: rotate(-28deg) translateY(-35px); }
.hero-seal b { font-family: "Manrope", Arial, sans-serif; font-size: 28px; font-weight: 400; }
.scroll-note { position: absolute; left: var(--pad); bottom: 30px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; opacity: .45; writing-mode: vertical-rl; transform: rotate(180deg); }

.manifesto-grid { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 8vw; }
.manifesto-copy { max-width: 520px; }
.manifesto-copy p:not(.lead) { max-width: 420px; opacity: .68; }
.material-strip { display: grid; grid-template-columns: 1.15fr .8fr 1fr 1.2fr; align-items: end; gap: 14px; margin-top: 100px; }
.material-strip figure { margin: 0; overflow: hidden; }
.material-strip figure:nth-child(1) { height: 390px; }
.material-strip figure:nth-child(2) { height: 250px; }
.material-strip figure:nth-child(3) { height: 320px; }
.material-strip figure:nth-child(4) { height: 460px; }
.material-strip img { height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.material-strip figure:hover img { transform: scale(1.04); }

.product-list { border-top: 1px solid var(--line-light); }
.product-card { display: grid; grid-template-columns: minmax(300px, .85fr) 1.15fr; gap: clamp(30px, 6vw, 100px); padding: 40px 0; border-bottom: 1px solid var(--line-light); }
.product-image { width: 100%; height: clamp(290px, 42vw, 590px); border: 0; padding: 0; background: var(--warm); overflow: hidden; cursor: zoom-in; }
.product-image img { height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s; }
.product-image:hover img { transform: scale(1.035); }
.product-info { display: grid; grid-template-columns: 45px 1fr; grid-template-rows: 1fr auto; gap: 16px 26px; padding: 8px 0; }
.product-number { font-size: 11px; opacity: .52; }
.product-info h3 { margin: 0 0 20px; font-family: "Manrope", Arial, sans-serif; font-size: clamp(36px, 4.2vw, 67px); font-weight: 400; line-height: 1.03; letter-spacing: -.035em; }
.product-info p { max-width: 470px; margin: 0; font-size: 14px; opacity: .65; }
.product-buy { grid-column: 2; align-self: end; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 28px; border-top: 1px solid var(--line-light); }
.product-buy strong { font-size: 18px; font-weight: 500; }
.add-to-cart { position: relative; border: 0; background: none; padding: 10px 0; cursor: pointer; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.add-to-cart::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; background: currentColor; transform-origin: right; transition: transform .3s var(--ease); }
.add-to-cart:hover::after { transform: scaleX(.35); }

.gallery .section-head { border-bottom: 1px solid var(--line-dark); padding-bottom: 50px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 150px; gap: 14px; }
.gallery-item { position: relative; grid-column: span 3; grid-row: span 2; border: 0; padding: 0; background: var(--ink-soft); overflow: hidden; cursor: zoom-in; }
.gallery-item.wide { grid-column: span 6; }
.gallery-item.tall { grid-row: span 3; }
.gallery-item img { height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .9s var(--ease), filter .5s; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1); }
.gallery-item span { position: absolute; left: 18px; bottom: 15px; padding: 6px 9px; background: rgba(16,19,15,.72); backdrop-filter: blur(10px); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; align-items: center; }
.about-image { height: min(72vw, 770px); overflow: hidden; }
.about-image img { height: 100%; object-fit: cover; }
.about-copy .display-title { font-size: clamp(44px, 5.7vw, 88px); }
.about-copy > p:not(.lead) { max-width: 540px; opacity: .65; }
.about-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 70px; }
.about-facts div { min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border: 1px solid var(--line-light); }
.about-facts strong { font-family: "Manrope", Arial, sans-serif; font-size: 48px; font-weight: 400; }
.about-facts span { max-width: 180px; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; opacity: .6; }

.faq-list { margin-left: min(21vw, 330px); border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px 0; cursor: pointer; list-style: none; font-family: "Manrope", Arial, sans-serif; font-size: clamp(23px, 2.4vw, 38px); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i, .faq-item summary i::after { width: 22px; height: 1px; background: currentColor; transition: transform .35s var(--ease); }
.faq-item summary i { position: relative; flex: 0 0 auto; }
.faq-item summary i::after { content: ""; position: absolute; transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item p { max-width: 720px; margin: -4px 0 34px; color: rgba(16,19,15,.68); }
.faq-item p a { text-decoration: underline; text-underline-offset: 3px; }

.contacts { padding-top: clamp(130px, 16vw, 240px); padding-bottom: clamp(110px, 12vw, 180px); }
.contact-kicker { padding-bottom: 28px; border-bottom: 1px solid var(--line-dark); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .62; }
.contact-title { margin: 60px 0 80px; font-family: "Manrope", Arial, sans-serif; font-size: clamp(72px, 13.5vw, 220px); font-weight: 400; line-height: .78; letter-spacing: -.065em; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.contact-row > p { max-width: 390px; margin: 0; opacity: .62; }
.contact-links { border-top: 1px solid var(--line-dark); }
.contact-links a, .contact-links button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border: 0; border-bottom: 1px solid var(--line-dark); background: none; cursor: pointer; color: inherit; text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.contact-links span { font-size: 20px; transition: transform .3s var(--ease); }
.contact-links a:hover span, .contact-links button:hover span { transform: translate(5px, -5px); }

.site-footer { min-height: 170px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding: 35px var(--pad); background: var(--ink-soft); border-top: 1px solid var(--line-dark); }
.site-footer p { margin: 0; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .5; }
.site-footer small { font-size: 10px; opacity: .45; }

.panel-backdrop { position: fixed; inset: 0; z-index: 880; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .45s; }
.panel-backdrop.visible { opacity: 1; }
.menu-panel, .cart-panel { position: fixed; top: 0; right: 0; z-index: 900; width: min(100%, 620px); height: 100%; background: var(--ivory); color: var(--ink); transform: translateX(101%); transition: transform .65s var(--ease); }
.menu-panel.open, .cart-panel.open { transform: translateX(0); }
.menu-panel { display: flex; flex-direction: column; padding: 36px clamp(24px, 5vw, 60px); }
.panel-close { align-self: flex-end; padding: 0; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.menu-nav { margin: auto 0; display: flex; flex-direction: column; }
.menu-nav a { display: flex; align-items: baseline; gap: 25px; padding: 12px 0; font-family: "Manrope", Arial, sans-serif; font-size: clamp(36px, 6vw, 66px); line-height: 1.05; }
.menu-nav a span { width: 24px; font-family: "Manrope", sans-serif; font-size: 9px; opacity: .5; }
.menu-foot { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line-light); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.menu-foot p { margin: 0; opacity: .55; }

.cart-panel { display: flex; flex-direction: column; padding: 34px clamp(22px, 4vw, 45px); }
.cart-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid var(--line-light); }
.cart-header span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; opacity: .5; }
.cart-header h2 { margin: 4px 0 0; font-family: "Manrope", Arial, sans-serif; font-size: 38px; font-weight: 400; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 0; }
.cart-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.cart-item img { width: 84px; height: 100px; object-fit: cover; }
.cart-item h3 { margin: 0 0 6px; font-family: "Manrope", Arial, sans-serif; font-size: 20px; font-weight: 400; }
.cart-item strong { font-size: 13px; font-weight: 500; }
.cart-item-remove { border: 0; background: none; padding: 8px; cursor: pointer; font-size: 18px; opacity: .5; }
.cart-empty { margin: auto; text-align: center; }
.cart-empty p { font-family: "Manrope", Arial, sans-serif; font-size: 25px; }
.cart-empty button { border: 0; border-bottom: 1px solid; padding: 8px 0; background: none; cursor: pointer; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.cart-footer { padding-top: 22px; border-top: 1px solid var(--line-light); }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cart-total span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.cart-total strong { font-family: "Manrope", Arial, sans-serif; font-size: 34px; font-weight: 400; }
.cart-footer p { font-size: 10px; opacity: .55; }
.checkout-button, .order-card form button { width: 100%; display: flex; justify-content: space-between; align-items: center; border: 0; padding: 19px 22px; background: var(--ink); color: var(--ivory); cursor: pointer; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; background: rgba(6,8,6,.78); backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-card { position: relative; width: min(100%, 620px); max-height: 92vh; overflow-y: auto; padding: clamp(30px, 6vw, 66px); background: var(--ivory); color: var(--ink); transform: translateY(24px); transition: transform .5s var(--ease); }
.modal.open .modal-card { transform: translateY(0); }
.modal-close { position: absolute; top: 19px; right: 20px; border: 0; background: none; cursor: pointer; font-size: 29px; font-weight: 300; line-height: 1; }
.order-card h2 { margin: 16px 0; font-family: "Manrope", Arial, sans-serif; font-size: clamp(42px, 7vw, 67px); font-weight: 400; line-height: 1; }
.order-card > p:not(.eyebrow) { max-width: 430px; opacity: .64; }
.order-card form { display: grid; gap: 18px; margin-top: 34px; }
.order-card label { display: grid; gap: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.order-card input, .order-card textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line-light); border-radius: 0; padding: 12px 0; background: transparent; color: var(--ink); outline: none; font-size: 15px; resize: vertical; text-transform: none; letter-spacing: normal; }
.order-card input:focus, .order-card textarea:focus { border-color: var(--ink); }
.order-card form button { margin-top: 12px; }
.image-modal { padding: 40px; }
.image-modal img { width: auto; max-width: min(92vw, 1200px); max-height: 88vh; object-fit: contain; box-shadow: 0 25px 80px rgba(0,0,0,.34); }
.image-modal-close { position: fixed; color: white; top: 22px; right: 26px; font-size: 35px; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 1200; transform: translate(-50%, 30px); padding: 12px 18px; background: var(--ivory); color: var(--ink); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; opacity: 0; visibility: hidden; transition: .35s var(--ease); }
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; padding-bottom: 100px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 650px; margin-left: 14vw; }
  .hero-image-main { width: 72%; }
  .manifesto-grid, .about-grid { grid-template-columns: 1fr; }
  .manifesto-copy { margin-left: 25vw; }
  .about-image { height: 740px; }
  .about-copy { margin-left: 14vw; }
  .faq-list { margin-left: 12vw; }
}

@media (max-width: 720px) {
  :root { --header-h: 70px; --pad: 20px; }
  .site-header { height: 70px; }
  .brand-word, .cart-button > span:first-child { display: none; }
  .header-actions { gap: 14px; }
  .cart-count { min-width: 27px; height: 27px; }
  section { padding-top: 100px; padding-bottom: 100px; }
  .section-index { margin-bottom: 36px; }
  .display-title { font-size: clamp(45px, 14vw, 73px); }
  .section-head { display: block; margin-bottom: 55px; }
  .section-head > p { margin-top: 28px; }

  .hero { min-height: auto; display: block; padding-top: 125px; }
  .hero h1 { font-size: clamp(61px, 21vw, 102px); margin: 25px 0 40px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 25px; }
  .hero-bottom .text-link { justify-self: start; }
  .hero-visual { min-height: 500px; margin: 70px 0 0 9vw; }
  .hero-image-main { width: 78%; height: 80%; }
  .hero-image-detail { width: 48%; height: 38%; border-width: 7px; }
  .hero-seal { right: 69%; width: 86px; height: 86px; }
  .scroll-note { display: none; }

  .manifesto-copy, .about-copy { margin-left: 0; }
  .manifesto-copy { margin-top: 45px; }
  .material-strip { grid-template-columns: 1fr 1fr; margin-top: 70px; }
  .material-strip figure:nth-child(n) { height: 240px; }
  .material-strip figure:nth-child(1), .material-strip figure:nth-child(4) { height: 320px; }

  .product-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 0 48px; }
  .product-image { height: 110vw; max-height: 560px; }
  .product-info { grid-template-columns: 32px 1fr; }
  .product-info h3 { font-size: 40px; }
  .product-buy { grid-column: 1 / -1; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; gap: 8px; }
  .gallery-item, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item:first-child, .gallery-item:nth-child(6) { grid-column: span 2; height: 280px; }

  .about-image { height: 120vw; max-height: 680px; }
  .about-copy { margin-top: 45px; }
  .about-facts { margin-top: 45px; }
  .about-facts div { min-height: 155px; padding: 16px; }
  .about-facts strong { font-size: 38px; }

  .faq-list { margin-left: 0; }
  .faq-item summary { padding: 24px 0; font-size: 23px; }
  .contact-title { margin: 45px 0 65px; font-size: 22vw; }
  .contact-row { grid-template-columns: 1fr; gap: 45px; }
  .site-footer { grid-template-columns: 1fr; min-height: 260px; gap: 22px; }

  .menu-panel, .cart-panel { width: 100%; }
  .menu-nav a { font-size: 42px; }
  .menu-foot { display: block; }
  .menu-foot a { display: block; margin-top: 10px; }
  .image-modal { padding: 16px; }
  .image-modal img { max-width: 100%; max-height: 82vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Full-screen premium hero */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 34px) var(--pad) 54px;
  background: var(--ink);
}
.hero::before { display: none; }
.hero-background,
.hero-background img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-background { z-index: -3; }
.hero-background img {
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 7, 6, .92) 0%, rgba(6, 7, 6, .73) 31%, rgba(6, 7, 6, .20) 58%, rgba(6, 7, 6, .08) 100%),
    linear-gradient(180deg, rgba(6, 7, 6, .22) 0%, transparent 38%, rgba(6, 7, 6, .28) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(690px, 51vw);
  margin-top: 2vh;
}
.hero .eyebrow {
  margin: 0 0 24px;
  color: rgba(242, 239, 231, .66);
}
.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(72px, 7.2vw, 124px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.047em;
  text-wrap: balance;
}
.hero-description {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(242, 239, 231, .72);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}
.hero-cta {
  width: fit-content;
  min-width: 252px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 38px;
  padding: 18px 22px;
  border: 1px solid rgba(242, 239, 231, .42);
  background: rgba(242, 239, 231, .08);
  backdrop-filter: blur(12px);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.hero-cta span:last-child {
  font-size: 19px;
  transition: transform .35s var(--ease);
}
.hero-cta:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--ink);
}
.hero-cta:hover span:last-child { transform: translateX(5px); }
.hero-meta {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 26px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(242, 239, 231, .2);
  color: rgba(242, 239, 231, .5);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-visual,
.hero-bottom,
.scroll-note { display: none; }

@media (max-width: 1050px) {
  .hero {
    display: flex;
    padding-top: calc(var(--header-h) + 30px);
    padding-bottom: 52px;
  }
  .hero-copy { max-width: none; margin: 0; }
}

@media (max-width: 720px) {
  .hero {
    height: 100svh;
    height: 100dvh;
    min-height: 0;
    align-items: flex-start;
    padding: 116px 20px 28px;
  }
  .hero-background img {
    object-position: center bottom;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 5, .90) 0%, rgba(5, 6, 5, .67) 29%, rgba(5, 6, 5, .13) 55%, rgba(5, 6, 5, .22) 100%),
      linear-gradient(90deg, rgba(5, 6, 5, .42) 0%, transparent 78%);
  }
  .hero-copy {
    width: 100%;
    margin: 0;
  }
  .hero .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
    letter-spacing: .17em;
  }
  .hero h1 {
    max-width: 580px;
    margin: 0;
    font-size: clamp(50px, 14.7vw, 72px);
    line-height: .96;
    letter-spacing: -.05em;
  }
  .hero-description {
    max-width: 350px;
    margin-top: 19px;
    font-size: 12px;
    line-height: 1.5;
  }
  .hero-cta {
    min-width: 220px;
    margin-top: 23px;
    padding: 15px 17px;
    background: rgba(242, 239, 231, .1);
  }
  .hero-meta {
    left: 20px;
    right: 20px;
    bottom: max(16px, env(safe-area-inset-bottom));
    padding-top: 11px;
  }
  .hero-meta span:last-child { display: none; }
}

@media (max-height: 700px) and (max-width: 720px) {
  .hero { padding-top: 94px; }
  .hero .eyebrow { margin-bottom: 12px; }
  .hero h1 { font-size: clamp(45px, 13.5vw, 61px); }
  .hero-description { margin-top: 14px; }
  .hero-cta { margin-top: 17px; }
}

/* Sticky hero and image-free material section */
main {
  position: relative;
  isolation: isolate;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  transform: translateZ(0);
}

.hero-background img {
  transform: scale(calc(1 + var(--hero-progress, 0) * .035));
  transition: transform .08s linear;
  will-change: transform;
}

.hero-copy {
  opacity: calc(1 - var(--hero-progress, 0) * .72);
  transform: translate3d(0, calc(var(--hero-progress, 0) * -28px), 0);
  will-change: transform, opacity;
}

.hero-overlay {
  opacity: calc(1 + var(--hero-progress, 0) * .12);
}

main > section:not(.hero) {
  position: relative;
  z-index: 2;
}

.manifesto {
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: 0 -30px 90px rgba(0, 0, 0, .22);
}

.material-heading {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) 1.58fr;
  column-gap: clamp(40px, 7vw, 130px);
  align-items: start;
}

.material-heading .section-index {
  grid-row: 1 / span 2;
  margin: 7px 0 0;
}

.material-kicker {
  margin: 0 0 28px;
  color: rgba(11, 12, 11, .52);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.material-heading .display-title {
  max-width: 990px;
  color: var(--ink);
  font-size: clamp(58px, 7.6vw, 126px);
}

.material-layout {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr) minmax(280px, .58fr);
  gap: clamp(40px, 7vw, 130px);
  align-items: start;
  margin-top: clamp(72px, 10vw, 150px);
}

.material-lead {
  grid-column: 2;
  max-width: 790px;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(29px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: -.035em;
}

.material-copy {
  grid-column: 3;
  max-width: 450px;
  color: rgba(21, 23, 19, .67);
  font-size: 14px;
  line-height: 1.75;
}

.material-copy p {
  margin: 0;
}

.material-copy p + p {
  margin-top: 24px;
}

.material-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 42px);
  margin: clamp(90px, 11vw, 170px) 0 0 calc(42% + clamp(0px, 1vw, 12px));
}

.material-fact {
  min-height: 230px;
  padding: 28px 28px 30px;
  background: var(--warm);
  color: var(--ink);
}

.material-fact span {
  display: block;
  margin-bottom: clamp(48px, 6vw, 92px);
  color: rgba(21, 23, 19, .42);
  font-size: 10px;
  letter-spacing: .14em;
}

.material-fact strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.material-fact p {
  max-width: 300px;
  margin: 0;
  color: rgba(21, 23, 19, .58);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .material-heading,
  .material-layout {
    grid-template-columns: 1fr;
  }

  .material-heading .section-index,
  .material-kicker,
  .material-heading .display-title,
  .material-lead,
  .material-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .material-heading .section-index { margin-bottom: 54px; }
  .material-kicker { margin-bottom: 20px; }
  .material-layout { margin-top: 58px; gap: 34px; }
  .material-copy { max-width: 610px; }
  .material-facts { margin-left: 0; }
}

@media (max-width: 720px) {
  .manifesto {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .material-heading .section-index { margin-bottom: 46px; }
  .material-heading .display-title { font-size: clamp(49px, 13.6vw, 70px); }
  .material-layout { margin-top: 48px; }
  .material-lead { font-size: clamp(28px, 8.3vw, 39px); }
  .material-copy { font-size: 13px; line-height: 1.7; }

  .material-facts {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 70px;
  }

  .material-fact {
    min-height: 0;
    padding: 24px;
  }

  .material-fact span { margin-bottom: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background img,
  .hero-copy {
    transform: none !important;
    opacity: 1 !important;
  }
}


/* v3 — unified typography, full-screen material section, anchored mobile CTA */
:root {
  --brand-font: "Manrope", Arial, sans-serif;
}

body,
button,
input,
textarea,
select,
.brand-mark,
.display-title,
.hero h1,
.material-lead,
.material-fact strong,
.product-info h3,
.about-facts strong,
.faq-item summary,
.contact-title,
.menu-nav a,
.cart-header h2,
.cart-item h3,
.cart-empty p,
.cart-total strong,
.order-card h2,
.preloader-mark {
  font-family: var(--brand-font);
}

.display-title,
.hero h1,
.material-lead,
.material-fact strong,
.product-info h3,
.faq-item summary,
.contact-title,
.menu-nav a {
  font-style: normal;
  font-weight: 500;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(66px, 7vw, 116px);
  line-height: .94;
  letter-spacing: -.062em;
}

.hero-description {
  max-width: 440px;
  font-weight: 400;
  letter-spacing: -.015em;
}

/* The material section is one exact viewport, with one strict grid. */
.manifesto {
  box-sizing: border-box;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  min-height: 680px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(56px, 8vh, 92px);
  padding: clamp(92px, 11vh, 132px) var(--pad) clamp(42px, 6vh, 72px);
  overflow: hidden;
  background: var(--ivory);
  box-shadow: 0 -26px 80px rgba(0, 0, 0, .2);
}

.material-top {
  display: grid;
  grid-template-columns: minmax(150px, .34fr) minmax(0, 1.66fr);
  column-gap: clamp(42px, 7vw, 126px);
  align-items: start;
}

.material-top .section-index {
  margin: 8px 0 0;
}

.material-title-group {
  min-width: 0;
}

.material-kicker {
  margin: 0 0 20px;
  color: rgba(18, 20, 17, .55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.material-title-group .display-title {
  max-width: 1050px;
  color: var(--ink);
  font-size: clamp(58px, 6.5vw, 108px);
  line-height: .94;
  letter-spacing: -.06em;
}

.material-bottom {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(150px, .34fr) minmax(0, 1.66fr);
  column-gap: clamp(42px, 7vw, 126px);
  align-content: end;
}

.material-lead {
  grid-column: 2;
  max-width: 820px;
  margin: 0 0 clamp(38px, 6vh, 70px);
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.038em;
}

.material-facts {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 54px);
  margin: 0;
  border-top: 1px solid rgba(18, 20, 17, .22);
}

.material-fact {
  min-height: 0;
  padding: 22px 0 0;
  background: transparent;
  color: var(--ink);
}

.material-fact span {
  display: block;
  margin: 0 0 clamp(24px, 3.6vh, 42px);
  color: rgba(18, 20, 17, .38);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
}

.material-fact strong {
  display: block;
  max-width: 280px;
  margin: 0 0 9px;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.material-fact p {
  max-width: 290px;
  margin: 0;
  color: rgba(18, 20, 17, .58);
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .manifesto {
    gap: 52px;
  }

  .material-top,
  .material-bottom {
    grid-template-columns: 1fr;
  }

  .material-title-group,
  .material-lead,
  .material-facts {
    grid-column: 1;
  }

  .material-top .section-index {
    margin-bottom: 42px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 72px;
  }

  .hero {
    height: 100svh;
    height: 100dvh;
    min-height: 0;
    align-items: stretch;
    padding: calc(var(--header-h) + 28px) 18px max(18px, env(safe-area-inset-bottom));
  }

  .hero-copy {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
  }

  .hero .eyebrow {
    margin: 0 0 14px;
    font-size: 9px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(47px, 13.2vw, 62px);
    line-height: .95;
    letter-spacing: -.062em;
  }

  .hero-description {
    max-width: 300px;
    margin-top: 16px;
    font-size: 11px;
    line-height: 1.45;
  }

  .hero-cta {
    width: 100%;
    min-width: 0;
    margin-top: auto;
    padding: 17px 18px;
    border-color: rgba(242, 239, 231, .54);
    background: rgba(8, 9, 8, .26);
    font-size: 10px;
  }

  .manifesto {
    height: 100svh;
    height: 100dvh;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 72px 18px max(22px, env(safe-area-inset-bottom));
  }

  .material-top {
    display: block;
  }

  .material-top .section-index {
    margin: 0 0 28px;
    font-size: 9px;
  }

  .material-kicker {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .material-title-group .display-title {
    max-width: 390px;
    font-size: clamp(40px, 11.4vw, 52px);
    line-height: .96;
    letter-spacing: -.058em;
  }

  .material-bottom {
    min-height: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 28px;
  }

  .material-lead {
    max-width: 390px;
    margin: 0 0 28px;
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.25;
    letter-spacing: -.035em;
  }

  .material-facts {
    display: block;
    width: 100%;
    margin: 0;
    border-top: 1px solid rgba(18, 20, 17, .22);
  }

  .material-fact {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(18, 20, 17, .16);
  }

  .material-fact span {
    grid-row: 1 / span 2;
    margin: 3px 0 0;
    font-size: 8px;
  }

  .material-fact strong {
    max-width: none;
    margin: 0 0 3px;
    font-size: 14px;
    line-height: 1.2;
  }

  .material-fact p {
    max-width: 310px;
    font-size: 9px;
    line-height: 1.4;
  }
}

@media (max-width: 720px) and (max-height: 690px) {
  .hero {
    padding-top: calc(var(--header-h) + 18px);
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 55px);
  }

  .hero-description {
    margin-top: 12px;
  }

  .manifesto {
    min-height: 560px;
    padding-top: 58px;
  }

  .material-top .section-index {
    margin-bottom: 20px;
  }

  .material-title-group .display-title {
    font-size: clamp(36px, 10vw, 46px);
  }

  .material-bottom {
    margin-top: 20px;
  }

  .material-lead {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .material-fact {
    padding: 9px 0;
  }
}

/* v3.1 — tighter material composition */
@media (min-width: 721px) {
  .manifesto {
    gap: clamp(38px, 5vh, 56px);
    padding-bottom: clamp(34px, 4.5vh, 52px);
  }

  .material-bottom {
    grid-template-rows: auto 1fr;
    align-content: stretch;
  }

  .material-lead {
    align-self: start;
    margin-bottom: 0;
  }

  .material-facts {
    align-self: end;
  }

  .material-fact span {
    margin-bottom: clamp(20px, 2.6vh, 30px);
  }
}

@media (max-width: 720px) {
  .material-bottom {
    justify-content: space-between;
  }
}

/* v3.2 — compact, readable one-screen material layout */
.manifesto {
  display: block;
}

.material-bottom {
  display: grid;
  grid-template-columns: minmax(150px, .34fr) minmax(0, 1.66fr);
  column-gap: clamp(42px, 7vw, 126px);
  margin-top: clamp(42px, 5.5vh, 66px);
}

.material-lead {
  grid-column: 2;
  margin: 0;
}

.material-facts {
  grid-column: 2;
  align-self: auto;
  margin-top: clamp(38px, 5vh, 58px);
}

@media (max-width: 900px) {
  .material-bottom {
    grid-template-columns: 1fr;
  }

  .material-lead,
  .material-facts {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .material-bottom {
    display: block;
    margin-top: 26px;
  }

  .material-facts {
    margin-top: 24px;
  }
}

@media (max-width: 720px) and (max-height: 690px) {
  .material-bottom {
    margin-top: 16px;
  }

  .material-facts {
    margin-top: 14px;
  }
}


/* v5 — restrained Shopfish palette */
:root {
  --ink: #0b0c0b;
  --ink-soft: #151613;
  --ivory: #f3f1eb;
  --warm: #e4dfd5;
  --sage: #a18e70;
  --line-dark: rgba(243, 241, 235, .17);
  --line-light: rgba(11, 12, 11, .16);
}

body,
.preloader,
.section-dark,
.contacts {
  background-color: var(--ink);
}

.section-light,
.manifesto,
.about,
.menu-panel,
.cart-panel,
.modal-card {
  background-color: var(--ivory);
}

.section-warm,
.collection,
.faq {
  background-color: var(--warm);
}

.gallery,
.site-footer {
  background-color: var(--ink-soft);
}

.site-header.scrolled {
  background: rgba(243, 241, 235, .86);
  border-color: rgba(11, 12, 11, .11);
  box-shadow: 0 12px 38px rgba(11, 12, 11, .07);
}

.product-image {
  background: #d7d1c7;
}

.gallery-item {
  background: #1b1c19;
}

.gallery-item img {
  filter: saturate(.72) contrast(1.02);
}

.gallery-item:hover img {
  filter: saturate(.9) contrast(1.02);
}

.hero-cta:hover,
.checkout-button,
.order-card form button {
  background: var(--ink);
  color: var(--ivory);
}

.contact-title em {
  color: #b09b78;
}

::selection {
  background: #b09b78;
  color: var(--ink);
}

/* v6 — section background palette (high-contrast, serious, minimal) */
:root {
  --surface-material: #eee9e0;
  --surface-collection: #181714;
  --surface-gallery: #bfb4a6;
  --surface-about: #f3efe8;
  --surface-faq: #24211d;
  --surface-contact: #0d0d0c;
}

/* Large surfaces: these values intentionally override every older palette rule. */
body,
.preloader,
.hero {
  background: #090a09 !important;
}

.manifesto,
#material {
  background: var(--surface-material) !important;
  color: #11110f !important;
}

.collection,
#collection {
  background: var(--surface-collection) !important;
  color: #f2eee7 !important;
}

.gallery,
#gallery {
  background: var(--surface-gallery) !important;
  color: #12110f !important;
}

.about,
#about {
  background: var(--surface-about) !important;
  color: #11110f !important;
}

.faq,
#faq {
  background: var(--surface-faq) !important;
  color: #f2eee7 !important;
}

.contacts,
#contacts,
.site-footer {
  background: var(--surface-contact) !important;
  color: #f2eee7 !important;
}

/* Collection contrast on the dark surface. */
.collection .section-head,
.collection .product-list,
.collection .product-card,
.collection .product-buy {
  border-color: rgba(242, 238, 231, .18) !important;
}

.collection .section-index,
.collection .section-head > p,
.collection .product-info p,
.collection .product-number {
  color: rgba(242, 238, 231, .62) !important;
  opacity: 1;
}

.collection .product-image {
  background: #292722 !important;
}

.collection .add-to-cart,
.collection .product-buy strong,
.collection .product-info h3 {
  color: #f2eee7 !important;
}

/* Gallery contrast on the stone surface. */
.gallery .section-head {
  border-color: rgba(17, 17, 15, .22) !important;
}

.gallery .section-index,
.gallery .section-head > p {
  color: rgba(17, 17, 15, .62) !important;
  opacity: 1;
}

.gallery-item {
  background: #9f9588 !important;
}

/* FAQ contrast on the dark brown surface. */
.faq .section-head,
.faq-list,
.faq-item {
  border-color: rgba(242, 238, 231, .18) !important;
}

.faq .section-index,
.faq .section-head > p,
.faq-item p {
  color: rgba(242, 238, 231, .64) !important;
  opacity: 1;
}

.faq-item summary,
.faq-item summary i,
.faq-item summary i::after {
  color: #f2eee7 !important;
}

.faq-item summary i,
.faq-item summary i::after {
  background: #f2eee7 !important;
}

/* About and material use the same ink, but visibly different surfaces. */
.about .section-index,
.about-copy > p:not(.lead),
.material-kicker,
.material-fact p,
.material-fact span {
  color: rgba(17, 17, 15, .6) !important;
}

.about-facts div,
.material-facts {
  border-color: rgba(17, 17, 15, .2) !important;
}

/* The blurred header remains neutral over every new surface. */
.site-header.scrolled {
  background: rgba(243, 239, 232, .88) !important;
  color: #11110f !important;
  border-color: rgba(17, 17, 15, .12) !important;
}

/* v7 — strict two-tone background system: warm white + black */
:root {
  --paper: #eee9df;
  --black: #0a0a09;
  --paper-text: #11110f;
  --paper-line: rgba(17, 17, 15, .17);
  --black-line: rgba(238, 233, 223, .19);
}

/* Only two large-surface colours are used across the site. */
html,
body,
.preloader,
.hero,
.collection,
#collection,
.about,
#about,
.contacts,
#contacts,
.site-footer {
  background: var(--black) !important;
  color: var(--paper) !important;
}

.manifesto,
#material,
.gallery,
#gallery,
.faq,
#faq,
.menu-panel,
.cart-panel,
.modal-card,
.toast {
  background: var(--paper) !important;
  color: var(--paper-text) !important;
}

/* Warm-white sections: ink, separators and secondary copy. */
.manifesto .section-index,
.manifesto .material-kicker,
.manifesto .material-fact span,
.manifesto .material-fact p,
.gallery .section-index,
.gallery .section-head > p,
.faq .section-index,
.faq .section-head > p,
.faq .faq-item p {
  color: rgba(17, 17, 15, .62) !important;
  opacity: 1 !important;
}

.manifesto .material-facts,
.manifesto .material-fact,
.gallery .section-head,
.faq .section-head,
.faq-list,
.faq-item {
  border-color: var(--paper-line) !important;
}

.faq-item summary,
.faq-item summary i,
.faq-item summary i::after {
  color: var(--paper-text) !important;
}

.faq-item summary i,
.faq-item summary i::after {
  background: var(--paper-text) !important;
}

/* Black sections: warm-white type and separators. */
.collection .section-index,
.collection .section-head > p,
.collection .product-number,
.collection .product-info p,
.about .section-index,
.about-copy > p,
.about-facts span,
.contacts p,
.site-footer p,
.site-footer small {
  color: rgba(238, 233, 223, .64) !important;
  opacity: 1 !important;
}

.collection .section-head,
.collection .product-list,
.collection .product-card,
.collection .product-buy,
.about-facts div,
.contact-kicker,
.contact-links,
.contact-links a,
.contact-links button,
.site-footer {
  border-color: var(--black-line) !important;
}

.collection .product-info h3,
.collection .product-buy strong,
.collection .add-to-cart,
.about .display-title,
.about .lead,
.about-facts strong,
.contact-title,
.contact-links a,
.contact-links button {
  color: var(--paper) !important;
}

/* Component surfaces stay within the same two-colour system. */
.collection .product-image,
.product-image {
  background: var(--paper) !important;
}

.gallery-item {
  background: var(--black) !important;
}

.gallery-item span {
  background: rgba(10, 10, 9, .76) !important;
  color: var(--paper) !important;
}

.site-header.scrolled {
  background: rgba(238, 233, 223, .88) !important;
  color: var(--paper-text) !important;
  border-color: var(--paper-line) !important;
  box-shadow: 0 12px 38px rgba(10, 10, 9, .08) !important;
}

.checkout-button,
.order-card form button,
.hero-cta:hover {
  background: var(--black) !important;
  color: var(--paper) !important;
}

.hero h1 em,
.contact-title em {
  color: inherit !important;
}

::selection {
  background: var(--black);
  color: var(--paper);
}

/* v8 — editorial collection layout */
.collection {
  padding-top: clamp(110px, 12vw, 180px);
  padding-bottom: clamp(130px, 15vw, 230px);
  overflow: hidden;
}

.collection-head {
  align-items: end;
  margin-bottom: clamp(90px, 12vw, 180px);
  padding-bottom: clamp(34px, 4vw, 60px);
  border-bottom: 1px solid var(--black-line) !important;
}

.collection-head .display-title {
  max-width: 880px;
  font-size: clamp(58px, 8vw, 126px);
  line-height: .88;
  letter-spacing: -.055em;
}

.collection-intro {
  width: min(100%, 420px);
  padding-bottom: 8px;
}

.collection-intro p {
  margin: 0;
  color: rgba(238, 233, 223, .68);
  font-size: 14px;
  line-height: 1.75;
}

.collection-intro span {
  display: block;
  margin-top: 28px;
  color: rgba(238, 233, 223, .42);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.collection .product-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(90px, 12vw, 190px) clamp(18px, 3.2vw, 54px);
  border: 0 !important;
}

.collection .product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: clamp(24px, 3vw, 42px);
  padding: 0;
  border: 0 !important;
}

.collection .product-card--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 7.4fr) minmax(300px, 4.6fr);
  align-items: end;
  gap: clamp(36px, 6vw, 110px);
}

.collection .product-card--left {
  grid-column: 1 / span 5;
}

.collection .product-card--right {
  grid-column: 7 / -1;
  margin-top: clamp(110px, 14vw, 220px);
}

.collection .product-card--wide {
  grid-column: 2 / span 10;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
}

.collection .product-card--small {
  grid-column: 1 / span 4;
}

.collection .product-card--closing {
  grid-column: 6 / -1;
  margin-top: clamp(100px, 13vw, 210px);
}

.collection .product-image {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  background: var(--paper) !important;
  border: 0;
}

.collection .product-card--feature .product-image {
  aspect-ratio: 16 / 10;
  max-height: 760px;
}

.collection .product-card--right .product-image {
  aspect-ratio: 1 / 1;
}

.collection .product-card--wide .product-image {
  aspect-ratio: 16 / 10;
}

.collection .product-card--closing .product-image {
  aspect-ratio: 5 / 4;
}

.collection .product-image img {
  filter: saturate(.62) contrast(1.035);
  transform: scale(1.002);
}

.collection .product-image:hover img {
  filter: saturate(.86) contrast(1.02);
  transform: scale(1.035);
}

.collection .product-info {
  display: flex;
  flex-direction: column;
  min-height: 0;
  gap: 0;
  padding: 0;
}

.collection .product-number {
  display: block;
  margin-bottom: clamp(22px, 2.5vw, 38px);
  color: rgba(238, 233, 223, .46) !important;
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.collection .product-copy h3 {
  max-width: 780px;
  margin: 0;
  color: var(--paper) !important;
  font-size: clamp(38px, 4.6vw, 72px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
}

.collection .product-card:not(.product-card--feature):not(.product-card--wide) .product-copy h3 {
  font-size: clamp(30px, 3.2vw, 52px);
}

.collection .product-copy p {
  max-width: 430px;
  margin: clamp(20px, 2vw, 30px) 0 0;
  color: rgba(238, 233, 223, .62) !important;
  font-size: 13px;
  line-height: 1.7;
}

.collection .product-buy {
  grid-column: auto;
  width: 100%;
  margin-top: clamp(32px, 4vw, 58px);
  padding-top: 20px;
  border-top: 1px solid var(--black-line) !important;
}

.collection .product-buy strong {
  color: var(--paper) !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
}

.collection .add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(238, 233, 223, .34);
  border-radius: 999px;
  color: var(--paper) !important;
  font-size: 9px;
  letter-spacing: .13em;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.collection .add-to-cart::after {
  display: none;
}

.collection .add-to-cart:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--black) !important;
}

@media (max-width: 900px) {
  .collection-head {
    display: block;
    margin-bottom: 76px;
  }

  .collection-head .display-title {
    font-size: clamp(52px, 14vw, 86px);
  }

  .collection-intro {
    margin-top: 34px;
  }

  .collection .product-editorial {
    display: block;
  }

  .collection .product-card,
  .collection .product-card--feature,
  .collection .product-card--wide {
    display: flex;
    margin: 0 0 96px;
  }

  .collection .product-card--left,
  .collection .product-card--right,
  .collection .product-card--small,
  .collection .product-card--closing {
    margin-top: 0;
  }

  .collection .product-card:nth-child(even) {
    width: 86%;
    margin-left: auto;
  }

  .collection .product-card:nth-child(odd):not(:first-child) {
    width: 91%;
  }

  .collection .product-card--feature {
    width: 100%;
  }

  .collection .product-card--feature .product-image,
  .collection .product-card--wide .product-image,
  .collection .product-card--closing .product-image {
    aspect-ratio: 4 / 5;
  }

  .collection .product-card--feature .product-copy h3 {
    font-size: clamp(46px, 13vw, 72px);
  }

  .collection .product-buy {
    margin-top: 30px;
  }
}

@media (max-width: 560px) {
  .collection {
    padding-top: 96px;
    padding-bottom: 120px;
  }

  .collection-head {
    margin-bottom: 62px;
    padding-bottom: 32px;
  }

  .collection-head .section-index {
    margin-bottom: 25px;
  }

  .collection-head .display-title {
    font-size: clamp(48px, 15.8vw, 68px);
    line-height: .91;
  }

  .collection-intro p {
    font-size: 13px;
  }

  .collection .product-card,
  .collection .product-card--feature,
  .collection .product-card--wide {
    gap: 24px;
    margin-bottom: 82px;
  }

  .collection .product-card:nth-child(even) {
    width: 89%;
  }

  .collection .product-card:nth-child(odd):not(:first-child) {
    width: 94%;
  }

  .collection .product-image,
  .collection .product-card--feature .product-image,
  .collection .product-card--wide .product-image,
  .collection .product-card--closing .product-image,
  .collection .product-card--right .product-image {
    aspect-ratio: 4 / 5;
  }

  .collection .product-copy h3,
  .collection .product-card:not(.product-card--feature):not(.product-card--wide) .product-copy h3 {
    font-size: clamp(33px, 10vw, 44px);
  }

  .collection .product-copy p {
    font-size: 12px;
  }

  .collection .product-buy {
    align-items: center;
    gap: 14px;
  }

  .collection .add-to-cart {
    min-height: 42px;
    padding: 0 15px;
    white-space: nowrap;
  }
}


/* v9 — exact supplied brand mark */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.preloader-logo {
  width: 86px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.brand--header {
  position: relative;
  display: inline-flex;
  width: 104px;
  height: 50px;
  align-items: center;
}
.brand-logo-shell {
  position: relative;
  display: block;
  width: 104px;
  aspect-ratio: 827 / 394;
}
.brand-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .42s var(--ease);
}
.brand-logo--light { opacity: 1; }
.brand-logo--dark { opacity: 0; }
.site-header.scrolled .brand-logo--light { opacity: 0; }
.site-header.scrolled .brand-logo--dark { opacity: 1; }
.brand--footer { width: 116px; }
.footer-logo {
  width: 116px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand--header { width: 78px; height: 44px; }
  .brand-logo-shell { width: 78px; }
  .preloader-logo { width: 74px; }
  .brand--footer,
  .footer-logo { width: 102px; }
}

/* v10 — material section cleanup: less left gap, stronger mobile readability, no empty space */
.manifesto {
  min-height: 100dvh;
  height: auto;
  padding: clamp(108px, 11vw, 138px) var(--pad) clamp(56px, 7vw, 88px) !important;
}

.manifesto .material-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.manifesto .material-top,
.manifesto .material-bottom {
  display: block !important;
  grid-template-columns: none !important;
  margin: 0 !important;
}

.material-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin: 0 0 18px;
}

.material-meta .section-index,
.material-meta .material-kicker {
  margin: 0 !important;
  opacity: 1;
  color: rgba(17, 17, 15, .56) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.material-title-group .display-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(64px, 7vw, 108px) !important;
  line-height: .92;
  letter-spacing: -.062em;
}

.material-lead {
  max-width: 860px;
  margin: clamp(34px, 4vw, 48px) 0 0 !important;
  color: var(--paper-text) !important;
  font-size: clamp(22px, 2.2vw, 34px) !important;
  line-height: 1.18;
  letter-spacing: -.038em;
}

.material-facts {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 40px);
  margin-top: clamp(36px, 4vw, 46px) !important;
  border-top: 1px solid rgba(17, 17, 15, .18) !important;
}

.material-fact {
  display: block;
  padding: 20px 0 0 !important;
  border-bottom: 0 !important;
}

.material-fact span {
  display: block;
  margin: 0 0 22px !important;
  color: rgba(17, 17, 15, .48) !important;
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: .15em;
}

.material-fact strong {
  max-width: 250px;
  margin: 0 0 8px;
  color: var(--paper-text);
  font-size: clamp(18px, 1.5vw, 23px) !important;
  line-height: 1.12;
}

.material-fact p {
  max-width: 280px;
  color: rgba(17, 17, 15, .66) !important;
  font-size: 12px !important;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .material-title-group .display-title {
    font-size: clamp(56px, 8.2vw, 88px) !important;
  }

  .material-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .material-fact {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(17, 17, 15, .12) !important;
  }

  .material-fact span {
    grid-row: 1 / span 2;
    margin: 2px 0 0 !important;
  }

  .material-fact strong,
  .material-fact p {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .manifesto {
    height: auto !important;
    min-height: 0 !important;
    padding: 82px 18px 36px !important;
    overflow: visible !important;
  }

  .manifesto .material-shell {
    width: 100%;
  }

  .material-meta {
    gap: 10px 14px;
    margin-bottom: 14px;
  }

  .material-meta .section-index,
  .material-meta .material-kicker {
    font-size: 10px !important;
    letter-spacing: .12em;
  }

  .material-title-group .display-title {
    max-width: 340px;
    font-size: clamp(46px, 12vw, 60px) !important;
    line-height: .95;
  }

  .material-lead {
    max-width: none;
    margin-top: 22px !important;
    font-size: 16px !important;
    line-height: 1.24;
  }

  .material-facts {
    margin-top: 18px !important;
  }

  .material-fact {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    padding: 12px 0 !important;
  }

  .material-fact span {
    font-size: 9px !important;
  }

  .material-fact strong {
    margin-bottom: 4px;
    font-size: 16px !important;
    line-height: 1.18;
  }

  .material-fact p {
    font-size: 11px !important;
    line-height: 1.38;
  }
}

/* v11 — mobile-only refinement for the Material section */
.material-copy-mobile {
  display: none;
}

@media (max-width: 720px) {
  .manifesto {
    height: auto !important;
    min-height: 0 !important;
    padding: 74px 32px 28px !important;
    overflow: visible !important;
  }

  .manifesto .material-shell {
    width: 100%;
    margin: 0;
  }

  .material-meta {
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 0 10px;
  }

  .material-meta .section-index,
  .material-meta .material-kicker {
    margin: 0 !important;
    color: rgba(17, 17, 15, .68) !important;
    font-size: 8px !important;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .11em;
    white-space: nowrap;
  }

  .material-title-group .display-title {
    max-width: 326px;
    font-size: clamp(42px, 10.7vw, 52px) !important;
    line-height: .96;
    letter-spacing: -.055em;
  }

  .material-lead {
    max-width: none;
    margin-top: 18px !important;
    font-size: 16px !important;
    line-height: 1.25;
    letter-spacing: -.028em;
  }

  .material-copy-desktop {
    display: none;
  }

  .material-copy-mobile {
    display: inline;
  }

  .material-facts {
    margin-top: 16px !important;
    border-top: .5px solid rgba(17, 17, 15, .15) !important;
  }

  .material-fact {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 10px;
    padding: 10px 0 !important;
    border-bottom: .5px solid rgba(17, 17, 15, .13) !important;
  }

  .material-fact span:not(.material-copy-mobile):not(.material-copy-desktop) {
    margin-top: 2px !important;
    color: rgba(17, 17, 15, .58) !important;
    font-size: 8px !important;
    letter-spacing: .13em;
  }

  .material-fact strong {
    margin-bottom: 3px;
    font-size: 15px !important;
    line-height: 1.18;
  }

  .material-fact p {
    color: rgba(17, 17, 15, .72) !important;
    font-size: 10.5px !important;
    line-height: 1.35;
  }
}

/* v12 — high-resolution photography without destructive cropping */
.collection .product-image,
.collection .product-card--feature .product-image,
.collection .product-card--wide .product-image,
.collection .product-card--right .product-image,
.collection .product-card--closing .product-image {
  aspect-ratio: 1 / 1 !important;
  display: grid;
  place-items: center;
  background: var(--paper) !important;
  overflow: hidden;
}

.collection .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  filter: none !important;
  transform: none !important;
  transition: transform .65s var(--ease);
}

.collection .product-image:hover img {
  filter: none !important;
  transform: scale(1.012) !important;
}

.gallery-grid {
  grid-auto-flow: dense;
}

.gallery-item {
  background: #e6e1d7 !important;
  border: .5px solid rgba(17, 17, 15, .12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-position: center;
  filter: none !important;
  transform: none !important;
  transition: transform .65s var(--ease);
}

.gallery-item--contain img {
  object-fit: contain !important;
}

.gallery-item--cover img {
  object-fit: cover !important;
}

.gallery-item:hover img {
  filter: none !important;
  transform: scale(1.012) !important;
}

.about-image {
  display: grid;
  place-items: center;
  background: var(--black);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
}

.image-modal img,
#modalImage {
  object-fit: contain !important;
  object-position: center;
}

@media (max-width: 720px) {
  .collection .product-image,
  .collection .product-card--feature .product-image,
  .collection .product-card--wide .product-image,
  .collection .product-card--right .product-image,
  .collection .product-card--closing .product-image {
    aspect-ratio: 1 / 1 !important;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item:first-child,
  .gallery-item:nth-child(6) {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100%;
    height: auto !important;
    aspect-ratio: 4 / 3;
  }

  .gallery-item.tall {
    aspect-ratio: 3 / 4;
  }

  .gallery-item--contain img {
    padding: 0;
  }

  .about-image {
    height: auto !important;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }
}


/* v13 — photo containers aligned to image size and site background */
.collection .product-image,
.gallery-item,
.about-image,
.image-modal {
  background: var(--paper) !important;
}

.gallery-item {
  border: .5px solid rgba(17, 17, 15, .08) !important;
}

.collection .product-image img,
.gallery-item img,
.about-image img,
#modalImage {
  background: var(--paper) !important;
}

.gallery-item--contain img {
  object-fit: contain !important;
  object-position: center !important;
}


/* v14 — restore original photography, remove destructive background edits */
.collection .product-image img,
.gallery-item img,
.about-image img,
#modalImage {
  image-rendering: auto;
}


/* v15 — cache-bust restored originals and refine image block heights */
.collection .product-image {
  aspect-ratio: 4 / 5 !important;
}

.collection .product-card--feature .product-image,
.collection .product-card--wide .product-image {
  aspect-ratio: 16 / 10 !important;
}

.collection .product-card--right .product-image {
  aspect-ratio: 1 / 1 !important;
}

.collection .product-card--closing .product-image {
  aspect-ratio: 16 / 9 !important;
  max-height: 520px;
}

.collection .product-card--squid-cloth .product-image {
  aspect-ratio: 16 / 8 !important;
  max-height: 430px;
}

@media (max-width: 1100px) {
  .collection .product-card--closing .product-image {
    aspect-ratio: 16 / 10 !important;
    max-height: none;
  }
  .collection .product-card--squid-cloth .product-image {
    aspect-ratio: 16 / 9 !important;
    max-height: none;
  }
}

@media (max-width: 720px) {
  .collection .product-card--closing .product-image,
  .collection .product-card--squid-cloth .product-image {
    aspect-ratio: 4 / 3 !important;
    max-height: none;
  }
}


/* v16 — collection images follow the real photo proportions, no forced crop */
.collection .product-image,
.collection .product-card--feature .product-image,
.collection .product-card--wide .product-image,
.collection .product-card--right .product-image,
.collection .product-card--closing .product-image,
.collection .product-card--squid-cloth .product-image {
  display: block !important;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: transparent !important;
  padding: 0 !important;
}

.collection .product-image img {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  filter: none !important;
  transform: none !important;
}

.collection .product-image:hover img {
  filter: none !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .collection .product-card:nth-child(even),
  .collection .product-card:nth-child(odd):not(:first-child),
  .collection .product-card--feature {
    width: 100%;
  }
}


/* v17 — sitewide branded typography system */
:root {
  --brand-font: "Cormorant Garamond", Georgia, serif;
  --ui-font: "Manrope", Arial, sans-serif;
}

html, body, button, input, textarea, select,
.desktop-nav, .section-index, .eyebrow, .material-kicker,
.product-number, .product-copy p, .product-buy,
.material-lead, .material-fact, .about-copy p, .about-facts,
.faq-item p, .contact-kicker, .contact-links, .site-footer,
.cart-item p, .cart-total, .order-card p, .order-card label {
  font-family: var(--ui-font) !important;
}

h1, h2, h3,
.display-title, .hero h1, .product-copy h3,
.about .display-title, .faq-item summary, .contact-title,
.menu-nav a, .cart-header h2, .cart-item h3,
.cart-empty p, .order-card h2, .footer-cta-title {
  font-family: var(--brand-font) !important;
  font-weight: 500 !important;
  font-style: normal;
  text-rendering: optimizeLegibility;
}

.hero h1, .display-title, .contact-title {
  letter-spacing: -.045em !important;
}

.product-copy h3, .faq-item summary, .menu-nav a,
.cart-header h2, .order-card h2 {
  letter-spacing: -.025em !important;
}

.material-fact strong, .about-facts strong,
.product-buy strong, .cart-total strong {
  font-family: var(--ui-font) !important;
  font-weight: 500 !important;
}

@media (max-width: 720px) {
  .hero h1, .display-title, .contact-title {
    letter-spacing: -.035em !important;
  }
}

/* v18 — black premium footer + sitewide branded typography */
.site-footer,
#contacts.site-footer {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--black) !important;
  color: var(--paper) !important;
  border-top: 1px solid rgba(238, 233, 223, .14) !important;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.12fr) minmax(620px, 2.4fr);
  gap: clamp(64px, 7vw, 128px);
  padding: clamp(78px, 8vw, 126px) var(--pad) clamp(72px, 7vw, 112px);
}

.footer-cta {
  max-width: 430px;
  padding-right: clamp(28px, 4vw, 72px);
  border-right: 1px solid rgba(238, 233, 223, .16);
}

.footer-eyebrow,
.footer-column h3,
.footer-mobile-group summary {
  margin: 0;
  color: rgba(238, 233, 223, .72);
  font-family: var(--ui-font) !important;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-cta-title {
  margin: 25px 0 0;
  color: var(--paper);
  font-family: var(--brand-font) !important;
  font-size: clamp(42px, 3.7vw, 68px);
  font-weight: 500 !important;
  line-height: .95;
  letter-spacing: -.045em;
}

.footer-cta-copy {
  max-width: 360px;
  margin: 25px 0 0;
  color: rgba(238, 233, 223, .62);
  font-family: var(--ui-font) !important;
  font-size: 13px;
  line-height: 1.75;
}

.footer-order-button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 0 22px;
  border: 1px solid rgba(238, 233, 223, .5);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.footer-order-button span {
  font-family: var(--ui-font) !important;
  font-size: 12px;
  font-weight: 500;
}

.footer-order-button i {
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  transition: transform .3s var(--ease);
}

.footer-order-button:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--black);
}

.footer-order-button:hover i {
  transform: translateX(5px);
}

.footer-hours {
  margin: 13px 0 0;
  color: rgba(238, 233, 223, .42);
  font-family: var(--ui-font) !important;
  font-size: 10px;
}

.footer-desktop-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: clamp(30px, 4vw, 68px);
}

.footer-column {
  min-width: 0;
}

.footer-column h3 {
  margin-bottom: 30px;
  color: var(--paper);
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 17px;
  color: rgba(238, 233, 223, .66);
  font-family: var(--ui-font) !important;
  font-size: 12px;
  line-height: 1.55;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.footer-column a:hover {
  color: var(--paper);
  transform: translateX(3px);
}

.footer-column--contact p {
  color: rgba(238, 233, 223, .42);
}

.footer-email {
  overflow-wrap: anywhere;
}

.footer-mobile-nav {
  display: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: 104px;
  padding: 24px var(--pad);
  border-top: 1px solid rgba(238, 233, 223, .14);
  background: var(--black);
}

.footer-bottom .brand--footer,
.footer-bottom .footer-logo {
  width: 104px;
}

.footer-bottom p,
.footer-bottom small {
  margin: 0;
  color: rgba(238, 233, 223, .48) !important;
  font-family: var(--ui-font) !important;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}

.footer-bottom small {
  white-space: nowrap;
}

.footer-to-top {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(238, 233, 223, .36);
  border-radius: 50%;
  color: var(--paper);
  font-family: var(--ui-font);
  font-size: 21px;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.footer-to-top:hover {
  background: var(--paper);
  color: var(--black);
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.7fr);
    gap: 48px;
  }

  .footer-desktop-nav {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    row-gap: 48px;
  }
}

@media (max-width: 720px) {
  .site-footer,
  #contacts.site-footer {
    background: var(--black) !important;
  }

  .footer-main {
    display: block;
    padding: 70px 24px 0;
  }

  .footer-cta {
    max-width: none;
    padding: 0 0 38px;
    border-right: 0;
  }

  .footer-eyebrow {
    font-size: 9px;
  }

  .footer-cta-title {
    max-width: 320px;
    margin-top: 18px;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: .97;
  }

  .footer-cta-copy {
    max-width: 310px;
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.65;
  }

  .footer-order-button {
    min-height: 54px;
    margin-top: 25px;
    padding: 0 18px;
  }

  .footer-hours {
    margin-top: 11px;
    font-size: 9px;
  }

  .footer-desktop-nav {
    display: none;
  }

  .footer-mobile-nav {
    display: block;
    margin: 0 -24px;
    border-top: 1px solid rgba(238, 233, 223, .14);
  }

  .footer-mobile-group {
    border-bottom: 1px solid rgba(238, 233, 223, .14);
  }

  .footer-mobile-group summary {
    display: flex;
    min-height: 59px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    color: var(--paper);
    cursor: pointer;
    list-style: none;
  }

  .footer-mobile-group summary::-webkit-details-marker {
    display: none;
  }

  .footer-mobile-group summary span {
    color: rgba(238, 233, 223, .72);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    transition: transform .25s var(--ease);
  }

  .footer-mobile-group[open] summary span {
    transform: rotate(45deg);
  }

  .footer-mobile-group > div {
    display: grid;
    gap: 13px;
    padding: 0 24px 22px;
  }

  .footer-mobile-group a,
  .footer-mobile-group p {
    margin: 0;
    color: rgba(238, 233, 223, .6);
    font-family: var(--ui-font) !important;
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-bottom {
    grid-template-columns: auto 1fr auto;
    min-height: 92px;
    gap: 18px;
    padding: 21px 24px;
  }

  .footer-bottom .brand--footer,
  .footer-bottom .footer-logo {
    width: 82px;
  }

  .footer-bottom p {
    font-size: 9px;
  }

  .footer-bottom small {
    display: none;
  }

  .footer-to-top {
    width: 42px;
    height: 42px;
  }
}


/* v19 — compact premium footer: normal desktop height, no oversized empty field */
.site-footer,
#contacts.site-footer {
  min-height: 0 !important;
  height: auto !important;
}

.footer-main {
  width: min(100%, 1600px);
  margin: 0 auto;
  grid-template-columns: minmax(390px, .82fr) minmax(0, 1.68fr);
  align-items: start;
  gap: clamp(54px, 5vw, 90px);
  padding: 62px var(--pad) 56px !important;
}

.footer-cta {
  width: 100%;
  max-width: 470px;
  min-height: 0;
  padding-right: clamp(40px, 4vw, 68px);
}

.footer-cta-title {
  margin-top: 20px;
  font-size: clamp(42px, 3.15vw, 56px) !important;
  line-height: .98;
  letter-spacing: -.038em !important;
}

.footer-cta-title span {
  display: block;
  white-space: nowrap;
}

.footer-cta-copy {
  max-width: 345px;
  margin-top: 19px;
  font-size: 12px;
  line-height: 1.6;
}

.footer-order-button {
  width: 292px;
  min-height: 50px;
  margin-top: 25px;
  padding: 0 18px;
}

.footer-hours {
  margin-top: 10px;
  font-size: 9px;
}

.footer-desktop-nav {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  align-items: start;
  gap: clamp(28px, 3vw, 54px);
  padding-top: 3px;
}

.footer-column h3 {
  margin-bottom: 22px;
  font-size: 9px;
}

.footer-column a,
.footer-column p {
  margin-bottom: 12px;
  font-size: 11px;
  line-height: 1.45;
}

.footer-bottom {
  min-height: 82px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.footer-bottom .brand--footer,
.footer-bottom .footer-logo {
  width: 88px;
}

.footer-to-top {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .footer-main {
    grid-template-columns: minmax(330px, .9fr) minmax(0, 1.35fr);
    gap: 44px;
    padding-top: 54px !important;
    padding-bottom: 50px !important;
  }

  .footer-cta {
    padding-right: 38px;
  }

  .footer-cta-title {
    font-size: 43px !important;
  }

  .footer-desktop-nav {
    grid-template-columns: repeat(2, minmax(145px, 1fr));
    row-gap: 30px;
  }
}

@media (max-width: 820px) {
  .footer-main {
    display: block;
    width: 100%;
    padding: 52px 24px 0 !important;
  }

  .footer-cta {
    max-width: none;
    padding: 0 0 30px;
  }

  .footer-cta-title {
    max-width: 340px;
    margin-top: 16px;
    font-size: clamp(36px, 10vw, 45px) !important;
    line-height: .98;
  }

  .footer-cta-title span {
    white-space: normal;
  }

  .footer-cta-copy {
    margin-top: 16px;
  }

  .footer-order-button {
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
  }

  .footer-desktop-nav {
    display: none;
  }

  .footer-mobile-nav {
    display: block;
    margin: 0 -24px;
  }

  .footer-bottom {
    min-height: 82px;
    padding: 18px 24px;
  }
}
