/* 
   Zamindar Tea — Design System
   Aesthetic: Cinematic Agency (Lounge Lizard-inspired)
   Palette: Warm Mustard Gold · Deep Red · Earthy Green · Cream
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --mustard: #F8C800;
  --mustard-dark: #D4A800;
  --mustard-pale: #FDF3C0;
  --red: #B31217;
  --red-dark: #8E0E12;
  --green: #2E6B2E;

  --cream-deep: #F0DDB0;
  --cream-mid: #F6E7C1;
  --cream-light: #FBF3E0;
  --cream-white: #FFFDF5;

  --text-dark: #2A1A08;
  --text-body: #4A3010;
  --text-muted: #7A5C30;
  --text-faint: #B09060;

  --border: rgba(180, 130, 60, 0.22);
  --border-strong: rgba(180, 130, 60, 0.42);

  --shadow-sm: 0 2px 8px rgba(80, 40, 0, 0.10);
  --shadow-md: 0 6px 28px rgba(80, 40, 0, 0.14);
  --shadow-lg: 0 16px 56px rgba(80, 40, 0, 0.18);
  --shadow-gold: 0 0 36px rgba(248, 200, 0, 0.22);

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 5rem;
  --space-xl: 9rem;

  --ease-fast: 0.2s ease;
  --ease-mid: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-slow: 0.85s cubic-bezier(0.16, 1, 0.3, 1);

  /* legacy compat */
  --color-mustard: var(--mustard);
  --color-mustard-dark: var(--mustard-dark);
  --color-mustard-light: var(--cream-light);
  --color-contrast-red: var(--red);
  --color-contrast-green: var(--green);
  --color-cream: var(--cream-mid);
  --color-body-bg: var(--cream-mid);
  --color-header-bg: var(--mustard);
  --color-text-main: var(--text-dark);
  --color-text-body: var(--text-body);
  --color-brown: var(--red);
  --color-brown-dark: var(--text-dark);
  --color-white: var(--cream-white);
  --color-green: var(--green);
  --color-light-cream: var(--cream-light);
  --color-surface: var(--cream-white);
  --color-charcoal: var(--cream-light);
  --color-void: var(--cream-mid);
  --color-border: var(--border);
  --color-text-primary: var(--text-dark);
  --color-text-muted: var(--text-muted);
  --spacing-xs: var(--space-xs);
  --spacing-sm: var(--space-sm);
  --spacing-md: var(--space-md);
  --spacing-lg: var(--space-lg);
  --transition-fast: var(--ease-fast);
  --transition-medium: var(--ease-mid);
  --radius-sm: 2px;
  --radius-md: 6px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream-mid);
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease-fast);
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section-padding {
  padding: var(--space-lg) 0;
}

.text-center {
  text-align: center;
}

.block {
  display: block;
}

.full-width {
  width: 100%;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-xs {
  gap: var(--space-xs);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.grid {
  display: grid;
}

.grid-2-col {
  grid-template-columns: 1fr 1fr;
}

.grid-3-col {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4-col {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5-col {
  grid-template-columns: repeat(5, 1fr);
}

.bg-cream {
  background: var(--cream-mid);
}

.bg-mustard {
  background: var(--mustard);
}

.bg-mustard-light {
  background: var(--cream-light);
}

.bg-mustard-dark {
  background: var(--cream-deep);
}

.bg-brown {
  background: var(--red);
}

.bg-dark-brown {
  background: var(--text-dark);
}

.bg-green {
  background: var(--green);
}

.bg-white {
  background: var(--cream-white);
}

.text-mustard {
  color: var(--mustard-dark);
}

.text-white {
  color: var(--cream-white);
}

.text-light {
  color: var(--cream-white);
}

.text-light-cream {
  color: var(--cream-light);
}

.text-brown {
  color: var(--text-dark);
}

.text-mustard-dark {
  color: var(--mustard-dark);
}

.text-contrast-red {
  color: var(--red);
}

.heading-xl {
  font-size: clamp(3.2rem, 7.2vw, 7.4rem);
  letter-spacing: -0.02em;
  font-weight: 300;
  line-height: 1;
  font-style: italic;
}

.heading-lg {
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  letter-spacing: -0.01em;
  font-weight: 300;
  margin-bottom: var(--space-sm);
}

.heading-md {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.text-lg {
  font-size: 1.05rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.text-sm {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.text-xs {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.font-bold {
  font-weight: 600;
}

.mb-xs {
  margin-bottom: var(--space-xs);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.p-xs {
  padding: var(--space-xs);
}

.p-md {
  padding: var(--space-md);
}

.pt-md {
  padding-top: var(--space-md);
}

.padding-lg {
  padding: var(--space-lg) 0;
}

.border-top {
  border-top: 1px solid var(--border);
}

.opacity-70 {
  opacity: 0.7;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--ease-mid);
  position: relative;
}

.btn-primary {
  background: var(--red);
  color: var(--cream-white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(179, 18, 23, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-white);
  border: 1.5px solid rgba(255, 253, 245, 0.65);
}

.btn-secondary:hover {
  background: var(--cream-white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.btn-outline-dark:hover {
  background: var(--red);
  color: var(--cream-white);
  transform: translateY(-2px);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.45s ease;
}

.site-header.scrolled {
  background: transparent;
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(80, 40, 0, 0.15);
  border-bottom: 1px solid rgba(212, 168, 0, 0.4);
}

.site-header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mustard);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* Nav links — white over hero, dark on scrolled mustard header */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream-white);
  position: relative;
  padding: 0.2rem 0;
  transition: color var(--ease-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width var(--ease-mid);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--mustard-pale);
}

.main-nav a.active {
  color: var(--mustard-pale);
}

.site-header.scrolled .main-nav a {
  color: var(--text-dark);
}

.site-header.scrolled .main-nav a:hover {
  color: var(--red);
}

.site-header.scrolled .main-nav a.active {
  color: var(--red);
}

.main-nav .btn-primary {
  background: var(--red);
  color: var(--cream-white);
  padding: 0.6rem 1.4rem;
  font-size: 0.67rem;
}

.main-nav .btn-primary:hover {
  background: var(--red-dark);
}

.site-header.scrolled .main-nav .btn-primary {
  background: var(--red);
  color: var(--cream-white);
}

.mobile-toggle {
  display: none;
}

/* ── Hero ── */
.hero {
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  position: relative;

  /* ✅ Make hero layout control alignment */
  display: flex;
  align-items: center;
  /* vertical centering */
  justify-content: flex-start;
  /* LEFT */
  text-align: left;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* lighter overlay so golden hour stays golden */
  background: linear-gradient(125deg,
      rgba(20, 10, 2, 0.42) 0%,
      rgba(20, 10, 2, 0.18) 55%,
      rgba(20, 10, 2, 0.28) 100%);
  pointer-events: none;
}

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

/* Default (non-video) hero content center */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1280px;
  z-index: 10;
}

/* ✅ Video hero: DO NOT use the centered .hero-content positioning */
.hero.hero-video .hero-content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: auto;
  max-width: none;
  z-index: 2;
}

/* ── Page header ── */
.page-header {
  padding-top: 9rem;
  padding-bottom: var(--space-lg);
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream-mid) 100%);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
}

.page-header p {
  color: var(--text-muted);
}

/* ── About ── */
.about-preview {
  background: var(--cream-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-text h2 {
  color: var(--text-dark);
}

.about-text p {
  color: var(--text-body);
}

.about-text a {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ── Product cards ── */
.product-card {
  background: var(--cream-white);
  border: 1px solid var(--border);
  padding: var(--space-md);
  transition: all var(--ease-mid);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--mustard);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-mid);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card h3 {
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* ── Cards ── */
.card {
  background: var(--cream-white);
  border: 1px solid var(--border);
  padding: var(--space-md);
  transition: transform var(--ease-mid), box-shadow var(--ease-mid);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  color: var(--red);
}

.card p {
  color: var(--text-body);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* ── Heritage timeline ── */
.timeline .step {
  background: var(--cream-white);
  border: 1px solid var(--border);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--ease-mid);
}

.timeline .step:hover {
  border-color: var(--mustard-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.timeline .step h3 {
  color: var(--red);
  font-family: var(--font-heading);
  margin-top: 0.75rem;
}

.timeline .step p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.timeline .icon-box-lg {
  font-size: 2.5rem;
  display: block;
}

/* ── Stockist CTA ── */
.stockist-cta {
  background: var(--cream-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Forms ── */
.input-field {
  background: var(--cream-white);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}

.input-field::placeholder {
  color: var(--text-faint);
}

.input-field:focus {
  outline: none;
  border-color: var(--mustard-dark);
  box-shadow: 0 0 0 3px rgba(248, 200, 0, 0.18);
}

textarea.input-field {
  resize: vertical;
}

label {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Stockist form ── */
.info-content h2 {
  color: var(--text-dark);
}

.info-content h3 {
  color: var(--red);
  font-size: 1.1rem;
}

.info-content p {
  color: var(--text-body);
}

.check-list li {
  color: var(--text-body);
  font-size: 0.9rem;
}

.form-content {
  background: var(--cream-white) !important;
  border: 1px solid var(--border) !important;
}

.form-content h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* ── Contact ── */
.contact-details .detail-item h4 {
  color: var(--red);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details .detail-item p {
  color: var(--text-body);
}

.icon-box {
  color: var(--mustard-dark);
}

/* ── Footer ── */
.site-footer {
  background: var(--text-dark);
  border-top: 1px solid rgba(248, 200, 0, 0.18);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--mustard) !important;
  letter-spacing: 0.06em;
}

.footer-brand p {
  color: rgba(246, 231, 193, 0.5) !important;
  font-size: 0.78rem;
  margin-top: 0.75rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard) !important;
  margin-bottom: 1.25rem;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(246, 231, 193, 0.5);
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--mustard);
}

.footer-contact p {
  color: rgba(246, 231, 193, 0.5);
  font-size: 0.82rem;
}

/* ── Slider ── */
.story-slider {
  position: relative;
  width: 100%;
}

.slide {
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  position: absolute;
  inset: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide-content h2,
.slide-content h1,
.slide-content p {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.slider-controls {
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
}

.slider-dot {
  width: 28px;
  height: 2px;
  background: rgba(248, 200, 0, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--mustard);
  width: 48px;
}

.slider-dot:hover {
  background: rgba(248, 200, 0, 0.7);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
}

.hero .fade-in-up,
.section-padding .fade-in-up {
  animation: fadeInUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .fade-in-up {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
  animation-delay: 0.15s;
}

.delay-200 {
  animation-delay: 0.3s;
}

/* ── Slider Typography + Layout Upgrade ── */
.story-slider {
  height: clamp(520px, 75vh, 820px);
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.slide-text {
  max-width: 720px;
  color: #fff;
}

.slide-text .slide-eyebrow {
  display: inline-block;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}

.slide-text h1,
.slide-text h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 650;
  margin: 0 0 1rem 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.slide-text p {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.65;
  opacity: 0.95;
  margin: 0;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

/* ── Vision/Mission ── */
.vision-mission {
  background: var(--cream-light);
}

/* ── Meaning bg ── */
.bg-meaning {
  background-image: linear-gradient(rgba(246, 231, 193, 0.82), rgba(246, 231, 193, 0.82)), url('../images/zamindar-meaning-bg.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ── Responsive ── */
@media (max-width:900px) {
  .grid-5-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:768px) {
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--mustard);
    backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .main-nav a {
    font-size: 0.88rem;
    color: var(--text-dark) !important;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--red) !important;
  }

  .mobile-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream-white);
    margin: 6px 0;
    transition: 0.3s;
  }

  .site-header.scrolled .mobile-toggle span {
    background: var(--text-dark);
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .grid-2-col,
  .grid-3-col {
    grid-template-columns: 1fr;
  }

  .grid-5-col {
    grid-template-columns: repeat(2, 1fr);
  }

  /* keep mobile hero readable */
  .hero {
    justify-content: center;
    text-align: center;
  }

  .hero.hero-video {
    justify-content: center;
    text-align: center;
  }

  .page-header {
    padding-top: 8rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--cream-mid);
}

::-webkit-scrollbar-thumb {
  background: var(--mustard-dark);
  border-radius: 2px;
}

::selection {
  background: var(--mustard);
  color: var(--text-dark);
}

/* =====================================================
   Extracted page-level CSS (moved into style.css)
   Timestamp: 2026-02-18T20:12:38Z
   ===================================================== */

/* ---- from index.html ---- */
/* ── Hero extras ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--mustard);
}

.hero h1 span {
  display: block;
  color: var(--mustard);
}

.hero-meta {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5%;
  z-index: 10;

  pointer-events: none;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 231, 193, 0.55);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--mustard), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4
  }

  50% {
    opacity: 1
  }
}

.hero-tagline-side {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246, 231, 193, 0.45);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── Legacy ── */
.legacy-section {
  background: var(--cream-mid);
  padding: 8rem 0;
  overflow: hidden;
}

.legacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
}

.legacy-image-col {
  position: relative;
  overflow: hidden;
}

.legacy-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.legacy-image-col:hover img {
  transform: scale(1.04);
}

.legacy-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 231, 193, 0.15), transparent);
}

.legacy-text-col {
  background: var(--cream-light);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-left: none;
}

.legacy-text-col .overline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.legacy-text-col h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.legacy-text-col p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  transition: gap var(--ease-mid);
}

.read-more-link::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--ease-mid);
}

.read-more-link:hover {
  gap: 1.5rem;
}

.read-more-link:hover::after {
  transform: translateX(4px);
}

/* ── Collection ── */
.collection-section {
  background: var(--cream-mid);
  padding: 8rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
}

.view-all {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--ease-fast), border-color var(--ease-fast);
}

.view-all:hover {
  color: var(--red);
  border-color: var(--red);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-strong);
  border: 1px solid var(--border);
}

.collection-section .product-card {
  background: var(--cream-white);
  padding: 2.5rem 2rem;
  border: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.collection-section .product-card::before {
  background: var(--mustard);
}

.collection-section .product-card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.collection-section .product-img-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--ease-mid);
}

.collection-section .product-card:hover .product-img-wrap {
  transform: translateY(-8px);
}

.collection-section .product-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.product-desc {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.collection-section .product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mustard);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-mid);
}

.collection-section .product-card:hover .product-card-overlay {
  transform: scaleX(1);
}

/* ── 5-Leaf ── */
/* ── 5-Leaf ── */
.five-leaf-section {
  /* soft texture background */
  background-color: var(--cream-light);
  background-image:
    linear-gradient(rgba(251, 243, 224, 0.50), rgba(251, 243, 224, 0.50)),
    url('../images/five-leaf-texture.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}


.five-leaf-inner {
  position: relative;
  z-index: 2;
}

.five-leaf-section::before {
  content: 'ZAMINDAR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 18vw;
  font-style: italic;
  font-weight: 700;
  color: rgba(180, 130, 60, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.five-leaf-inner {
  position: relative;
  z-index: 1;
}

.leaf-promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.leaf-promise-card {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 253, 245, 0.86);
  padding: 3rem 1.5rem;
  text-align: center;
  transition: background var(--ease-mid), transform var(--ease-mid);
  position: relative;
  overflow: hidden;
}

.leaf-promise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mustard);
  transform: scaleX(0);
  transition: transform var(--ease-mid);
}

.leaf-promise-card:hover {
  background: var(--cream-deep);
}

.leaf-promise-card:hover::after {
  transform: scaleX(1);
}

.leaf-promise-card:hover .leaf-promise-icon {
  transform: translateY(-4px) scale(1.1);
}

.leaf-promise-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  transition: transform var(--ease-mid);
}

.leaf-promise-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.leaf-promise-desc {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  line-height: 1.65;
}


/* Promise block (place this UNDER the two cards — not as a 3rd card) */
.promise-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.6rem, 2.8vw, 2.4rem);
  background: rgba(255, 253, 245, 0.55);
  border: 1px solid rgba(180, 130, 60, 0.18);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.promise-block h3,
.promise-block h4 {
  margin: 0 0 0.75rem 0;
  color: var(--text-dark);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
}

.promise-block p {
  margin: 0 auto 1.35rem;
  color: var(--text-body);
  max-width: 64ch;
  line-height: 1.85;
  font-size: 0.92rem;
}

/* Make the promise CTA feel like it belongs here */
.promise-block .btn,
.promise-block a.btn {
  margin-top: 0.25rem;
}


/* Responsive */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 6rem 0;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    margin-bottom: 2.25rem;
  }

  .vm-card-number {
    right: 1.25rem;
  }

  .promise-block {
    text-align: left;
  }
}

/* ── Stockist CTA ── */
.stockist-fullbleed {
  position: relative;
  width: 100%;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.stockist-fullbleed p {
  color: rgba(246, 231, 193, 0.78);
}

.stockist-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  filter: contrast(1.18) brightness(0.99) saturate(1.05);
  transform: scale(1.03);
  mix-blend-mode: multiply;
}

/* rich chocolate overlay for legibility */
.stockist-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0) 55%),
    linear-gradient(to bottom,
      rgba(43, 22, 13, 0.96) 0%,
      rgba(43, 22, 13, 0.90) 45%,
      rgba(43, 22, 13, 0.97) 100%);
}

.stockist-fullbleed .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.stockist-content {
  max-width: 720px;
  margin: 0 auto;
}

.stockist-fullbleed .cta-overline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1.5rem;
  display: block;
}

.stockist-fullbleed h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-white);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.stockist-fullbleed p {
  color: rgba(246, 231, 193, 0.70);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* Footer logo */
.footer-brand-logo {
  display: inline-block;
}

.footer-logo {
  display: block;
  max-width: 190px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

/* Subtle premium motion */
@keyframes zt-fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zt-kenburns {
  from {
    transform: scale(1.03) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(-6px);
  }
}

/* Apply gentle motion to key visuals */
.heritage-bg,
.collection-bg,
.stockist-bg {
  animation: zt-kenburns 18s ease-in-out infinite alternate;
  will-change: transform;
}

/* Editorial reveal on load (kept subtle) */
.heritage-content,
.collection-content,
.vm-header,
.vm-card,
.promise-manifesto,
.stat-item,
.stockist-content,
.footer-brand,
.footer-links,
.footer-contact {
  opacity: 0;
  animation: zt-fadeUp 0.9s ease forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.05s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.12s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.19s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.26s;
}

.vm-card:nth-child(1) {
  animation-delay: 0.06s;
}

.vm-card:nth-child(2) {
  animation-delay: 0.14s;
}

.promise-manifesto {
  animation-delay: 0.22s;
}

.collection-content {
  animation-delay: 0.10s;
}

.stockist-content {
  animation-delay: 0.10s;
}

@media (prefers-reduced-motion: reduce) {

  .heritage-bg,
  .collection-bg,
  .stockist-bg {
    animation: none !important;
  }

  .heritage-content,
  .collection-content,
  .vm-header,
  .vm-card,
  .promise-manifesto,
  .stat-item,
  .stockist-content,
  .footer-brand,
  .footer-links,
  .footer-contact {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- responsive (index extracted) ---- */
@media (max-width:768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item {
    border-bottom: 1px solid var(--border);
  }

  .legacy-inner {
    grid-template-columns: 1fr;
  }

  .legacy-image-col {
    height: 280px;
  }

  .legacy-text-col {
    padding: 3rem 2rem;
    border-left: 1px solid var(--border);
  }

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .leaf-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leaf-promise-card:last-child {
    grid-column: 1/-1;
  }

  .hero-meta {
    display: none;
  }
}

/* ---- from our-story.html ---- */
.story-slider {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1.04);
}

.slide-content {
  position: relative;
  z-index: 10;
  padding-top: 10rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-text {
  max-width: 640px;
}

.slide-text .slide-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1.5rem;
  display: block;
}

.slide-text h1,
.slide-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.slide-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(246, 231, 193, 0.75);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.slider-controls {
  position: absolute;
  bottom: 3rem;
  left: 5%;
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.slide-counter {
  position: absolute;
  bottom: 3rem;
  right: 5%;
  z-index: 20;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(246, 231, 193, 0.5);
}

.story-section {
  padding: 8rem 0;
  background: var(--cream-mid);
}

.story-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-two-col.reverse {
  direction: rtl;
}

.story-two-col.reverse>* {
  direction: ltr;
}

.story-img-wrap {
  background: var(--cream-white);
  border: 1px solid var(--border);
  height: 460px;
  overflow: hidden;
  position: relative;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}

.story-img-wrap:hover img {
  transform: scale(1.04);
}

.story-text .overline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: block;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.story-text p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ✅ Meaning section (will be overridden again later by the watermark upgrade block) */
.meaning-section {
  padding: 10rem 0;
  background-image: linear-gradient(rgba(246, 231, 193, 0.88), rgba(246, 231, 193, 0.88)), url('../images/zamindar-meaning-bg.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.meaning-section .overline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: block;
}

.meaning-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1;
}

.meaning-section p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 2;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width:768px) {

  .story-two-col,
  .story-two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .story-img-wrap {
    height: 300px;
  }
}

/* =====================================================
   Global upgrades: Full-bleed sections, stronger watermarks,
   and video-first hero overlay behavior
   ===================================================== */

/* Full-bleed utility: section spans viewport, content can still use .container */
.section-fullbleed {
  width: 100%;
  margin-left: 0;
}

/* =========================
   VIDEO HERO - BASE
========================= */
.hero.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #96846a;
}

/* Better mobile viewport handling where supported */
@supports (height: 100dvh) {
  .hero.hero-video {
    height: 100dvh;
  }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(1.12) contrast(1.05) saturate(1.06);
  pointer-events: none;
}

/* Subtle warm vignette */
.hero.hero-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(246, 231, 193, 0.10) 0%,
      rgba(10, 6, 3, 0.08) 40%,
      rgba(10, 6, 3, 0.04) 100%);
  z-index: 1;
  pointer-events: none;
}

/* =========================
   OVERLAY
========================= */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5% 40px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-overlay.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-overlay.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

/* Keep video/background from intercepting clicks */
.hero.hero-video .hero-video-wrap,
.hero.hero-video .hero-bg {
  pointer-events: none;
}

/* =========================
   PANEL
========================= */
.hero-panel {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  width: 100%;
  max-width: min(720px, 92vw);

  background: rgba(30, 18, 10, 0.42);
  border: 1px solid rgba(255, 253, 245, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

.hero-panel .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--space-sm);
  margin-top: 0;
}

/* Optional small CTA panel if used separately */
.hero-actions-panel {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1.15rem 1.35rem;
  background: rgba(30, 18, 10, 0.42);
  border: 1px solid rgba(255, 253, 245, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

.hero-actions-panel .btn {
  pointer-events: auto;
}

.hero-actions-panel .btn-secondary {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 253, 245, 0.78);
}

.hero-actions-panel .btn-secondary:hover {
  background: rgba(255, 253, 245, 0.92);
  color: var(--red);
  border-color: rgba(255, 253, 245, 0.92);
}

/* =========================
   TYPOGRAPHY / LOGO
========================= */
.hero.hero-video .hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 231, 193, 0.9);
}

.hero.hero-video .heading-xl {
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 1.02;
}

.hero-logo {
  width: clamp(320px, 28vw, 520px);
  height: auto;
  display: block;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.35));
}

.hero-lede {
  color: rgba(246, 231, 193, 0.82);
  max-width: 520px;
  margin: 1.5rem 0 2.5rem;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.85;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero.hero-video {
    height: 100vh;
    min-height: 100vh;
  }

  @supports (height: 100dvh) {
    .hero.hero-video {
      height: 100dvh;
      min-height: 100dvh;
    }
  }

  .hero-video-wrap {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
  }

  .hero-video-el {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center; /* better default for full-width */
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 1.5rem 2rem;
    background: transparent;
  }

  .hero-panel {
    width: 100%;
    max-width: 92vw;
    padding: 1.25rem;
    gap: 1rem;
    background: rgba(30, 18, 10, 0.30);
    border: 1px solid rgba(255, 253, 245, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  }

  .hero-panel .hero-actions {
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-logo {
    width: min(170px, 42vw);
    margin-bottom: 0.75rem;
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }

  .hero.hero-video .heading-xl {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .hero-lede {
    max-width: 100%;
    margin: 0.75rem 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-headline,
  .hero-actions {
    margin-top: 0;
  }

  .hero-meta {
    display: none;
  }
}

/* Remove “card/photo frame” feel for key story image blocks (keep emblems as emblems) */
.story-img-wrap {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  height: clamp(360px, 55vh, 640px) !important;
  overflow: hidden;
  margin: 0;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  padding: 0 !important;
}

/* Heritage emblem: remove frame but keep image contained */
.heritage-emblem-wrap {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.heritage-emblem-wrap img {
  max-height: 70%;
  max-width: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Stronger watermark treatment (Meaning of Zamindar + any similar sections) */
.meaning-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.meaning-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 231, 193, 0.62);
  pointer-events: none;
}

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

/* Full-bleed split bands (Guardians / Legacy etc.) */
.story-section .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.story-two-col {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0 !important;
  align-items: stretch;
}

.story-text {
  padding: clamp(2.5rem, 5vw, 5.5rem) 5%;
}

.story-img-wrap {
  margin: 0;
}

/* Index legacy section: remove inner max-width wrapper + borders so it feels seamless */
.legacy-section {
  padding: 0 !important;
}

.legacy-section>div[style] {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.legacy-inner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(520px, 70vh, 760px);
}

.legacy-text-col {
  border: 0 !important;
  background: var(--cream-light);
}

.legacy-image-col::after {
  background: linear-gradient(135deg, rgba(246, 231, 193, 0.10), transparent);
}

/* Hero headline: smaller than the logo, both lines in mustard */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.04;
  color: var(--mustard);
}

.hero-headline span {
  color: var(--mustard);
  display: block;
}

/* Cinematic type lift (subtle, global) */
p {
  font-size: 1.02rem;
}

@media (max-width:768px) {
  body {
    font-size: 17px;
  }

  p {
    font-size: 1rem;
  }
}

/* Safety: ensure overlay/panel are always on top and clickable */
.hero-overlay,
.hero-panel {
  position: relative;
  z-index: 20;
}

.hero-overlay a,
.hero-overlay button {
  pointer-events: auto;
}


/* =====================================================
   Our Heritage (Full-bleed image + right-side copy)
   ===================================================== */
.heritage-fullbleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(560px, 80vh, 920px);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.heritage-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  /* cup + kettle stay left */
  display: block;
  filter: brightness(1.02) contrast(1.05) saturate(1.05);
  pointer-events: none;
}

/* Gradient darkens the right side only for readability */
.heritage-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 6rem) 5%;
  background: linear-gradient(to right,
      rgba(10, 6, 3, 0.05) 0%,
      rgba(10, 6, 3, 0.25) 45%,
      rgba(10, 6, 3, 0.78) 70%,
      rgba(10, 6, 3, 0.88) 100%);
  pointer-events: none;
  /* prevents overlay blocking clicks */
}

.heritage-content {
  max-width: 560px;
  color: rgba(246, 231, 193, 0.92);
  pointer-events: auto;
  /* re-enable clicks inside */
  background: rgba(30, 18, 10, 0.28);
  /* subtle warm glass */
  border: 1px solid rgba(255, 253, 245, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.35);
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
}

.heritage-content .overline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 200, 0, 0.9);
  margin-bottom: 1rem;
}

.heritage-content h2 {
  color: #f3d78a;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.heritage-content p {
  color: rgba(246, 231, 193, 0.78);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.heritage-cta {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.heritage-cta::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--ease-mid);
}

.heritage-cta:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .heritage-overlay {
    justify-content: center;
    padding: 3rem 5%;
    background: linear-gradient(to bottom,
        rgba(10, 6, 3, 0.40) 0%,
        rgba(10, 6, 3, 0.75) 40%,
        rgba(10, 6, 3, 0.99) 100%) !important;
  }

  .heritage-content {
    max-width: 680px;
    text-align: center;
    background: rgba(10, 6, 3, 0.98) !important;
    padding: 2.25rem 2rem !important;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(248, 200, 0, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  }
}


/* =====================================================
   Our Collection (Full-bleed image + left-side copy)
   ===================================================== */
.collection-fullbleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(560px, 80vh, 920px);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.collection-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keep centere for centered text */
  object-position: center;
  display: block;
  filter: brightness(0.75) contrast(1.06) saturate(1.03);
  pointer-events: none;
}

.collection-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  /* Left aligned on big screen */
  align-items: center;
  padding: clamp(2.5rem, 6vw, 6rem) 5%;
  background: linear-gradient(to right,
      rgba(10, 6, 3, 0.88) 0%,
      rgba(10, 6, 3, 0.72) 38%,
      rgba(10, 6, 3, 0.34) 64%,
      rgba(10, 6, 3, 0.00) 84%);
  pointer-events: none;
  /* prevents overlay blocking clicks */
}

.collection-content {
  max-width: 560px;
  text-align: left;
  /* Left aligned on big screen */
  margin-left: 0;
  pointer-events: auto;
  /* re-enable clicks inside */
  background: rgba(30, 18, 10, 0.28);
  /* Match heritage content bg */
  border: 1px solid rgba(255, 253, 245, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.35);
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
}

.collection-content .overline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 200, 0, 0.9);
  margin-bottom: 1rem;
}

.collection-content h2 {
  color: #f3d78a;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.collection-content p {
  color: rgba(246, 231, 193, 0.78);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.35rem;
}

@media (max-width: 768px) {
  .collection-overlay {
    justify-content: center;
    padding: 4rem 6%;
    background: linear-gradient(to bottom,
        rgba(10, 6, 3, 0.35) 0%,
        rgba(10, 6, 3, 0.78) 55%,
        rgba(10, 6, 3, 0.90) 100%);
  }

  .collection-content {
    max-width: 680px;
    text-align: left;
  }
}


/* ── Premium motion (subtle, scroll-aware) ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
  animation: none !important;
  /* override any load-time animations */
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* gentle image drift on hover (premium, not gimmicky) */
.collection-fullbleed:hover .collection-bg,
.heritage-fullbleed:hover .heritage-bg {
  transform: scale(1.05);
}

/* Stockist palace parallax drift */
.stockist-bg {
  transition: transform 0.4s ease-out;
  will-change: transform;
}

/* Avoid fighting transforms: disable kenburns when parallax is active */
.parallax-on .stockist-bg {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .stockist-bg {
    transition: none;
  }

  .collection-fullbleed:hover .collection-bg,
  .heritage-fullbleed:hover .heritage-bg {
    transform: none;
  }
}


.promise-manifesto {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.promise-divider {
  width: 80px;
  height: 1px;
  background: rgba(180, 130, 60, 0.35);
  margin: 0 auto 2rem;
}

.promise-line {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dark);
}

.promise-line span {
  color: var(--red);
  font-weight: 400;
}

.promise-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid rgba(180, 130, 60, 0.35);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.promise-link:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

@media (max-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .vm-grid::after {
    display: none;
  }

  .promise-line {
    font-size: 1.2rem;
  }
}


/* =====================================================
   Footer — Premium "Wow" Upgrade (no CTA)
   ===================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-lg) * 0.9) 0 var(--space-md);
  background:
    radial-gradient(1000px 520px at 18% 18%, rgba(248, 200, 0, 0.08), rgba(0, 0, 0, 0) 60%),
    radial-gradient(860px 520px at 82% 8%, rgba(179, 18, 23, 0.07), rgba(0, 0, 0, 0) 60%),
    linear-gradient(to bottom, rgba(14, 8, 3, 0.96), rgba(14, 8, 3, 0.98));
  border-top: 1px solid rgba(248, 200, 0, 0.16);
}

/* Brass top edge */
.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(248, 200, 0, 0) 0%,
      rgba(248, 200, 0, 0.35) 18%,
      rgba(248, 200, 0, 0.15) 55%,
      rgba(248, 200, 0, 0.32) 82%,
      rgba(248, 200, 0, 0) 100%);
  opacity: 0.7;
}

/* Crest watermark */
.site-footer::before {
  content: "";
  position: absolute;
  width: min(760px, 72vw);
  height: min(760px, 72vw);
  right: -10%;
  top: -18%;
  background: url("../images/logo-big.png") no-repeat center / contain;
  opacity: 0.07;
  filter: saturate(1.08) contrast(1.05);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Manifesto */
.footer-manifesto {
  text-align: center;
  margin: 0 auto 3.25rem;
  max-width: 920px;
}

.footer-manifesto-line {
  font-family: var(--font-heading);
  color: rgba(255, 253, 245, 0.92);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  margin: 0;
}

.footer-manifesto-rule {
  width: 88px;
  height: 1px;
  margin: 1.35rem auto 0;
  background: linear-gradient(90deg, rgba(248, 200, 0, 0), rgba(248, 200, 0, 0.55), rgba(248, 200, 0, 0));
  opacity: 0.65;
}

/* Grid spacing */
.site-footer .grid.grid-3-col {
  align-items: start;
  gap: clamp(2.25rem, 4vw, 4.25rem);
  margin-bottom: 3.5rem !important;
}

/* Brand */
.footer-brand-logo img.hero-logo {
  width: clamp(260px, 22vw, 420px);
  margin: 0;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

.footer-trustline {
  margin-top: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 231, 193, 0.62);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-start;
}

.footer-trustline .dot {
  opacity: 0.55;
}

.footer-social {
  margin-top: 2.25rem;
  display: flex;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 253, 245, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--ease-fast), transform var(--ease-fast);
}

.social-link:hover {
  color: var(--mustard);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Headings */
.footer-links h4,
.footer-contact h4 {
  color: rgba(248, 200, 0, 0.95) !important;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.4rem;
}

/* Links */
.footer-links a {
  position: relative;
  display: inline-block;
  color: rgba(255, 253, 245, 0.72);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  padding: 0.15rem 0;
  transition: color var(--ease-fast), transform var(--ease-fast);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(248, 200, 0, 0.7);
  transition: width var(--ease-mid);
}

.footer-links a:hover {
  color: rgba(248, 200, 0, 0.98);
  transform: translateY(-1px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

/* Contact */
.footer-contact p {
  color: rgba(255, 253, 245, 0.68);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-fast);
}

.footer-contact a:hover {
  color: var(--mustard);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #ffffff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  border: none;
  transition: all 0.3s var(--ease-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  margin-top: 0.5rem;
}

.whatsapp-btn:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E1306C; /* Instagram Pink */
  color: #ffffff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  border: none;
  transition: all 0.3s var(--ease-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
}

.insta-follow-btn:hover {
  background: #d1215c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.35);
}

/* Sub-footer strip */
.footer-subbar {
  border-top: 1px solid rgba(248, 200, 0, 0.14);
  padding: 1.25rem 0 0;
}

.footer-subbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 231, 193, 0.48);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-manifesto {
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .footer-manifesto-rule {
    margin-left: 0;
  }

  .footer-trustline {
    justify-content: center;
    text-align: center;
  }

  .footer-brand-logo img.hero-logo {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {

  .footer-links a,
  .footer-links a::after {
    transition: none !important;
  }
}


/* =====================================================
   Heritage + Collection — remove boxed copy, make type sit on image
   ===================================================== */

/* Heritage: remove the glass card */
.heritage-content {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  max-width: 720px !important;
}

/* Heritage: stronger readability gradient (keeps copy readable without a box) */
.heritage-overlay {
  background: linear-gradient(rgba(10, 6, 3, 0.45), rgba(10, 6, 3, 0.45)) !important;
}

/* Heritage: bigger, more premium type */
.heritage-content h2 {
  font-size: clamp(3.1rem, 5.4vw, 5.2rem) !important;
  line-height: 1.02 !important;
  margin-bottom: 1.25rem !important;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.heritage-content p {
  font-size: 1.08rem !important;
  line-height: 1.9 !important;
  max-width: 62ch;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.40);
}

/* Collection: remove the glass card */
.collection-content {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  max-width: 720px !important;
}

/* Collection: readability gradient (left-side copy) */
.collection-overlay {
  background: linear-gradient(rgba(30, 18, 10, 0.15), rgba(30, 18, 10, 0.15)) !important;
}

/* Collection: bigger type */
.collection-content h2 {
  font-size: clamp(3.1rem, 5.4vw, 5.2rem) !important;
  line-height: 1.02 !important;
  margin-bottom: 1.25rem !important;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.collection-content p {
  font-size: 1.08rem !important;
  line-height: 1.9 !important;
  max-width: 62ch;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.40);
}

/* Mobile: keep readable + centered */
@media (max-width: 768px) {

  .heritage-overlay,
  .collection-overlay {
    justify-content: center !important;
    text-align: center !important;
  }

  .heritage-content,
  .collection-content {
    max-width: 680px !important;
    text-align: center !important;
    /* Force centering on mobile */
    margin: 0 auto !important;
  }
}


/* =====================================================
   Homepage — Our Promise / 5-Leaf (creative image usage)
   Uses images/3254626.png as an editorial "seal" visual.
   ===================================================== */

.five-leaf-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  padding: clamp(2.75rem, 4.5vw, 4rem);
  background: transparent;
}

.five-leaf-art {
  position: relative;
  aspect-ratio: 1 / 1;
  width: min(520px, 92vw);
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.five-leaf-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.08) saturate(1.08) brightness(0.99);
}

.five-leaf-art-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 40%, rgba(248, 200, 0, 0.14), rgba(0, 0, 0, 0) 58%),
    radial-gradient(circle at 40% 65%, rgba(179, 18, 23, 0.12), rgba(0, 0, 0, 0) 62%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.five-leaf-copy .overline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: block;
}

.five-leaf-copy h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

.five-leaf-lede {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-body);
  margin: 0 0 1.75rem 0;
  max-width: 62ch;
}

/* Elegant list (no cards) */
.five-leaf-list {
  display: grid;
  gap: 1.05rem;
  margin-bottom: 1.5rem;
}

.five-leaf-item {
  padding-left: 1.1rem;
  position: relative;
}

.five-leaf-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mustard);
  box-shadow: 0 0 0 3px rgba(248, 200, 0, 0.18);
}

.five-leaf-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.15;
}

.five-leaf-desc {
  margin-top: 0.25rem;
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Link styling */
.five-leaf-feature .promise-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  border-bottom: 1px solid rgba(180, 130, 60, 0.28);
  padding-bottom: 2px;
  transition: gap var(--ease-mid), color var(--ease-fast), border-color var(--ease-fast);
}

.five-leaf-feature .promise-link:hover {
  gap: 1rem;
  color: var(--red-dark);
  border-color: rgba(179, 18, 23, 0.45);
}

/* Subtle editorial glow behind this section */
.vision-mission-section {
  position: relative;
}

.vision-mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 420px at 20% 15%, rgba(248, 200, 0, 0.08), rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.vision-mission-section .container {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .five-leaf-feature {
    grid-template-columns: 1fr;
    padding: 2.5rem 0;
  }

  .five-leaf-art {
    width: min(520px, 100%);
  }
}


/* =====================================================
   Our Promise — Full-bleed background + manifesto only
   Background image choice: images/3254626.png (moody + spacious).
   Golden accent: images/Generate_a_golden_2k_202602191942.jpeg (subtle watermark).
   ===================================================== */

.promise-hero {
  position: relative;
  padding: clamp(4.5rem, 9vh, 7rem) 0;
  overflow: hidden;
}

/* Full background */
.promise-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/3254626.png") center / cover no-repeat;
  filter: contrast(1.06) saturate(1.08) brightness(0.92);
  transform: scale(1.02);
}

/* Readability overlay */
.promise-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 30% 45%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55) 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
}

/* Golden separators (top + bottom) */
.promise-hero::before,
.promise-hero::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(248, 200, 0, 0) 0%,
      rgba(248, 200, 0, 0.55) 18%,
      rgba(248, 200, 0, 0.22) 50%,
      rgba(248, 200, 0, 0.55) 82%,
      rgba(248, 200, 0, 0) 100%);
  opacity: 0.75;
  z-index: 2;
}

.promise-hero::before {
  top: 2.25rem;
}

.promise-hero::after {
  bottom: 2.25rem;
}

/* Optional watermark crest (very subtle) */
.promise-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/Generate_a_golden_2k_202602191942.jpeg") center / 720px no-repeat;
  opacity: 0.055;
  mix-blend-mode: screen;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
}

/* Content */
.promise-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
}

.promise-hero-line {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 253, 245, 0.92);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
  margin: 0 auto 2rem;
}

.promise-hero-line span {
  color: rgba(248, 200, 0, 0.92);
  font-weight: 400;
}

.promise-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-white);
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 0.85rem 1.75rem;
  transition: background var(--ease-mid), color var(--ease-fast), border-color var(--ease-fast), gap var(--ease-mid);
  text-shadow: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.30);
}

.promise-hero-link:hover {
  gap: 1rem;
  background: transparent;
  color: var(--cream-white);
  border-color: var(--cream-white);
}

/* Mobile */
@media (max-width: 768px) {

  .promise-hero::before,
  .promise-hero::after {
    left: 5%;
    right: 5%;
  }

  .promise-hero::before {
    top: 1.75rem;
  }

  .promise-hero::after {
    bottom: 1.75rem;
  }
}


/* =====================================================
   Section dividers + Full-height Heritage + Promise background stretch
   ===================================================== */

/* Gold divider between sections (full-bleed, subtle) */
.section-gold-divider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 1px;
  background: linear-gradient(90deg,
      rgba(248, 200, 0, 0) 0%,
      rgba(248, 200, 0, 0.25) 6%,
      rgba(248, 200, 0, 0.55) 18%,
      rgba(248, 200, 0, 0.20) 50%,
      rgba(248, 200, 0, 0.55) 82%,
      rgba(248, 200, 0, 0.25) 94%,
      rgba(248, 200, 0, 0) 100%);
  opacity: 0.9;
}

/* Our Heritage — make the image truly full height */
.heritage-fullbleed {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.heritage-fullbleed .heritage-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  /* Increased scale to keep blurred edges hidden */
  filter: brightness(0.72) contrast(1.1) saturate(1.15) blur(1px);
}

.heritage-fullbleed .heritage-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

/* Promise hero — stretch to fill (no black letterbox) */
.promise-hero--contain {
  min-height: min(86vh, 760px);
}

.promise-hero--contain .promise-hero-bg {
  background-size: cover !important;
  /* was contain -> caused black end */
  background-position: center !important;
  background-color: transparent !important;
}

/* Slightly refine overlay darkness */
.promise-hero--contain .promise-hero-overlay {
  background:
    radial-gradient(1200px 700px at 50% 45%, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.48) 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.58)) !important;
}

/* Mobile height */
@media (max-width: 768px) {
  .heritage-fullbleed {
    min-height: 86vh;
  }

  .promise-hero--contain {
    min-height: 70vh;
  }
}

/* Center Promise text perfectly */
.promise-hero {
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  text-align: center;
  position: relative;
}

.promise-hero-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Make the text feel premium centered */
.promise-hero-line {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.promise-hero-link {
  display: inline-flex;
}


/* =====================================================
   Our Story: Video hero + Golden rule + Full-bleed Guardians
   ===================================================== */

.story-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.story-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.02) brightness(0.82);
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 28%,
      rgba(0, 0, 0, 0.15) 58%,
      rgba(0, 0, 0, 0.05) 78%);
  pointer-events: none;
}

.story-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  /* clears fixed header */
  max-width: 760px;
}

.story-hero-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.75);
}

.story-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-white);
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.85);
}

.story-hero-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(246, 231, 193, 0.78);
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
  max-width: 56ch;
}

.gold-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(248, 200, 0, 0), rgba(248, 200, 0, 0.95), rgba(248, 200, 0, 0));
  z-index: 3;
}

/* Full-bleed Guardians */
.guardians-fullbleed {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.guardians-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: contrast(1.08) saturate(1.02) brightness(0.92);
}

.guardians-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 55%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.36) 45%, rgba(0, 0, 0, 0.08) 80%, rgba(0, 0, 0, 0) 100%);
}

.guardians-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 7rem 0;
}

.guardians-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1.25rem;
}

.guardians-fullbleed h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.guardians-fullbleed p {
  color: rgba(246, 231, 193, 0.78);
  font-size: 0.95rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.9rem;
}

@media (max-width: 768px) {
  .story-hero {
    min-height: 640px;
    align-items: flex-end;
  }

  .story-hero-content {
    padding: 7.5rem 0 4.5rem;
    max-width: 92%;
  }

  .guardians-content {
    padding: 6rem 0;
  }

  .guardians-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.15) 100%);
  }
}


/* =====================================================
   Our Story Hero Layering Fix
   Ensures title + description sit above video & overlay
   ===================================================== */

.story-hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  isolation: isolate;
}

.story-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      rgba(0, 0, 0, 0.05) 85%);
}

.story-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 12vh;
}

.story-hero-title,
.story-hero-desc,
.story-hero-eyebrow {
  color: #f6f0e6;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.85);
}

.gold-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--mustard), transparent);
  z-index: 3;
}


/* =====================================================
   Fix: fade-in-up was never triggered in .story-hero
   (it only ran inside .hero or .section-padding)
   ===================================================== */
.story-hero .fade-in-up {
  animation: fadeInUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== Slider text: bigger + clearer ===== */

/* Darken the image behind the text (but not the whole slide) */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.48) 40%,
      rgba(0, 0, 0, 0.10) 70%,
      rgba(0, 0, 0, 0.00) 90%);
  pointer-events: none;
}

/* Ensure slide content sits above the overlay */
.slide-content {
  position: relative;
  z-index: 2;
}

/* Make type actually “hero” sized */
.slide-text h1,
.slide-text h2 {
  font-size: clamp(3.6rem, 6.5vw, 6.6rem);
  line-height: 1.02;
  margin-bottom: 1.2rem;
}

.slide-text p {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.7;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.90);
}


/* Center slide content by default */
.slide-content {
  justify-content: left;
  /* horizontal centering */
  text-align: left;
}

.slide-text {
  margin: 0;
}

.guardians-overlay {
  display: flex;
  justify-content: flex-end;
  /* push to right */
  align-items: center;
}

.guardians-content {
  max-width: 620px;
  text-align: left;
  margin-right: 5%;
}

/* =====================================================
   Our Story Hero: keep title block positioned on LEFT
   ===================================================== */
.story-hero {
  display: flex;
  align-items: center;
}

.story-hero-content {
  /* push the whole text block to the left side */
  margin-left: 5%;
  margin-right: auto;
  max-width: 720px;
  text-align: left;
}

@media (max-width:768px) {
  .story-hero-content {
    margin: 0 auto;
    text-align: center;
  }
}


/* =====================================================
   Etymology: signature background (override)
   ===================================================== */
.meaning-section {
  position: relative;
  padding: 11rem 0;
  background-image:
    linear-gradient(to right,
      rgba(16, 8, 4, 0.94) 0%,
      rgba(16, 8, 4, 0.90) 35%,
      rgba(16, 8, 4, 0.80) 55%,
      rgba(16, 8, 4, 0.45) 75%,
      rgba(16, 8, 4, 0.10) 90%),
    url('../images/etymology-signature.jpeg');

  background-size: cover;
  background-position: 75% center;
  background-attachment: fixed;
  text-align: left;
}

.meaning-section .overline {
  color: var(--mustard);
  letter-spacing: 0.25em;
}

.meaning-section h2 {
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.05;
  text-shadow:
    0 6px 32px rgba(0, 0, 0, 0.65),
    0 2px 8px rgba(0, 0, 0, 0.5);
}

.meaning-section p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0;
  text-shadow:
    0 6px 32px rgba(0, 0, 0, 0.65),
    0 2px 8px rgba(0, 0, 0, 0.5);
  /* left aligned block */
}


/* =====================================================
   Our Promise (5 Leaf) Page
   ===================================================== */

.promise-page-hero {
  min-height: 100vh;
  /* full height */
  display: flex;
  align-items: center;
  /* vertical centering */
  justify-content: flex-start;
  /* push content left */
  padding: 0;
  /* remove bottom padding bias */
  position: relative;
}

.promise-page-hero-bg {
  position: absolute;
  inset: 0;
}

.promise-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.12) saturate(1.05);
  transform: scale(1.03);
}

.promise-page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(8, 4, 2, 0.92) 0%,
      rgba(8, 4, 2, 0.82) 10%,
      rgba(8, 4, 2, 0.55) 25%,
      rgba(8, 4, 2, 0.25) 55%,
      rgba(8, 4, 2, 0.05) 85%,
      rgba(8, 4, 2, 0.00) 100%);
  pointer-events: none;
}

.promise-page-hero .container {
  position: relative;
  z-index: 2;
  margin-left: clamp(4rem, 8vw, 10rem);
  /* push block inward from edge */
  margin-right: auto;
  text-align: left;
}

.promise-page-hero .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1rem;
  display: block;
}

.promise-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-white);
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.promise-page-hero p {
  color: rgba(255, 253, 245, 0.78);
  max-width: 520px;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.85;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.promise-page-page .gold-rule {
  display: none !important;
}

/* Enable fade-in-up inside Our Promise hero */
.promise-page-hero .fade-in-up {
  animation: fadeInUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Optional: tighten 5-leaf section header */
.five-leaf-section .section-title {
  margin-bottom: 0.75rem;
}

.five-leaf-section .section-lede {
  max-width: 70ch;
  color: var(--text-muted);
  margin: 0 auto 3.5rem;
  line-height: 1.85;
  font-size: 0.92rem;
}

/* =====================================================
   Collection Hero (Image) — matches Heritage/Promise
   ===================================================== */
.collection-page-hero.collection-hero-image {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.collection-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.collection-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.12) saturate(1.05);
  transform: scale(1.03);
  position: relative;
  z-index: 0;
}

.collection-page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(8, 4, 2, 0.92) 0%,
      rgba(8, 4, 2, 0.82) 18%,
      rgba(8, 4, 2, 0.55) 38%,
      rgba(8, 4, 2, 0.25) 60%,
      rgba(8, 4, 2, 0.05) 85%,
      rgba(8, 4, 2, 0.00) 100%);
  pointer-events: none;
  z-index: 1;
}

.collection-page-hero-content {
  position: relative;
  z-index: 2;

}

.collection-page-hero .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1.5rem;
  display: block;
}

.collection-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.collection-page-hero p {
  color: rgba(246, 231, 193, 0.88);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 520px;
}

/* Enable fade-in-up inside Collection hero */
.collection-page-hero .fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}



/* ── Partner Hero (Full Height) ── */
.stockist-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: none;
  overflow: hidden;
}

.stockist-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Wide_cinematic_shot_202602200852.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.stockist-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(20, 10, 2, 0.92) 0%,
      rgba(20, 10, 2, 0.88) 25%,
      rgba(20, 10, 2, 0.75) 50%,
      rgba(20, 10, 2, 0.45) 75%,
      rgba(20, 10, 2, 0.18) 100%);
  z-index: 1;
}

.stockist-hero .container {
  position: relative;
  z-index: 2;
}

.stockist-hero .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 1.5rem;
  display: block;
}

.stockist-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.stockist-hero p {
  color: rgba(246, 231, 193, 0.82);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 520px;
}

/* Enable fade-in-up inside Collection hero */
.stockist-hero .fade-in-up {
  animation: fadeInUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* =====================================================
   Collection Page — Full Product Grid
   ===================================================== */

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;

  background: var(--border);

  margin: 0;
  /* remove outer spacing */
  padding: 0;
  /* remove vertical bands */
}

.products-full-grid>* {
  background: var(--cream-white);
}

.product-full-card {
  background: var(--cream-white);
  border: 1px solid var(--border);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  transition: background var(--ease-mid);
  position: relative;
  overflow: hidden;
}

.product-full-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--mustard);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-full-card:hover {
  background: var(--cream-light);
}

.product-full-card:hover::after {
  transform: scaleY(1);
}

.product-full-card:hover .pfc-img {
  transform: scale(1.05);
}

.pfc-img-wrap {
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pfc-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pfc-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(180, 130, 60, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pfc-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.pfc-desc {
  color: var(--text-body);
  font-size: 0.87rem;
  line-height: 1.8;
}

.pfc-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pfc-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(179, 18, 23, 0.3);
  padding: 0.4rem 0.9rem;
}

.btn-buy {
  padding: 0.6rem 1.6rem;
  font-size: 0.65rem;
}

@media (max-width:768px) {
  .products-full-grid {
    grid-template-columns: 1fr;
  }

  .product-full-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .pfc-img-wrap {
    height: 200px;
  }
}


/* =====================================================
   MOBILE RESPONSIVENESS — Comprehensive Overrides
   Applied at 768px and 480px breakpoints
   ===================================================== */

/* ── Fix: iOS Safari does not support background-attachment:fixed ── */
@media (max-width: 1024px) {

  .meaning-section,
  .bg-meaning {
    background-attachment: scroll !important;
  }
}

/* ── 768px: Primary mobile breakpoint ── */
@media (max-width: 768px) {

  /* General section spacing */
  .padding-lg,
  .section-padding {
    padding: 3.5rem 0;
  }

  /* ── Header / Nav ── */
  .logo img {
    height: 52px;
  }

  .mobile-toggle {
    padding: 0.5rem;
    /* larger tap target */
  }

  /* ── Hero video panel ── */
  .hero-logo {
    width: clamp(200px, 70vw, 320px) !important;
    margin-bottom: 0.75rem;
  }

  .hero-headline {
    font-size: clamp(1.5rem, 5.5vw, 2.4rem);
  }

  .hero-panel {
    padding: clamp(1rem, 4vw, 1.5rem);
    gap: 0.75rem;
    max-width: 96vw;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem !important;
  }

  .hero-actions .btn {
    text-align: center;
    width: 100%;
  }

  /* ── Full-bleed sections: Heritage, Collection, Stockist ── */
  .heritage-fullbleed {
    min-height: 75vh !important;
  }

  .collection-fullbleed {
    min-height: 75vh !important;
  }

  .stockist-fullbleed {
    min-height: auto;
  }

  .stockist-overlay {
    padding: 5rem 0;
  }

  /* ── Heritage / Collection copy overlay ── */
  .heritage-overlay,
  .collection-overlay {
    padding: 3.5rem 6% !important;
    align-items: flex-end !important;
    padding-bottom: 4rem !important;
  }

  .heritage-content h2,
  .collection-content h2 {
    font-size: clamp(2.2rem, 7vw, 3.2rem) !important;
  }

  .heritage-content p,
  .collection-content p {
    font-size: 0.92rem !important;
  }

  /* ── Stats bar ── */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    /* already handled; ensure sub-480 overrides work */
  }

  /* ── Vision / Mission section ── */
  .five-leaf-section {
    padding: 4rem 0;
  }

  .leaf-promise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leaf-promise-card:last-child {
    grid-column: 1 / -1;
  }

  /* ── Five-leaf feature (homepage) ── */
  .five-leaf-feature {
    grid-template-columns: 1fr;
    padding: 2rem 0;
    gap: 2rem;
  }

  .five-leaf-art {
    width: min(340px, 86vw) !important;
  }

  /* ── Promise hero ── */
  .promise-page-hero .container {
    margin-left: 0 !important;
    padding: 0 1.5rem;
    text-align: center;
  }

  .promise-page-hero-bg::after {
    background: linear-gradient(to bottom,
        rgba(8, 4, 2, 0.82) 0%,
        rgba(8, 4, 2, 0.60) 50%,
        rgba(8, 4, 2, 0.30) 100%) !important;
  }

  .promise-page-hero h1 {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
  }

  .promise-page-hero p {
    max-width: 100%;
    margin-inline: auto;
  }

  /* ── Collection page hero ── */
  .collection-page-hero-content {
    padding: 0 1.5rem;
    text-align: center;
  }

  .collection-page-hero-bg::after {
    background: linear-gradient(to bottom,
        rgba(8, 4, 2, 0.82) 0%,
        rgba(8, 4, 2, 0.55) 50%,
        rgba(8, 4, 2, 0.20) 100%) !important;
  }

  .collection-page-hero h1 {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
  }

  .collection-page-hero p {
    max-width: 100%;
    margin-inline: auto;
  }

  /* ── Story hero ── */
  .story-hero-content {
    padding-top: 8vh !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
  }

  .story-hero {
    align-items: center;
  }

  /* ── Stockist hero ── */
  .stockist-hero .container {
    text-align: center;
  }

  .stockist-hero h1 {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
  }

  .stockist-hero::after {
    background: linear-gradient(to bottom,
        rgba(20, 10, 2, 0.82) 0%,
        rgba(20, 10, 2, 0.68) 55%,
        rgba(20, 10, 2, 0.45) 100%) !important;
  }

  .stockist-hero p {
    max-width: 100%;
    margin-inline: auto;
  }

  /* ── Slide text ── */
  .slide-text h1,
  .slide-text h2 {
    font-size: clamp(2.2rem, 7vw, 3.6rem);
  }

  .slide-text p {
    font-size: clamp(0.92rem, 3.2vw, 1.1rem);
    max-width: 100%;
  }

  /* ── Legacy section ── */
  .legacy-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .legacy-image-col {
    height: 260px;
  }

  .legacy-text-col {
    padding: 2.5rem 1.5rem;
  }

  /* ── Guardians ── */
  .guardians-content {
    text-align: center;
    margin-right: 0;
    max-width: 92%;
    margin-inline: auto;
  }

  .guardians-overlay {
    justify-content: center !important;
    padding: 0 5%;
  }

  /* ── Meaning / etymology section ── */
  .meaning-section {
    padding: 5rem 0;
    text-align: center;
    background-position: center center !important;
    background-size: cover !important;
  }

  .meaning-section h2 {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .meaning-section p {
    max-width: 100%;
  }

  /* ── Two-col story rows ── */
  .story-two-col,
  .story-two-col.reverse {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .story-text {
    padding: 2.5rem 6%;
  }

  .story-img-wrap {
    height: 280px !important;
  }

  /* ── Collection page product cards ── */
  .products-full-grid {
    grid-template-columns: 1fr;
  }

  .product-full-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .pfc-actions {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .pfc-img-wrap {
    height: 200px;
  }

  .pfc-number {
    font-size: 3rem;
  }

  .pfc-name {
    font-size: 1.6rem;
  }

  /* ── Footer ── */
  .site-footer .grid.grid-3-col {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .footer-manifesto {
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand-logo {
    display: flex;
    justify-content: center;
  }

  .footer-brand-logo img.hero-logo {
    width: clamp(180px, 55vw, 280px) !important;
    margin-inline: auto;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-contact-actions {
    align-items: center;
  }

  /* ── Section header (title + view all) ── */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* ── Buttons ── */
  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.68rem;
  }
}

/* ── 480px: Small phones (iPhone SE etc.) ── */
@media (max-width: 480px) {

  /* Section spacing */
  .padding-lg,
  .section-padding {
    padding: 2.75rem 0;
  }

  /* Stats: single column */
  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .stat-item {
    border-right: none !important;
  }

  /* Five-leaf leaf grid: single column */
  .leaf-promise-grid {
    grid-template-columns: 1fr !important;
  }

  .leaf-promise-card:last-child {
    grid-column: auto !important;
  }

  /* Products grid: single column */
  .products-grid {
    grid-template-columns: 1fr !important;
  }

  /* Slide heading: prevent overflow on tiny screens */
  .slide-text h1,
  .slide-text h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  /* Heritage / Collection full-bleed: tighten padding */
  .heritage-overlay,
  .collection-overlay {
    padding: 2.5rem 5% !important;
    padding-bottom: 3rem !important;
  }

  /* Story img wrap */
  .story-img-wrap {
    height: 220px !important;
  }

  /* Stockist overlay padding */
  .stockist-overlay {
    padding: 3.5rem 0;
  }

  /* Product full card image */
  .pfc-img-wrap {
    height: 160px;
  }

  /* General large number */
  .pfc-number {
    font-size: 2.5rem;
  }

  /* Heading sizes */
  /* Clean up hero overrides for small screens to ensure full-width video */
  .hero.hero-video {
    width: 100vw !important;
    position: relative !important;
    left: 0 !important;
    margin-left: 0 !important;
    height: 100vh !important;
  }

  .hero-video-wrap {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
  }


  .heading-xl {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
}