/* =========================================================
   NARIN SAFFRON — LUXURY LANDING PAGE
   Visual system: warm cream, black type, deep burgundy
   accents, matte gold details. Editorial, calm, premium.
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --cream: #F4EBDD;
  --cream-dark: #E8DCC8;
  --black: #11100E;
  --muted: #6D6256;
  --burgundy: #5A1722;
  --burgundy-dark: #3B0F16;
  --gold: #B89A5E;
  --gold-soft: rgba(184, 154, 94, 0.35);

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4.5rem, 10vw, 9rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1); /* soft, no bounce */
  --hairline: 1px solid var(--gold-soft);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1vw + 0.6rem, 1.0625rem);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-pad);
}

.section-title {
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  line-height: 1.12;
  max-width: 18ch;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
  max-width: 22ch;
}

.section-body {
  margin-top: 1.5rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
}

.section-body.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* ---------- ACCESSIBILITY ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1rem 1.85rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.btn-primary {
  background-color: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background-color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.btn-ghost {
  background-color: transparent;
  color: var(--black);
  border-color: var(--gold-soft);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--burgundy);
}

/* =========================================================
   PERSIAN-INSPIRED CSS BACKGROUND PATTERN
   Subtle, gold-toned, only on flagged sections.
   ========================================================= */
[data-pattern]::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0; /* faded in via .pattern-on by script.js / fallback */
  transition: opacity 1.2s var(--ease);
  background-image:
    radial-gradient(circle at 50% 0, var(--gold-soft) 0 1px, transparent 1.6px),
    radial-gradient(circle at 0 50%, var(--gold-soft) 0 1px, transparent 1.6px),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(184, 154, 94, 0.05) 22px 23px),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(184, 154, 94, 0.05) 22px 23px);
  background-size: 46px 46px, 46px 46px, auto, auto;
  background-position: center;
}
[data-pattern].pattern-on::before {
  opacity: 0.55;
}
[data-pattern] > .container {
  position: relative;
  z-index: 1;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.5s var(--ease),
    border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--cream);
}
.site-header.scrolled {
  background-color: rgba(244, 235, 221, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: var(--hairline);
  color: var(--black);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1;
}
.brand img {
  display: block;
  width: 30%;
  height: auto;
}
.brand-mark {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  color: var(--gold);
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.site-nav a {
  position: relative;
  color: inherit;
  padding-block: 0.25rem;
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.site-nav a:hover { color: var(--burgundy); }
.site-nav a:hover::after { width: 100%; }

.header-cta {
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
}
.site-header:not(.scrolled) .header-cta {
  color: var(--cream);
  border-color: rgba(244, 235, 221, 0.38);
}
.site-header:not(.scrolled) .header-cta:hover {
  color: var(--cream);
  border-color: var(--gold);
}

/* =========================================================
   1. HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--black);
  color: var(--cream);
}

/* Pinned viewport on desktop; JS adds the scroll length via .hero-scroll-space */
.hero-pin {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.88) 0%, rgba(17, 16, 14, 0.62) 36%, rgba(17, 16, 14, 0.18) 70%, rgba(17, 16, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.35) 0%, rgba(17, 16, 14, 0.05) 45%, rgba(17, 16, 14, 0.45) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(5rem, 10vw, 7rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 36rem;
}
.hero .eyebrow {
  color: var(--gold);
}

.hero-headline {
  margin-top: 1.5rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
}
.hero-headline .clip-line {
  display: block;
}

.gold-divider {
  display: block;
  height: 1px;
  width: 0;
  margin-block: 1.8rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform-origin: left center;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(244, 235, 221, 0.78);
  max-width: 34ch;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.hero-note,
.hero-actions .hero-note {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Hero media covers the full first viewport behind the copy. */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.media-frame {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--black);
  box-shadow: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Placeholder shown only when video cannot load (script adds .show) */
.media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 60% 45%, rgba(184, 154, 94, 0.22), transparent 55%),
    linear-gradient(160deg, var(--cream-dark), #d8c8ad);
}
.media-placeholder.show { display: flex; }
.placeholder-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--burgundy);
  letter-spacing: 0.04em;
}
.placeholder-label small {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.placeholder-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 94, 0.4), transparent 70%);
  filter: blur(20px);
}

/* Soft gold glow used by fallback infusion animation */
.infusion-glow {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 55%;
  height: 55%;
  transform: translate(-50%, -50%) scale(0.6);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(184, 154, 94, 0.55), transparent 65%);
  filter: blur(24px);
  mix-blend-mode: screen;
}

.hero-scroll-space {
  height: 0; /* JS sets this on desktop to create scrub scroll length */
}

/* =========================================================
   2. ORIGIN & PURITY
   ========================================================= */
.origin {
  overflow: hidden;
}
.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.72fr);
  column-gap: clamp(2.5rem, 7vw, 6rem);
  row-gap: clamp(3rem, 6vw, 5rem);
  align-items: end;
}
.origin-copy {
  max-width: 42rem;
  padding-bottom: clamp(0rem, 2vw, 2rem);
}
.line-draw {
  display: block;
  height: 1px;
  width: 0;
  max-width: 120px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.origin .line-draw {
  max-width: 160px;
}
.origin .section-title {
  max-width: 17ch;
}
.origin .section-body {
  max-width: 44ch;
}

.origin-visual {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(100%, 28rem);
}
.origin-visual::before {
  content: "";
  position: absolute;
  inset: 10% -10% -9% 18%;
  z-index: -1;
  border: 1px solid rgba(184, 154, 94, 0.22);
}
.origin-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-dark);
  border: 1px solid rgba(184, 154, 94, 0.32);
  box-shadow: 0 28px 70px -52px rgba(59, 15, 22, 0.5);
}
.origin-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.02), rgba(17, 16, 14, 0.14)),
    radial-gradient(circle at 72% 18%, rgba(184, 154, 94, 0.18), transparent 42%);
}
.origin-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.origin-visual figcaption {
  margin-top: 1rem;
  max-width: 26rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-list {
  grid-column: 1 / -1;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(184, 154, 94, 0.22);
}
.proof-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 9rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.4rem) 0 0;
  border-top: 1px solid rgba(184, 154, 94, 0.45);
}
.proof-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34%;
  height: 1px;
  background: var(--gold);
}
.proof-index {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.proof-name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.18;
}
.proof-note {
  max-width: 16rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

/* =========================================================
   3. GULF GIFTING
   ========================================================= */
.gifting {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.gifting-pin {
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.gifting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.tag-list {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tag {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding: 0.6rem 1.1rem;
  border: var(--hairline);
  border-radius: 2px;
}

/* Gift stack: catalog card behind, product card in front */
.gift-stack {
  position: relative;
  width: min(100%, 28rem);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  isolation: isolate;
}
.gift-stack .gift-card-back,
.gift-stack .gift-card-front {
  position: absolute;
  inset: 0;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--gold-soft);
  background: var(--cream-dark);
}
.gift-stack .gift-card-back {
  z-index: 1;
  background-image: url("assets/gift-card.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(24px, -22px) rotate(1.5deg);
  box-shadow: 0 18px 50px rgba(17, 16, 14, 0.08);
}
.gift-stack .gift-card-front {
  z-index: 2;
  margin: 0;
  transform: translate(0, 0) rotate(-0.4deg);
  background: var(--cream-dark);
  box-shadow: 0 28px 80px rgba(17, 16, 14, 0.14);
}
.gift-stack .gift-card-front img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gift-stack .gift-card-front::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  pointer-events: none;
  opacity: 0.8;
}
.gift-stack .gift-card-label,
.gift-stack .packshot-placeholder,
.gift-stack .packshot-mark,
.gift-stack .packshot-sub,
.gift-stack .packshot-note {
  display: none !important;
}
.gift-card-back,
.gift-card-front {
  position: absolute;
  inset: 0;
  border-radius: 3px;
}
.gift-card-back {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(244, 235, 221, 0.08),
      rgba(59, 15, 22, 0.06)
    ),
    url("assets/gift-card.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 1px solid var(--gold-soft);
  border-radius: 18px;
  transform: translate(0, 0);

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem;

  box-shadow:
    0 24px 70px rgba(17, 16, 14, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}
.gift-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
}
.gift-card-front {
  background: linear-gradient(160deg, var(--burgundy), var(--burgundy-dark));
  border: 1px solid var(--gold-soft);
  box-shadow: 0 30px 70px -45px rgba(59, 15, 22, 0.6);
  overflow: hidden;
}
/* Gold border-draw element used by JS (kept subtle) */
.gift-card-front::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.gift-card-front.border-on::after { opacity: 1; }

.packshot-placeholder,
.detail-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--cream);
}
.packshot-mark {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.22em;
}
.packshot-sub {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.packshot-note {
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(244, 235, 221, 0.55);
}

.gifting-scroll-space { height: 0; }

/* =========================================================
   4. HOSPITALITY & FINE DINING
   ========================================================= */
.card-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.lux-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.85rem 2rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      180deg,
      rgba(244, 235, 221, 0.72),
      rgba(232, 220, 200, 0.34)
    );
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lux-card > * {
  position: relative;
  z-index: 1;
}
.card-topline {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
}
.lux-card .card-title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 0.75rem;
  transition:
    color 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lux-card .card-text {
  color: var(--muted);
  font-size: 0.98rem;
  transition:
    color 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lux-card:hover,
.lux-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(184, 154, 94, 0.32);
  box-shadow:
    0 24px 70px rgba(17, 16, 14, 0.07),
    0 6px 18px rgba(90, 23, 34, 0.04);
}
.lux-card:hover::before,
.lux-card:focus-within::before {
  opacity: 1;
}
.lux-card:hover .card-title,
.lux-card:focus-within .card-title {
  color: var(--burgundy);
}
.lux-card:hover .card-text,
.lux-card:focus-within .card-text {
  color: var(--muted);
}

/* =========================================================
   5. PACKAGING DETAILS
   ========================================================= */
.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.detail-list {
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
}
.detail-line {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-block: 1.35rem;
  border-bottom: var(--hairline);
}
.detail-line:first-child { border-top: var(--hairline); }
.detail-rule {
  flex: none;
  height: 1px;
  width: 0;
  max-width: 48px;
  background: var(--gold);
}
.detail-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.detail-card {
  position: relative;
  border: 1px solid var(--gold-soft);
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1815, var(--black));
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.7);
}
.detail-placeholder { color: var(--cream); }
/* Soft highlight sweep over the product image */
.sweep {
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(244, 235, 221, 0.18),
    rgba(184, 154, 94, 0.22),
    transparent
  );
  transform: skewX(-12deg);
}

/* =========================================================
   6. B2B CATALOG
   ========================================================= */
.catalog-layout {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.catalog-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.catalog-card {
  background: var(--cream);
  border: var(--hairline);
  border-radius: 3px;
  padding: 1.75rem 2rem;
  box-shadow: 0 18px 45px -38px rgba(59, 15, 22, 0.5);
}
/* Slight horizontal stagger to feel "stacked" on desktop */
.catalog-card:nth-child(2) { margin-left: clamp(0px, 3vw, 2.5rem); }
.catalog-card:nth-child(3) { margin-left: clamp(0px, 6vw, 5rem); }
.card-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.catalog-card .card-title {
  margin-top: 0.5rem;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--burgundy);
}

.inquiry-card {
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: 3px;
  padding: 2rem 2.25rem;
}
.inquiry-title {
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.inquiry-rows {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.inquiry-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
  border-top: var(--hairline);
}
.inquiry-row dt {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.inquiry-row dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
}

/* =========================================================
   7. WHATSAPP CONCIERGE
   ========================================================= */
.concierge {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.concierge-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.chat-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
}
.chat-window {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--cream);
  border: var(--hairline);
  border-radius: 4px;
  box-shadow: 0 24px 60px -45px rgba(59, 15, 22, 0.5);
}
.chat-msg {
  max-width: 85%;
  padding: 0.95rem 1.2rem;
  border-radius: 4px;
  font-size: 0.96rem;
  line-height: 1.55;
}
.chat-author {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  opacity: 0.7;
}
.chat-in {
  align-self: flex-start;
  background: var(--cream-dark);
  border: 1px solid var(--gold-soft);
}
.chat-out {
  align-self: flex-end;
  background: var(--burgundy);
  color: var(--cream);
}
.chat-out .chat-author { color: var(--gold); opacity: 1; }

.concierge-result {
  align-self: end;
  min-width: 11rem;
  padding: 1.5rem 1.6rem;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 20px 50px -40px rgba(59, 15, 22, 0.5);
}
.result-mark {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.result-title {
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}
.result-line {
  font-size: 0.9rem;
  color: var(--muted);
}

/* =========================================================
   8. FINAL CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(24rem, 1.14fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.final-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.final-options {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.final-catalog-visual {
  position: relative;
  width: min(100%, 44rem);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(184, 154, 94, 0.34);
  border-radius: 18px;
  background: var(--cream-dark);
  box-shadow:
    0 28px 80px rgba(17, 16, 14, 0.12),
    0 10px 24px rgba(90, 23, 34, 0.05);
}
.final-catalog-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(184, 154, 94, 0.28);
  border-radius: 12px;
}
.final-catalog-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(27rem, 48vw, 40rem);
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: var(--hairline);
  padding-block: 3rem;
}
.footer-note {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* =========================================================
   REVEAL ANIMATION BASE STATES
   Elements start hidden; .is-visible (added by JS) reveals.
   With no JS / reduced-motion, a fallback below shows them.
   ========================================================= */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
}
[data-reveal="eyebrow"],
[data-reveal="sub"],
[data-reveal="cta"],
[data-reveal="up"] {
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal="stack"] {
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal="headline"] {
  transition: opacity 0.9s var(--ease);
}
/* clip-path text reveal for the headline lines */
.clip-line {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease);
}
[data-reveal="divider"],
[data-reveal="line"] {
  opacity: 1;
}

/* Revealed state */
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.is-visible .clip-line {
  clip-path: inset(0 0 0 0);
}

/* =========================================================
   NO-JS / FALLBACK: ensure all content is visible.
   .js-ready is added to <html> by script.js. Until then,
   keep things visible so the page never appears blank.
   ========================================================= */
html:not(.js-ready) [data-reveal] {
  opacity: 1;
  transform: none;
}
html:not(.js-ready) .clip-line { clip-path: none; }
html:not(.js-ready) .gold-divider,
html:not(.js-ready) .line-draw,
html:not(.js-ready) .detail-rule,
html:not(.js-ready) .card-topline { width: 100%; }
html:not(.js-ready) [data-pattern]::before { opacity: 0.5; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .site-nav { display: none; }

  .hero-grid,
  .origin-grid,
  .gifting-grid,
  .packaging-grid,
  .catalog-layout,
  .concierge-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-pin {
    min-height: 100svh;
  }
  .hero-pin::before {
    background:
      linear-gradient(180deg, rgba(17, 16, 14, 0.72) 0%, rgba(17, 16, 14, 0.48) 45%, rgba(17, 16, 14, 0.82) 100%);
  }
  .hero-grid {
    min-height: calc(100svh - 9rem);
    align-items: end;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .hero-copy {
    max-width: 38rem;
  }
  .media-frame { aspect-ratio: auto; }

  .origin-grid {
    align-items: start;
  }
  .origin-visual {
    justify-self: start;
    width: min(100%, 34rem);
  }
  .origin-image-frame {
    aspect-ratio: 16 / 11;
  }

  .gifting-pin { min-height: auto; padding-block: 1rem; }

  .gift-stack { max-width: 22rem; }
  .gift-stack .gift-card-back {
    transform: translate(12px, -12px) rotate(1.5deg);
  }
  .final-catalog-visual {
    justify-self: start;
    width: min(100%, 42rem);
  }
  .final-catalog-visual img {
    min-height: auto;
  }

  .proof-list,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .proof-list {
    gap: 1.25rem;
  }
  .proof-item {
    min-height: auto;
    padding-top: 1.25rem;
  }

  .catalog-card:nth-child(2),
  .catalog-card:nth-child(3) { margin-left: 0; }

  .chat-wrap { grid-template-columns: 1fr; }
  .concierge-result { justify-self: start; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .chat-msg { max-width: 100%; }
  .inquiry-row { flex-direction: column; gap: 0.25rem; }
  .inquiry-row dd { text-align: left; }
}

/* =========================================================
   PREFERS-REDUCED-MOTION
   Disable scrub/transition motion; show final static states.
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .clip-line { clip-path: none !important; }
  .gold-divider,
  .line-draw,
  .detail-rule,
  .card-topline { width: 100% !important; }
  [data-pattern]::before { opacity: 0.5 !important; }
  .gift-card-front::after { opacity: 1 !important; }
}
