/* =============================================
   LOTUS BLEU RENTALS — Brand CSS v2
   Fonts: Sorts Mill Goudy + Josefin Sans (Alta proxy) + Glacial Indifference
   Colors: #94765f #c1aa94 #627769 #393939 #fff
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy:ital@0;1&family=Josefin+Sans:wght@100;300;400;600&display=swap');

/* Glacial Indifference — loaded from fonts folder */
@font-face {
  font-family: 'GlacialIndifference';
  src: url('../fonts/GlacialIndifference-Regular.otf') format('opentype'),
       url('https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMxRS2M.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GlacialIndifference';
  src: url('../fonts/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- CSS Variables ---- */
:root {
  --gold:      #94765f;
  --sand:      #c1aa94;
  --sage:      #627769;
  --charcoal:  #393939;
  --off-white: #f7f4f0;
  --white:     #ffffff;
  --black:     #1a1a1a;

  /* Exact Canva font stack */
  --font-display: 'Sorts Mill Goudy', Georgia, serif;
  --font-body:    'GlacialIndifference', 'Josefin Sans', 'Gill Sans', sans-serif;
  --font-accent:  'Josefin Sans', 'GlacialIndifference', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 8px 40px rgba(57,57,57,0.12);
  --shadow-card: 0 2px 20px rgba(57,57,57,0.08);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ---- Typography — Sorts Mill Goudy for all headings ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.85rem); }
h4 { font-size: 1.1rem; font-weight: 400; }
p  { font-size: 1rem; line-height: 1.8; color: var(--charcoal); }

/* Eyebrow — Josefin Sans (Alta proxy): geometric, spaced caps */
.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title  { text-align: center; margin-bottom: 1rem; }
.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
  color: #666;
  font-size: 1.05rem;
}

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section   { padding: 6rem 0; }
.section--dark  { background: var(--charcoal); color: var(--white); }
.section--dark p, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--sand  { background: var(--off-white); }
.section--sage  { background: var(--sage); color: var(--white); }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(22, 20, 18, 0.97);
  backdrop-filter: blur(14px);
  padding: 0.85rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__logo { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo-mark { width: 56px; height: 35px; flex-shrink: 0; }
.footer__logo-mark { width: 42px; height: 38px; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-name {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--sand);
  text-transform: uppercase;
}
.nav__logo-sub {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(193,170,148,0.55);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--sand);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--sand); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--sand); }
.nav__links a.active::after { width: 100%; }
.nav__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: transparent !important; color: var(--sand) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  font-weight: 400;
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--sand); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.nav__mobile-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid currentColor;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn--gold   { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: transparent; color: var(--gold); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn--sand { background: var(--sand); color: var(--charcoal); border-color: var(--sand); }
.btn--sand:hover { background: transparent; color: var(--sand); }

/* ---- Hero — Video Background ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slow playback via CSS filter — actual speed set in JS */
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,17,14,0.75) 0%,
    rgba(20,17,14,0.5) 50%,
    rgba(98,119,105,0.3) 100%
  );
}
.hero__shimmer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sand), var(--gold), var(--sand), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}
.hero__content h1 {
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
}
.hero__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.hero__btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(193,170,148,0.7), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0%, 100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(1.3); opacity: 1; } }

/* ---- Page Hero (interior pages) ---- */
.page-hero {
  height: 52vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,17,14,0.88) 0%, rgba(20,17,14,0.3) 60%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.page-hero__content h1 { color: var(--white); }

/* ---- Cards ---- */
.card-grid { display: grid; gap: 2rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(148,118,95,0.15);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}
.card:hover { border-color: var(--sand); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.card__icon {
  width: 52px; height: 52px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.4rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--charcoal); }
.card p  { font-size: 0.93rem; color: #777; line-height: 1.75; }

/* ---- Split Sections ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.split__img { position: relative; overflow: hidden; }
.split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.split__img:hover img { transform: scale(1.03); }
.split__img video { width: 100%; height: 100%; object-fit: cover; }
.split__content { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.split--reverse .split__img     { order: 2; }
.split--reverse .split__content { order: 1; }

/* ---- Video Section (full-width with loop bg) ---- */
.video-section {
  position: relative;
  overflow: hidden;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,17,14,0.58);
}
.video-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 2rem;
}
.video-section__content h2 { color: var(--white); }

/* Play button */
.video-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  margin: 2rem auto 0;
}
.video-play-btn:hover { background: rgba(148,118,95,0.55); border-color: var(--sand); transform: scale(1.08); }
.video-play-btn svg { margin-left: 4px; }

/* ---- Stats Bar ---- */
.stats-bar { background: var(--charcoal); padding: 3rem 0; }
.stats-bar__inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat { text-align: center; }
.stat__number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--sand);
  display: block;
  font-weight: 400;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

/* ---- Comparison Table ---- */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 1.2rem 1rem;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.comparison-table th:first-child { background: #2c2c2c; text-align: left; }
.comparison-table th.col-elite   { background: #4a3d32; }
.comparison-table th.col-hybrid  { background: #5a4a38; }
.comparison-table th.col-digital { background: #394d42; }
.comparison-table th.col-partnership { background: #222; }
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(148,118,95,0.12);
  vertical-align: top;
  line-height: 1.5;
  font-size: 0.88rem;
}
.comparison-table td:first-child {
  text-align: left;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--off-white);
}
.comparison-table tr:nth-child(even) td { background: #faf8f6; }
.comparison-table tr:nth-child(even) td:first-child { background: #f0ede8; }
.comparison-table tr:hover td { background: rgba(193,170,148,0.08); }

/* ---- Testimonials ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--white);
  padding: 2.2rem;
  border-left: 3px solid var(--sand);
  box-shadow: var(--shadow-card);
}
.testimonial__stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.testimonial__author {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial__type { font-size: 0.7rem; color: #aaa; margin-top: 0.2rem; }

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--sand);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.process-step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}
.process-step h4 {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.process-step p { font-size: 0.88rem; color: #777; }

/* ---- Partner Grid ---- */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(148,118,95,0.15); border: 1px solid rgba(148,118,95,0.15); }
.partner-item { background: var(--white); padding: 2.5rem 2rem; text-align: center; transition: var(--transition); }
.partner-item:hover { background: var(--off-white); }
.partner-item__icon { font-size: 2rem; margin-bottom: 1rem; color: var(--sage); }
.partner-item h4 {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.partner-item p { font-size: 0.82rem; color: #888; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--charcoal);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sand), var(--gold), var(--sand), transparent);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-banner p  { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; font-size: 1.05rem; font-family: var(--font-display); font-style: italic; }

/* ---- Footer ---- */
.footer { background: #111; color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 1rem; color: rgba(255,255,255,0.45); }
.footer__col h5 {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--sand); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
}

/* ---- Scroll Reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Utility ---- */
.divider { width: 48px; height: 1px; background: var(--sand); margin: 1.5rem auto; }
.divider--left { margin-left: 0; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.checklist li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ---- Contact Form ---- */
.contact-form { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(148,118,95,0.3);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav__links    { display: none; }
  .nav__hamburger { display: flex; }
  .card-grid--3  { grid-template-columns: 1fr; }
  .card-grid--2  { grid-template-columns: 1fr; }
  .card-grid--4  { grid-template-columns: 1fr; }
  .split         { grid-template-columns: 1fr; }
  .split--reverse .split__img    { order: 0; }
  .split--reverse .split__content { order: 0; }
  .split__content { padding: 3rem 1.5rem; }
  .split__img    { height: 280px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .partner-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__inner { flex-direction: column; gap: 1.5rem; }
  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .hero__btns    { flex-direction: column; align-items: center; }
  .section       { padding: 4rem 0; }
  .form-row      { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.78rem; }
  .comparison-table td, .comparison-table th { padding: 0.7rem 0.5rem; }
  .video-section { height: 420px; }
}

/* =============================================
   OUR STORY SLIDESHOW — Pure CSS, no JS required
   5 slides × 6s each = 30s total loop
   ============================================= */

.story-slideshow {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #08080a;
}

/* Each slide stacked, uses CSS animation to fade in/out in sequence */
.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: ssLoop 30s infinite;
  animation-timing-function: ease-in-out;
}

/* Stagger each slide by 6s */
.ss-1 { animation-delay: 0s;   }
.ss-2 { animation-delay: 6s;   }
.ss-3 { animation-delay: 12s;  }
.ss-4 { animation-delay: 18s;  }
.ss-5 { animation-delay: 24s;  }

/* Fade in, hold, fade out — each slide gets 6s out of 30s total */
@keyframes ssLoop {
  0%    { opacity: 0; z-index: 2; }
  4%    { opacity: 1; z-index: 2; }
  18%   { opacity: 1; z-index: 2; }
  22%   { opacity: 0; z-index: 1; }
  100%  { opacity: 0; z-index: 1; }
}

/* Background image — Ken Burns slow zoom */
.story-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: ssZoom 30s infinite;
  animation-timing-function: ease-out;
}

.ss-1 .story-slide__bg { animation-delay: 0s;   }
.ss-2 .story-slide__bg { animation-delay: 6s;   }
.ss-3 .story-slide__bg { animation-delay: 12s;  }
.ss-4 .story-slide__bg { animation-delay: 18s;  }
.ss-5 .story-slide__bg { animation-delay: 24s;  }

@keyframes ssZoom {
  0%    { transform: scale(1.08); }
  22%   { transform: scale(1.0);  }
  100%  { transform: scale(1.0);  }
}

/* Dark gradient overlay */
.story-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(8,8,10,0.84) 0%,
    rgba(8,8,10,0.5)  55%,
    rgba(98,119,105,0.25) 100%
  );
}

/* Content — left-aligned, fades in after bg appears */
.story-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  max-width: 700px;
  animation: ssContent 30s infinite;
  animation-timing-function: ease-out;
  opacity: 0;
}

.ss-1 .story-slide__content { animation-delay: 0.6s;   }
.ss-2 .story-slide__content { animation-delay: 6.6s;   }
.ss-3 .story-slide__content { animation-delay: 12.6s;  }
.ss-4 .story-slide__content { animation-delay: 18.6s;  }
.ss-5 .story-slide__content { animation-delay: 24.6s;  }

@keyframes ssContent {
  0%    { opacity: 0; transform: translateY(22px); }
  6%    { opacity: 1; transform: translateY(0);    }
  18%   { opacity: 1; transform: translateY(0);    }
  22%   { opacity: 0; transform: translateY(-8px); }
  100%  { opacity: 0; transform: translateY(22px); }
}

.story-slide__content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}

.story-slide__content p {
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  line-height: 1.85;
  max-width: 520px;
}

/* Dot indicators — animated to show which slide is active */
.story-dots-display {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 20;
  pointer-events: none;
}

.sd {
  display: block;
  height: 2px;
  width: 28px;
  background: rgba(255,255,255,0.22);
  transition: background 0.4s ease;
  animation: sdActive 30s infinite;
}

.sd-1 { animation-delay: 0s;   }
.sd-2 { animation-delay: 6s;   }
.sd-3 { animation-delay: 12s;  }
.sd-4 { animation-delay: 18s;  }
.sd-5 { animation-delay: 24s;  }

@keyframes sdActive {
  0%   { background: var(--sand); width: 44px; }
  20%  { background: var(--sand); width: 44px; }
  22%  { background: rgba(255,255,255,0.22); width: 28px; }
  100% { background: rgba(255,255,255,0.22); width: 28px; }
}

/* Gold progress bar that fills each 6s */
.story-progress-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sand));
  z-index: 20;
  animation: ssProgress 6s infinite linear;
}

@keyframes ssProgress {
  0%   { width: 0%; }
  100% { width: 100%; }
}

@media (max-width: 768px) {
  .story-slideshow   { height: 90vh; min-height: 520px; }
  .story-slide__content { padding: 0 1.8rem; max-width: 100%; }
}

/* ---- Official Logo PNG (nav + footer) ---- */
.nav__logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}
.footer .nav__logo-img,
.footer__brand .nav__logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.nav__logo { gap: 0; }

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: rgba(20, 18, 15, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(193,170,148,0.2);
  padding: 1.2rem 2rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border: 1px solid;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn--accept {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.cookie-btn--accept:hover {
  background: transparent;
  color: var(--sand);
  border-color: var(--sand);
}
.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.2);
}
.cookie-btn--decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
  .nav__logo-img { width: 65px; height: 65px; }
}
