:root {
  --ivory: #f7f1e7;
  --paper: #fffdf8;
  --ink: #191817;
  --muted: #706b64;
  --gold: #c99a42;
  --gold-soft: #e8d2a7;
  --line: rgba(25, 24, 23, 0.16);
  --display: "Bodoni MT", Didot, Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", "Century Gothic", Futura, sans-serif;
  --shell: min(92vw, 1440px);
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--ivory);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, height 300ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom-color: var(--line);
  background: rgba(247, 241, 231, 0.95);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: auto;
  height: 74px;
  flex: 0 0 auto;
  align-items: center;
  aspect-ratio: 710 / 635;
  transition: height 300ms var(--ease), transform 300ms var(--ease);
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .brand {
  height: 62px;
}

.brand:hover {
  transform: translateY(-2px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 54px);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 1px;
  background: var(--ink);
  transition: transform 300ms var(--ease), top 300ms var(--ease);
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: none;
  align-content: center;
  padding: 120px 7vw 60px;
  background: var(--ivory);
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms ease, visibility 350ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(2.3rem, 10vw, 4rem);
  line-height: 1;
}

.mobile-nav a span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.hero {
  position: relative;
  min-height: 780px;
  height: max(780px, 94svh);
  overflow: hidden;
  background: var(--ivory);
  isolation: isolate;
}

.hero__picture,
.hero__picture img,
.hero__wash,
.hero__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__picture img {
  object-fit: cover;
  object-position: center;
}

.hero__wash {
  z-index: 1;
  background: linear-gradient(90deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.82) 31%, rgba(247, 241, 231, 0.04) 59%);
}

.hero__glow {
  z-index: 2;
  pointer-events: none;
  opacity: 0.36;
  background: radial-gradient(circle 280px at var(--hero-x, 70%) var(--hero-y, 42%), rgba(255, 255, 255, 0.44), transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding-top: var(--header-h);
}

.hero__content > * {
  max-width: 650px;
}

.hero h1 {
  max-width: 700px;
  margin: 0 0 28px;
  font-size: clamp(4.7rem, 9vw, 9rem);
}

.hero__lede {
  max-width: 490px;
  margin-bottom: 36px;
  color: #494540;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  gap: 36px;
  padding: 17px 19px;
  border: 1px solid var(--ink);
  overflow: hidden;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 350ms ease, border-color 350ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--gold);
  transform: translateX(-102%);
  transition: transform 500ms var(--ease);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button i {
  font-size: 1rem;
  transition: transform 350ms var(--ease);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(0);
}

.button:hover i,
.button:focus-visible i {
  transform: translate(3px, -3px);
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: var(--gold);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 250ms ease, border-color 250ms ease;
}

.text-link span {
  transition: transform 250ms var(--ease);
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.text-link:hover span {
  transform: translateX(4px);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 4vw;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}

.scroll-cue i {
  display: block;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: var(--ink);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 34s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  white-space: nowrap;
  will-change: transform;
}

.ticker__group {
  display: flex;
  min-width: 100vw;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: clamp(24px, 2.6vw, 42px);
  padding: 15px clamp(18px, 2vw, 34px);
}

.ticker__group span {
  font-style: italic;
}

.ticker__group i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.5rem;
}

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section {
  padding: clamp(100px, 12vw, 180px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 78px;
}

.section-heading h2,
.story h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.dawat-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.68fr);
  min-height: 650px;
  margin-bottom: clamp(76px, 8vw, 118px);
  overflow: hidden;
  border: 1px solid rgba(201, 154, 66, 0.52);
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(25, 24, 23, 0.12);
  color: var(--paper);
}

.dawat-box::after {
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(201, 154, 66, 0.2);
  content: "";
  pointer-events: none;
}

.dawat-box__visual {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #eee5d8;
}

.dawat-box__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 74%, rgba(25, 24, 23, 0.16));
  content: "";
  pointer-events: none;
}

.dawat-box__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.dawat-box:hover .dawat-box__visual img {
  transform: scale(1.025);
  filter: saturate(1.025) contrast(1.01);
}

.dawat-box__badge {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(25, 24, 23, 0.86);
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.dawat-box__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(46px, 4.3vw, 72px) clamp(38px, 3.8vw, 64px);
}

.dawat-box__intro {
  min-width: 0;
}

.dawat-box__content .eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
}

.dawat-box__content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 5.4vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.dawat-box__lead {
  margin: 25px 0 0;
  color: #fffaf1;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.9vw, 1.95rem);
  font-style: italic;
  line-height: 1.2;
}

.dawat-box__description {
  max-width: 550px;
  margin: 18px 0 0;
  color: rgba(247, 241, 231, 0.68);
  font-size: 0.9rem;
  line-height: 1.75;
}

.dawat-box__contents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid rgba(247, 241, 231, 0.16);
  border-left: 1px solid rgba(247, 241, 231, 0.16);
  list-style: none;
}

.dawat-box__contents li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px 11px;
  border-right: 1px solid rgba(247, 241, 231, 0.16);
  border-bottom: 1px solid rgba(247, 241, 231, 0.16);
}

.dawat-box__contents strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.dawat-box__contents span {
  color: rgba(247, 241, 231, 0.76);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.35;
}

.dawat-box__offer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-top: 32px;
}

.dawat-box__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}

.dawat-box__price span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dawat-box__price strong {
  font-family: var(--display);
  font-size: clamp(3rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.78;
}

.dawat-box__delivery {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 8px;
  padding-bottom: 2px;
}

.dawat-box__delivery > span {
  display: grid;
  width: 24px;
  height: 24px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.dawat-box__delivery strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dawat-box__delivery small {
  margin-top: 2px;
  color: rgba(247, 241, 231, 0.5);
  font-size: 0.66rem;
}

.dawat-box__disclaimer {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  margin: 24px 0 0;
  color: rgba(247, 241, 231, 0.52);
  font-size: 0.67rem;
  line-height: 1.55;
}

.dawat-box__disclaimer > span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(201, 154, 66, 0.62);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.73rem;
  font-style: italic;
}

.dawat-box__order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 27px;
  padding: 18px 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 300ms ease, color 300ms ease;
}

.dawat-box__order span {
  font-size: 1rem;
  transition: transform 300ms var(--ease);
}

.dawat-box__order:hover,
.dawat-box__order:focus-visible {
  background: var(--paper);
}

.dawat-box__order:hover span,
.dawat-box__order:focus-visible span {
  transform: translate(4px, -4px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.product-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  grid-column: span 2;
  padding: 26px 24px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 260ms ease, background 350ms ease;
}

.product-card:first-child {
  border-left: 1px solid var(--line);
}

.product-card:nth-last-child(-n + 2) {
  grid-column: span 2;
}

.product-card:nth-child(4) {
  border-left: 1px solid var(--line);
}

.product-card:nth-child(7) {
  border-left: 1px solid var(--line);
}

.product-card:hover {
  background: rgba(255, 253, 248, 0.7);
}

.product-card__number {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-card__visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.product-card:hover .product-card__visual img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.product-card__note {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 8px 10px;
  background: rgba(25, 24, 23, 0.92);
  color: var(--paper);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 350ms var(--ease), opacity 350ms ease;
}

.product-card:hover .product-card__note {
  transform: translateY(0);
  opacity: 1;
}

.product-card__body {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 28px 0 24px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.1vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.product-card__body p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-card__price {
  text-align: right;
  white-space: nowrap;
}

.product-card__price span,
.product-card__price small {
  display: block;
}

.product-card__price span {
  font-size: 1.08rem;
  font-weight: 700;
}

.product-card__price small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.product-card__actions {
  display: grid;
  width: calc(100% + 48px);
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  margin-left: -24px;
  border-top: 1px solid var(--line);
}

.product-card__button,
.product-card__order {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 300ms ease, color 300ms ease;
}

.product-card__button {
  border-right: 1px solid var(--line);
}

.product-card__order {
  background: var(--ink);
  color: var(--paper);
}

.product-card__button span,
.product-card__order span {
  flex: 0 0 auto;
  transition: transform 300ms var(--ease);
}

.product-card__button:hover,
.product-card__button:focus-visible {
  background: rgba(197, 147, 36, 0.16);
}

.product-card__order:hover,
.product-card__order:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.product-card__button:hover span,
.product-card__order:hover span {
  transform: translate(3px, -3px);
}

.delivery-note {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin: 42px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(201, 154, 66, 0.42);
  background: rgba(201, 154, 66, 0.09);
  color: var(--muted);
  font-size: 0.9rem;
}

.delivery-note strong {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.delivery-note span {
  font-weight: 700;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 820px;
  background: var(--paper);
}

.story__media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.story__media picture,
.story__media img {
  width: 100%;
  height: 100%;
}

.story__media img {
  object-fit: cover;
  transform: scale(1.04);
}

.story__stamp {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 128px;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: rgba(25, 24, 23, 0.9);
  color: var(--paper);
  text-align: center;
  animation: stamp-spin 20s linear infinite;
}

.story__stamp span,
.story__stamp b {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story__stamp b {
  color: var(--gold);
}

@keyframes stamp-spin {
  to { transform: rotate(360deg); }
}

.story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 150px);
  background-image: linear-gradient(140deg, transparent 74%, rgba(201, 154, 66, 0.13) 74.1% 74.35%, transparent 74.45%);
}

.story__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin: 44px 0 58px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.story__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.story__facts div {
  padding: 18px 14px 18px 0;
  border-right: 1px solid var(--line);
}

.story__facts div:not(:first-child) {
  padding-left: 18px;
}

.story__facts div:last-child {
  border-right: 0;
}

.story__facts strong,
.story__facts span {
  display: block;
}

.story__facts strong {
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.story__facts span {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.4;
}

.closing-line {
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.closing-line .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.closing-line p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.6vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.closing-line span {
  color: var(--gold);
  font-size: clamp(1.4rem, 3vw, 3rem);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 0 26px;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.site-footer__shape {
  position: absolute;
  z-index: -1;
  top: 40px;
  right: -120px;
  width: min(50vw, 670px);
  aspect-ratio: 0.9;
  opacity: 0.45;
  transform: rotate(-2deg);
}

.site-footer__shape::before,
.site-footer__shape::after,
.site-footer__shape i {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.site-footer__shape::before {
  inset: 0 25% 20% 5%;
  transform: skew(-22deg);
}

.site-footer__shape::after {
  right: 25%;
  bottom: 20%;
  width: 34%;
  height: 35%;
  border-color: var(--gold);
  border-left: 0;
  transform: skewY(-26deg);
}

.site-footer__shape i {
  inset: 13% 6% 3% 33%;
  border-left: 0;
  transform: skew(16deg);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(520px, 1fr);
  gap: clamp(56px, 8vw, 140px);
}

.footer-lead h2 {
  margin: 0;
  font-size: clamp(3.7rem, 6.2vw, 7rem);
}

.footer-lead__copy {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  gap: clamp(28px, 4vw, 58px);
}

.footer-links h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255,255,255,.7);
  font-size: 0.94rem;
  line-height: 1.5;
  transition: color 200ms ease, transform 250ms var(--ease);
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.footer-bottom img {
  width: auto;
  height: 92px;
  max-width: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 0.76rem;
}

.footer-bottom a {
  justify-self: end;
}

.footer-bottom a span {
  display: inline-block;
  margin-left: 6px;
  color: var(--gold);
  transition: transform 250ms var(--ease);
}

.footer-bottom a:hover span {
  transform: translateY(-4px);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 2.4vw, 36px);
  bottom: clamp(18px, 2.4vw, 36px);
  z-index: 70;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 36px rgba(15, 81, 42, 0.3);
  transition: transform 250ms var(--ease), background 250ms ease, box-shadow 250ms ease;
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.floating-whatsapp > span {
  position: absolute;
  right: calc(100% + 12px);
  width: max-content;
  padding: 9px 12px;
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateX(6px);
  transition: opacity 200ms ease, transform 250ms var(--ease);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #20bd5a;
  box-shadow: 0 18px 42px rgba(15, 81, 42, 0.4);
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp:hover > span,
.floating-whatsapp:focus-visible > span {
  opacity: 1;
  transform: translateX(0);
}

.product-dialog {
  width: min(980px, 92vw);
  max-height: 90svh;
  padding: 0;
  border: 0;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}

.product-dialog::backdrop {
  background: rgba(25,24,23,.72);
  backdrop-filter: blur(5px);
}

.product-dialog[open] {
  animation: dialog-in 450ms var(--ease);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(28px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-dialog__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,253,248,.9);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 250ms var(--ease);
}

.product-dialog__close:hover {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(90deg);
}

.product-dialog__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
}

.product-dialog__media {
  min-height: 610px;
  background: #fff;
}

.product-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-dialog__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 58px;
}

.product-dialog__content h2 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.product-dialog__content > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.product-dialog__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 28px 0;
}

.product-dialog__price strong {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
}

.product-dialog__price span {
  padding: 5px 8px;
  border: 1px solid rgba(201, 154, 66, 0.45);
  background: rgba(201, 154, 66, 0.1);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-dialog__content small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .hero__wash {
    background: linear-gradient(90deg, rgba(247,241,231,.97), rgba(247,241,231,.78) 42%, rgba(247,241,231,.1) 67%);
  }

  .hero__content > * {
    max-width: 54vw;
  }

  .dawat-box {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dawat-box__visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .dawat-box__visual::after {
    background: linear-gradient(180deg, transparent 80%, rgba(25, 24, 23, 0.12));
  }

  .dawat-box__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    padding-inline: 38px;
  }

  .dawat-box__intro {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .dawat-box__contents {
    grid-column: 1;
    grid-row: 2 / 4;
    grid-template-columns: 1fr;
  }

  .dawat-box__offer {
    grid-column: 2;
    grid-row: 2;
  }

  .dawat-box__order {
    grid-column: 2;
    grid-row: 3;
  }

  .dawat-box__disclaimer {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    grid-column: auto;
    padding-inline: 16px;
    border-bottom: 1px solid var(--line);
  }

  .product-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .product-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .product-card:nth-child(4) {
    border-left: 0;
  }

  .product-card__actions {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .product-card__body {
    grid-template-columns: 1fr;
  }

  .product-card__price {
    text-align: left;
  }

  .story__content {
    padding: 8vw 6vw;
  }

  .story__copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-nav {
    display: grid;
  }

  .brand {
    width: auto;
    height: 60px;
  }

  .site-header.is-scrolled .brand {
    height: 56px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-top: 0;
  }

  .hero__picture {
    position: relative;
    display: block;
    height: 58svh;
    min-height: 430px;
    margin-top: 0;
  }

  .hero__picture img {
    object-position: 72% center;
  }

  .hero__wash {
    background: linear-gradient(180deg, rgba(247,241,231,.92) 0%, rgba(247,241,231,0) 32%, rgba(247,241,231,.18) 100%);
  }

  .hero__glow {
    display: none;
  }

  .hero__content {
    min-height: auto;
    padding: 120px 0 64px;
  }

  .hero__content > * {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 17vw, 7.4rem);
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .dawat-box {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dawat-box__visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .dawat-box__visual::after {
    background: linear-gradient(180deg, transparent 80%, rgba(25, 24, 23, 0.12));
  }

  .dawat-box__content {
    display: flex;
    flex-direction: column;
    padding: 54px 42px 46px;
  }

  .dawat-box__contents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    border-top: 0;
  }

  .product-card,
  .product-card:first-child {
    padding: 18px 18px 0;
    border: 1px solid var(--line);
  }

  .product-card:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .product-card__actions {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .product-card__body {
    grid-template-columns: 1fr auto;
  }

  .product-card__price {
    text-align: right;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story__media {
    min-height: 80vw;
  }

  .story__content {
    padding: 100px 6vw;
  }

  .closing-line .shell {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer__shape {
    right: -30vw;
    width: 90vw;
  }

  .product-dialog__grid {
    grid-template-columns: 1fr;
  }

  .product-dialog__media {
    min-height: 300px;
    max-height: 45svh;
  }

  .product-dialog__content {
    padding: 46px 30px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(90vw, 1440px);
  }

  .hero__content {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp img {
    width: 31px;
    height: 31px;
  }

  .dawat-box {
    margin-inline: -5vw;
    border-inline: 0;
  }

  .dawat-box::after {
    inset: 8px;
  }

  .dawat-box__badge {
    top: 20px;
    left: 20px;
    padding: 8px 10px;
    font-size: 0.55rem;
  }

  .dawat-box__content {
    padding: 46px 26px 34px;
  }

  .dawat-box__content h3 {
    font-size: clamp(3.8rem, 20vw, 5.2rem);
  }

  .dawat-box__contents {
    grid-template-columns: 1fr;
  }

  .dawat-box__offer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .dawat-box__price strong {
    font-size: 4rem;
  }

  .product-card__body {
    grid-template-columns: 1fr;
  }

  .product-card__price {
    text-align: left;
  }

  .delivery-note {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .story__copy,
  .story__facts {
    grid-template-columns: 1fr;
  }

  .story__facts div,
  .story__facts div:not(:first-child) {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story__facts div:last-child {
    border-bottom: 0;
  }

  .closing-line p {
    font-size: 2.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    margin-top: 34px;
  }

  .footer-bottom img {
    height: 76px;
  }

  .product-dialog {
    width: 96vw;
  }

  .product-dialog__content h2 {
    font-size: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker__track {
    animation: none;
    transform: none;
  }

  .story__media img {
    transform: scale(1.02);
  }
}
