/*
  FILE: home.css
  PAGE: Homepage
  ══════════════════════════════════════════════════
  PURPOSE:
  Cinematic luxury styles for the PLUS33 homepage.
  Completely self-contained — does not override or
  reference navbar.css or footer.css styles.

  SECTIONS:
  1.  CSS Custom Properties (local overrides)
  2.  Page Shell
  3.  Ambient Overlays (grain, vignette)
  4.  Hero Section
  5.  Hero Background & Overlays
  6.  Hero Content
  7.  Hero Animations
  8.  Steam Particles
  9.  Hero Scroll Indicator
  10. Shared Button Components
  11. Brand Intro Section — Layout
  12. Brand Intro Section — Visual Column
  13. Brand Intro Section — Copy Column
  14. Feature Cards Grid
  15. Marquee Strip
  16. Scroll-reveal Animations
  17. Responsive — Tablet (max 1024px)
  18. Responsive — Mobile L (max 768px)
  19. Responsive — Mobile S (max 480px)
  20. Reduced Motion

  DEVELOPED BY : MIRRO
  CODED BY     : SIVASURYA
  ══════════════════════════════════════════════════
*/

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


/* ═══════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES — LOCAL PAGE TOKENS
══════════════════════════════════════════════════════════ */

:root {
  /* Brand palette (mirrors global, kept explicit for isolation) */
  --h-navy: #203e5f;
  /* Medium Steel Navy */
  --h-navy-deep: #1a2634;
  /* Deep Dark Navy */
  --h-cream: #fee5b1;
  /* Beige / Rich Cream */
  --h-copper: #ffcc00;
  /* Golden Yellow / Gold */
  --h-copper-light: #ffd633;
  /* Lighter Gold */
  --h-gold: #ffcc00;
  /* Golden Yellow / Gold */
  --h-gold-pale: rgba(255, 204, 0, 0.08);
  --h-espresso: #2C1A11;
  --h-walnut: #4A2C1A;

  /* Typography */
  --h-font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --h-font-sans: 'Manrope', 'Inter', sans-serif;
  --h-font-ui: 'Manrope', sans-serif;

  /* Easing curves */
  --h-ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --h-ease-cinema: cubic-bezier(0.19, 1, 0.22, 1);
  --h-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Hero overlay intensities */
  --h-overlay-base: rgba(26, 38, 52, 0.52);
  /* Using #1a2634 as rgb(26,38,52) */
  --h-overlay-warm: rgba(20, 10, 5, 0.28);

  /* Spacing */
  --h-s1: 8px;
  --h-s2: 16px;
  --h-s3: 24px;
  --h-s4: 32px;
  --h-s5: 48px;
  --h-s6: 64px;
  --h-s7: 96px;
  --h-s8: 128px;
}


/* ═══════════════════════════════════════════════════════════
   2. PAGE SHELL
══════════════════════════════════════════════════════════ */

.home-page {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background: var(--h-navy-deep);
  color: var(--h-cream);
  font-family: var(--h-font-sans);
}


/* ═══════════════════════════════════════════════════════════
   3. AMBIENT OVERLAYS
══════════════════════════════════════════════════════════ */

/* Film grain texture — fixed, ultra-subtle */
.home-grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.90' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  opacity: 0.032;
  mix-blend-mode: overlay;
}

/* Vignette — soft edge darkening */
.home-vignette {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(3, 8, 16, 0.45) 100%);
}


/* ═══════════════════════════════════════════════════════════
   4. HERO SECTION
══════════════════════════════════════════════════════════ */

.home-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--h-navy-deep);
}

/* Cinematic fade blend — hero dissolves into manifesto section deep navy */
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 38, 52, 0.30) 30%,
    rgba(26, 38, 52, 0.72) 60%,
    rgba(26, 38, 52, 0.96) 85%,
    var(--h-navy-deep) 100%
  );
  z-index: 5;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════
   5. HERO BACKGROUND & OVERLAYS
══════════════════════════════════════════════════════════ */

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: home-hero-pan 40s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes home-hero-pan {
  0% {
    transform: scale(1.04) translate(0, 0);
  }

  100% {
    transform: scale(1.10) translate(-1.5%, -1%);
  }
}

/* Base dark overlay — matte black veil */
.home-hero__overlay--base {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(3, 8, 16, 0.70) 0%,
      rgba(3, 8, 16, 0.42) 55%,
      rgba(3, 8, 16, 0.18) 100%),
    linear-gradient(to bottom,
      rgba(3, 8, 16, 0.20) 0%,
      transparent 40%,
      rgba(3, 8, 16, 0.68) 100%);
  z-index: 1;
}

/* Radial vignette — cinematic edge burn */
.home-hero__overlay--vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 45%,
      transparent 30%,
      rgba(3, 8, 16, 0.55) 80%,
      rgba(3, 8, 16, 0.80) 100%);
  z-index: 2;
}

/* Subtle warm grain on image */
.home-hero__overlay--grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: overlay;
}

/* Ambient atmospheric orbs — soft warm glow */
.home-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(80px);
}

.home-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: home-orb-drift 18s ease-in-out infinite alternate;
}

.home-hero__orb--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 164, 107, 0.12) 0%, transparent 70%);
  bottom: 80px;
  right: -80px;
  animation: home-orb-drift 24s ease-in-out infinite alternate-reverse;
}

@keyframes home-orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 60px) scale(1.12);
  }

  100% {
    transform: translate(-30px, 20px) scale(0.92);
  }
}


/* ═══════════════════════════════════════════════════════════
   6. HERO CONTENT
══════════════════════════════════════════════════════════ */

.home-hero__content {
  position: relative;
  z-index: 10;
  padding-top: 80px;
  /* offset for fixed navbar */
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* ── Small Label ── */
.home-hero__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.home-hero__label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--h-copper) 0%, var(--h-gold) 100%);
  flex-shrink: 0;
}

.home-hero__label-line--right {
  display: none;
}

.home-hero__label-text {
  font-family: var(--h-font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  /* Made bold for high readability */
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--h-navy);
  /* Premium brand dark blue */
}

/* ── Headline ── */
.home-hero__headline {
  font-family: var(--h-font-serif);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--h-cream);
  margin: 0 0 28px;
  max-width: 760px;
}

.home-hero__headline-em {
  font-style: italic;
  font-weight: 300;
  color: transparent;
  background: linear-gradient(135deg, var(--h-gold) 0%, var(--h-copper-light) 60%, var(--h-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
}

/* ── Subtext ── */
.home-hero__sub {
  font-family: var(--h-font-sans);
  font-size: 1.05rem;
  font-weight: 200;
  line-height: 1.85;
  color: rgba(245, 241, 234, 0.68);
  max-width: 520px;
  margin: 0 0 44px;
  letter-spacing: 0.01em;
}

/* ── CTA Actions ── */
.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ── Micro Tags ── */
.home-hero__tags {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero__tag {
  font-family: var(--h-font-ui);
  font-size: 0.60rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.38);
  transition: color 0.5s var(--h-ease-luxury);
}

.home-hero__tag:hover {
  color: rgba(200, 164, 107, 0.70);
}

.home-hero__tag-dot {
  color: rgba(184, 115, 51, 0.30);
  font-size: 1rem;
}


/* ═══════════════════════════════════════════════════════════
   7. HERO ANIMATIONS — Staggered entrance
══════════════════════════════════════════════════════════ */

.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.hero-reveal--1 {
  animation: home-hero-enter 1.2s var(--h-ease-cinema) 0.30s forwards;
}

.hero-reveal--2 {
  animation: home-hero-enter 1.4s var(--h-ease-cinema) 0.55s forwards;
}

.hero-reveal--3 {
  animation: home-hero-enter 1.2s var(--h-ease-cinema) 0.80s forwards;
}

.hero-reveal--4 {
  animation: home-hero-enter 1.0s var(--h-ease-cinema) 1.05s forwards;
}

.hero-reveal--5 {
  animation: home-hero-enter 1.0s var(--h-ease-cinema) 1.25s forwards;
}

@keyframes home-hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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


/* ═══════════════════════════════════════════════════════════
   8. STEAM PARTICLES
══════════════════════════════════════════════════════════ */

.home-hero__steam {
  position: absolute;
  bottom: 15%;
  right: 12%;
  z-index: 4;
  pointer-events: none;
}

.steam-particle {
  position: absolute;
  bottom: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(245, 241, 234, 0.15), transparent);
  animation: steam-rise 4s ease-in-out infinite;
}

.steam-particle--1 {
  left: 0px;
  height: 80px;
  animation-delay: 0s;
  animation-duration: 4.5s;
}

.steam-particle--2 {
  left: 12px;
  height: 60px;
  animation-delay: 1.5s;
  animation-duration: 3.8s;
}

.steam-particle--3 {
  left: 24px;
  height: 70px;
  animation-delay: 0.8s;
  animation-duration: 5s;
}

@keyframes steam-rise {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100px) scaleX(1.6);
    opacity: 0;
  }
}


/* ═══════════════════════════════════════════════════════════
   9. HERO SCROLL INDICATOR
══════════════════════════════════════════════════════════ */

.home-hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.home-hero__scroll-track {
  width: 1px;
  height: 56px;
  background: rgba(245, 241, 234, 0.12);
  position: relative;
  overflow: hidden;
}

.home-hero__scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, var(--h-copper), transparent);
  animation: scroll-thumb 2.8s var(--h-ease-luxury) infinite;
}

@keyframes scroll-thumb {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateY(200%);
    opacity: 0;
  }
}

.home-hero__scroll-label {
  font-family: var(--h-font-ui);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.30);
  writing-mode: vertical-rl;
}


/* ═══════════════════════════════════════════════════════════
   10. SHARED BUTTON COMPONENTS
══════════════════════════════════════════════════════════ */

/* Base button */
.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--h-font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.7s var(--h-ease-luxury);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.home-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.6s var(--h-ease-cinema);
}

.home-btn:hover svg {
  transform: translateX(5px);
}

/* Shine sweep on hover */
.home-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.10) 40%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0.10) 60%,
      transparent 100%);
  transform: translateX(-150%);
  transition: transform 0.75s var(--h-ease-cinema);
}

.home-btn:hover::after {
  transform: translateX(150%);
}

/* Glass button — hero primary */
.home-btn--glass {
  background: rgba(26, 38, 52, 0.85);
  /* Premium Deep Dark Navy background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--h-copper);
  /* Solid Gold border */
  color: var(--h-cream);
  padding: 18px 36px;
  border-radius: 2px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(255, 204, 0, 0.1),
    /* Subtle gold glow shadow */
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-btn--glass:hover {
  background: var(--h-navy);
  /* Transitions to Medium Steel Navy */
  border-color: var(--h-copper-light);
  /* Brighter Gold border */
  color: var(--h-copper);
  /* Rich Gold text glow */
  transform: translateY(-3px);
  box-shadow:
    0 10px 40px rgba(184, 115, 51, 0.3),
    0 6px 20px rgba(255, 204, 0, 0.2),
    /* Expanded gold shadow glow */
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Ghost button — hero secondary */
.home-btn--ghost {
  background: rgba(26, 38, 52, 0.3);
  /* Translucent navy wash */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 204, 0, 0.35);
  /* Muted gold border */
  color: rgba(254, 229, 177, 0.75);
  /* Soft gold text */
  padding: 18px 36px;
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.home-btn--ghost:hover {
  background: rgba(26, 38, 52, 0.7);
  /* Deepens to darker navy wash */
  border-color: var(--h-copper);
  /* Solid premium Gold border */
  color: var(--h-copper);
  /* Vibrant Gold text */
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(255, 204, 0, 0.1);
}

/* Copper button — intro CTA */
.home-btn--copper {
  background: linear-gradient(135deg, var(--h-copper) 0%, #9D5E28 50%, var(--h-copper) 100%);
  background-size: 200% 100%;
  background-position: left center;
  color: #fff;
  padding: 18px 40px;
  border-radius: 2px;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.22),
    0 8px 24px rgba(184, 115, 51, 0.24);
}

.home-btn--copper:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow:
    0 8px 0 rgba(0, 0, 0, 0.18),
    0 16px 36px rgba(184, 115, 51, 0.32);
}


/* ═══════════════════════════════════════════════════════════
   11. BRAND INTRO — LAYOUT
══════════════════════════════════════════════════════════ */

.home-intro {
  background: var(--h-navy);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* Soft ambient copper glow at boundary — continues the hero fade blend */
.home-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(184, 115, 51, 0.08) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.home-intro__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--h-s8) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}


/* ═══════════════════════════════════════════════════════════
   12. BRAND INTRO — VISUAL COLUMN
══════════════════════════════════════════════════════════ */

.home-intro__visuals {
  position: relative;
  height: 640px;
}

/* Primary large image */
.home-intro__img-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.30);
}

.home-intro__img-primary .home-intro__img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.88) sepia(0.08);
  transition: transform 1.8s var(--h-ease-luxury), filter 1.8s var(--h-ease-luxury);
}

.home-intro__img-primary:hover .home-intro__img-el {
  transform: scale(1.04);
  filter: saturate(0.90) brightness(0.95) sepia(0.05);
}

.home-intro__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      transparent 50%,
      rgba(3, 8, 16, 0.35) 100%);
  pointer-events: none;
}

/* Accent floating image — bottom right offset */
.home-intro__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.50),
    0 0 0 1px rgba(200, 164, 107, 0.15);
  border: 1px solid rgba(200, 164, 107, 0.10);
}

.home-intro__img-accent .home-intro__img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.70) brightness(0.80) sepia(0.10);
  transition: transform 1.8s var(--h-ease-luxury), filter 1.8s var(--h-ease-luxury);
}

.home-intro__img-accent:hover .home-intro__img-el {
  transform: scale(1.06);
  filter: saturate(0.88) brightness(0.90) sepia(0.06);
}

/* Floating brand card */
.home-intro__float-card {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  background: rgba(3, 8, 16, 0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200, 164, 107, 0.20);
  border-radius: 2px;
  padding: 18px 24px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  animation: home-card-float 6s ease-in-out infinite alternate;
}

@keyframes home-card-float {
  0% {
    transform: translateY(-50%) translateX(0);
  }

  100% {
    transform: translateY(calc(-50% - 10px)) translateX(4px);
  }
}

.home-intro__float-card-num {
  font-family: var(--h-font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--h-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.home-intro__float-card-text {
  font-family: var(--h-font-ui);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.50);
}


/* ═══════════════════════════════════════════════════════════
   13. BRAND INTRO — COPY COLUMN
══════════════════════════════════════════════════════════ */

.home-intro__copy {
  display: flex;
  flex-direction: column;
  gap: var(--h-s3);
}

/* Section label */
.home-intro__label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-intro__label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--h-copper) 0%, transparent 100%);
  flex-shrink: 0;
}

.home-intro__label-text {
  font-family: var(--h-font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(184, 115, 51, 0.80);
}

/* Headline */
.home-intro__headline {
  font-family: var(--h-font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--h-cream);
  margin: 0;
}

.home-intro__headline-em {
  font-style: italic;
  font-weight: 300;
  color: var(--h-gold);
  display: block;
}

/* Body */
.home-intro__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-intro__body p {
  font-family: var(--h-font-sans);
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 2.0;
  color: rgba(245, 241, 234, 0.62);
  letter-spacing: 0.015em;
  margin: 0;
}

.home-intro__body-closing {
  font-family: var(--h-font-serif) !important;
  font-size: 1.1rem !important;
  font-style: italic;
  font-weight: 300 !important;
  color: rgba(245, 241, 234, 0.80) !important;
  line-height: 1.75 !important;
  border-left: 2px solid rgba(184, 115, 51, 0.30);
  padding-left: 20px;
}


/* ═══════════════════════════════════════════════════════════
   14. FEATURE CARDS GRID
══════════════════════════════════════════════════════════ */

.home-intro__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px var(--h-s8);
  display: flex;
  gap: 24px;
}

.home-feat-card {
  background: var(--h-navy-deep);
  border: 1px solid rgba(255, 204, 0, 0.15);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.7s var(--h-ease-luxury);
  cursor: default;
  display: flex;
  flex-direction: column;
}

/* Desktop-only flex sizing and hover compression */
@media (min-width: 1025px) {
  .home-feat-card {
    flex: 1;
    width: 0;
  }

  .home-intro__grid:hover .home-feat-card {
    flex: 0.8;
    opacity: 0.55;
    filter: saturate(0.7) brightness(0.85);
  }

  .home-intro__grid .home-feat-card:hover {
    flex: 1.6;
    opacity: 1;
    filter: saturate(1) brightness(1);
    border-color: var(--h-copper);
    transform: translateY(-8px);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(255, 204, 0, 0.15);
  }
}

/* Image wrapper */
.home-feat-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.home-feat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.75) sepia(0.10);
  transition: transform 1.4s var(--h-ease-luxury), filter 1.4s var(--h-ease-luxury);
}

.home-feat-card:hover .home-feat-card__img {
  transform: scale(1.07);
  filter: saturate(0.80) brightness(0.82) sepia(0.06);
}

.home-feat-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 30%,
      rgba(3, 8, 16, 0.65) 100%);
  pointer-events: none;
}

/* Card body */
.home-feat-card__body {
  padding: 24px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-feat-card__num {
  display: block;
  font-family: var(--h-font-ui);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--h-copper);
  margin-bottom: 10px;
}

.home-feat-card__title {
  font-family: var(--h-font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--h-cream);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.home-feat-card__text {
  font-family: var(--h-font-sans);
  font-size: 0.82rem;
  font-weight: 200;
  color: rgba(245, 241, 234, 0.65);
  line-height: 1.75;
  margin: 0;
  letter-spacing: 0.01em;
}

.home-feat-card__subtext {
  font-family: var(--h-font-sans);
  font-size: 0.78rem;
  font-weight: 200;
  color: rgba(245, 241, 234, 0.45);
  line-height: 1.7;
  margin: 12px 0 0 0;
  letter-spacing: 0.01em;
}

.home-feat-card__metrics {
  display: flex;
  gap: 16px;
  margin: 18px 0;
  border-top: 1px dashed rgba(254, 229, 177, 0.15);
  border-bottom: 1px dashed rgba(254, 229, 177, 0.15);
  padding: 12px 0;
}

.home-feat-card__metric {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-feat-card__metric-val {
  font-size: 1.25rem;
  font-family: var(--h-font-serif);
  color: var(--h-gold);
  font-weight: 300;
  line-height: 1.2;
}

.home-feat-card__metric-lbl {
  font-size: 0.58rem;
  color: rgba(245, 241, 234, 0.50);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
  line-height: 1.2;
}

.home-feat-card__badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(3, 8, 16, 0.85);
  border: 1px solid rgba(255, 204, 0, 0.35);
  padding: 5px 10px;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  color: var(--h-gold);
  text-transform: uppercase;
  border-radius: 2px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.home-feat-card__footer-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(245, 241, 234, 0.45);
  margin-top: auto;
  border-top: 1px solid rgba(254, 229, 177, 0.08);
  padding-top: 12px;
}

.home-feat-card__tag-icon {
  font-size: 0.85rem;
  opacity: 0.85;
}

.home-feat-card__tag-text {
  font-family: var(--h-font-sans);
  font-weight: 200;
  line-height: 1.4;
  letter-spacing: 0.015em;
}

.home-feat-card__menu-cta-wrap {
  margin-top: auto;
  padding-top: 16px;
}

/* Collapsible and smooth expand effects on cursor hover (laptop/desktop only) */
@media (min-width: 1025px) {
  .home-feat-card__subtext {
    max-height: 0;
    opacity: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.6s var(--h-ease-cinema), opacity 0.5s var(--h-ease-cinema), margin 0.6s var(--h-ease-cinema);
  }

  .home-feat-card__metrics {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.6s var(--h-ease-cinema), opacity 0.5s var(--h-ease-cinema), margin 0.6s var(--h-ease-cinema), padding 0.6s var(--h-ease-cinema), border 0.6s var(--h-ease-cinema);
  }

  .home-feat-card__footer-tag {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    border-top-width: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.6s var(--h-ease-cinema), opacity 0.5s var(--h-ease-cinema), margin 0.6s var(--h-ease-cinema), padding 0.6s var(--h-ease-cinema), border 0.6s var(--h-ease-cinema);
  }

  .home-feat-card__menu-cta-wrap {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.6s var(--h-ease-cinema), opacity 0.5s var(--h-ease-cinema), margin 0.6s var(--h-ease-cinema), padding 0.6s var(--h-ease-cinema);
  }

  /* Expand when card is hovered */
  .home-feat-card:hover .home-feat-card__subtext {
    max-height: 120px;
    opacity: 0.8;
    margin-top: 12px;
    pointer-events: auto;
  }

  .home-feat-card:hover .home-feat-card__metrics {
    max-height: 100px;
    opacity: 1;
    margin: 18px 0;
    padding: 12px 0;
    border-top: 1px dashed rgba(254, 229, 177, 0.15);
    border-bottom: 1px dashed rgba(254, 229, 177, 0.15);
    pointer-events: auto;
  }

  .home-feat-card:hover .home-feat-card__footer-tag {
    max-height: 60px;
    opacity: 1;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(254, 229, 177, 0.08);
    pointer-events: auto;
  }

  .home-feat-card:hover .home-feat-card__menu-cta-wrap {
    max-height: 80px;
    opacity: 1;
    margin-top: auto;
    padding-top: 16px;
    pointer-events: auto;
  }
}

.home-feat-card__menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: rgba(184, 115, 51, 0.08);
  border: 1px solid rgba(184, 115, 51, 0.4);
  color: var(--h-cream);
  padding: 11px 16px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--h-font-ui);
  transition: all 0.4s var(--h-ease-cinema);
  text-decoration: none;
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.home-feat-card__menu-cta:hover {
  background: var(--h-copper);
  border-color: var(--h-copper);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.25);
}

.home-feat-card__menu-cta svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.home-feat-card__menu-cta:hover svg {
  transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════
   14B. EXPERIENCE SPECIAL SECTION
══════════════════════════════════════════════════════════ */

.home-experience {
  background: var(--h-cream);
  /* Rich Cream breakout section — full viewport height */
  position: relative;
  z-index: 10;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(254, 229, 177, 0.15);
  border-bottom: 1px solid rgba(254, 229, 177, 0.15);
  padding: 80px 0;
}

.home-experience__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.home-experience__visual {
  position: relative;
  /* No fixed height — let the image define its own size */
  width: 100%;
  border-radius: 4px;
  overflow: visible;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.home-experience__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;  /* full image always visible, no cropping */
  border-radius: 4px;
  transition: transform 1.8s var(--h-ease-luxury);
}

.home-experience__visual:hover .home-experience__img {
  transform: scale(1.03);
}

.home-experience__img-fade {
  display: none; /* removed — no longer hiding the image edges */
}

.home-experience__copy {
  display: flex;
  flex-direction: column;
  gap: var(--h-s3);
}

.home-experience__label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-experience__label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--h-copper) 0%, transparent 100%);
  flex-shrink: 0;
}

.home-experience__label-text {
  font-family: var(--h-font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--h-walnut);
  /* Rich Walnut contrast */
}

.home-experience__headline {
  font-family: var(--h-font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--h-navy-deep);
  /* High-contrast navy-deep title */
  margin: 0;
}

.home-experience__headline-em {
  font-style: italic;
  font-weight: 300;
  color: #b87333;
  /* Elegant copper accent */
  display: block;
}

.home-experience__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-experience__body p {
  font-family: var(--h-font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2.0;
  color: var(--h-navy);
  /* Charcoal Steel Navy text for perfect contrast */
  letter-spacing: 0.015em;
  margin: 0;
}

.home-experience__body-ritual {
  font-family: var(--h-font-serif) !important;
  font-size: 1.1rem !important;
  font-style: italic;
  font-weight: 300 !important;
  color: var(--h-navy-deep) !important;
  /* High contrast text */
  line-height: 1.75 !important;
  border-left: 2px solid #b87333;
  /* Elegant copper border */
  padding-left: 20px;
}

#experience-cta {
  background: var(--h-navy-deep) !important;
  color: var(--h-cream) !important;
  padding: 18px 40px;
  border-radius: 99px;
  /* Pill shaped button like screenshot */
  box-shadow: 0 8px 30px rgba(26, 38, 52, 0.15) !important;
  border: 1px solid var(--h-navy-deep) !important;
}

#experience-cta:hover {
  background: var(--h-navy) !important;
  color: var(--h-copper) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26, 38, 52, 0.25) !important;
  border-color: var(--h-navy) !important;
}

@media (max-width: 1024px) {
  .home-experience__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .home-experience__container {
    padding: 0 24px;
    gap: 32px;
  }

  .home-experience {
    padding: 60px 0;
    min-height: 100svh;
  }
}


/* ═══════════════════════════════════════════════════════════
   14C. BRAND MANIFESTO SECTION
══════════════════════════════════════════════════════════ */

.home-craft {
  background: var(--h-navy-deep);
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(254, 229, 177, 0.05);
  padding: 140px 0 100px 0;
}

.home-craft__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}

/* Background EU Watermark Stars */
.home-craft__eu-stars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 45vw, 420px);
  height: clamp(280px, 45vw, 420px);
  color: var(--h-copper);
  opacity: 0.45;
  /* Increased visibility for a prominent watermark stars background */
  pointer-events: none;
  z-index: 1;
  animation: stars-slow-spin 48s linear infinite;
  transform-origin: center center;
}

.home-craft__eu-stars svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes stars-slow-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.home-craft__label,
.home-craft__headline,
.home-craft__body,
.home-craft__seal {
  position: relative;
  z-index: 5;
  /* Sit clearly above the watermark */
}

.home-craft__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.home-craft__label-line {
  width: 24px;
  height: 1px;
  background: #ffcc00;
  /* Vibrant Gold */
}

.home-craft__label-text {
  font-family: var(--h-font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #ffcc00;
  /* Vibrant Gold */
}

.home-craft__headline {
  font-family: var(--h-font-serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--h-cream);
  margin: 0 0 36px 0;
}

.home-craft__headline-em {
  font-style: italic;
  font-weight: 300;
  color: #ffcc00;
  /* Vibrant Gold */
  display: block;
}

.home-craft__body {
  font-family: var(--h-font-sans);
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 2.1;
  color: rgba(245, 241, 234, 0.68);
  letter-spacing: 0.015em;
  max-width: 580px;
  margin: 0 auto;
}

/* Floating rotating gold seal in the bottom right corner */
.home-craft__seal {
  position: absolute;
  bottom: -10px;
  right: 80px;
  width: 72px;
  height: 72px;
  background: #ffcc00;
  /* Vibrant Gold background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.25);
  animation: seal-rotate 24s linear infinite;
  z-index: 10;
}

.home-craft__seal-inner {
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 1px dashed rgba(26, 38, 52, 0.35);
  /* Elegant dashed boundary inside */
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-craft__seal-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0.1);
  /* Black logo inside the gold seal for high-contrast luxury */
}

@keyframes seal-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .home-craft {
    padding: 100px 0 80px 0;
  }

  .home-craft__container {
    padding: 0 40px;
  }

  .home-craft__seal {
    right: 40px;
  }
}

@media (max-width: 768px) {
  .home-craft__seal {
    position: relative;
    margin: 48px auto 0 auto;
    right: auto;
    bottom: auto;
  }

  .home-craft__container {
    padding: 0 24px;
  }
}





/* ═══════════════════════════════════════════════════════════
   16. SCROLL-REVEAL ANIMATIONS (Intersection Observer)
══════════════════════════════════════════════════════════ */

.home-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1.1s var(--h-ease-cinema) var(--reveal-delay, 0s),
    transform 1.1s var(--h-ease-cinema) var(--reveal-delay, 0s);
}

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

/* ── Experience section: always fully visible ─────────────────────────────
   This section sits near the top of the page. Force all reveal elements
   inside it to be immediately visible regardless of scroll position.
──────────────────────────────────────────────────────────────────────── */
#home-experience .home-reveal {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   17. RESPONSIVE — TABLET (max-width: 1024px)
══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .home-hero__content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .home-hero__scroll {
    right: 48px;
  }

  .home-intro__container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 48px;
  }

  .home-intro__visuals {
    height: 480px;
  }

  .home-intro__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 48px 80px;
    gap: 20px;
  }

  .home-hero__headline {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
  }
}


/* ═══════════════════════════════════════════════════════════
   18. RESPONSIVE — MOBILE L (max-width: 768px)
══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .home-hero__content {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 100px;
    text-align: center;
  }

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

  .home-hero__label-line--right {
    display: block;
    background: linear-gradient(270deg, var(--h-copper) 0%, var(--h-gold) 100%);
  }

  .home-hero__headline {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__sub {
    font-size: 0.95rem;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .home-btn--glass,
  .home-btn--ghost {
    padding: 14px 16px;
    width: auto;
    flex: 1;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    justify-content: center;
  }

  .home-hero__tags {
    display: none;
    /* Hide micro tags on mobile for cleanliness */
  }

  .home-hero__scroll {
    right: 24px;
    bottom: 28px;
  }

  .home-hero__steam {
    display: none;
  }

  .home-intro__container {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 48px;
  }

  .home-intro__visuals {
    height: 380px;
    order: 2;
    /* imagery after copy on mobile */
  }

  .home-intro__copy {
    order: 1;
  }

  .home-intro__float-card {
    left: 0;
    right: auto;
    bottom: -20px;
    top: auto;
    transform: none;
    animation: none;
  }

  .home-intro__headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .home-intro__grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px 64px;
    gap: 16px;
  }

  .home-feat-card__img-wrap {
    aspect-ratio: 4 / 5;
  }

  .home-btn--copper {
    padding: 16px 28px;
  }
}


/* ═══════════════════════════════════════════════════════════
   19. RESPONSIVE — MOBILE S (max-width: 480px)
══════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .home-hero__headline {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .home-intro__grid {
    grid-template-columns: 1fr;
  }

  .home-feat-card__img-wrap {
    aspect-ratio: 16 / 10;
  }

  .home-intro__visuals {
    height: 300px;
  }

  .home-intro__img-accent {
    display: none;
    /* Simplify stacking on very small screens */
  }

  .home-intro__img-primary {
    width: 100%;
    height: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════
   20. REDUCED MOTION
══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .home-hero__bg-img {
    animation: none;
    transform: scale(1.04);
  }

  .home-hero__orb {
    animation: none;
  }

  .home-hero__scroll-thumb {
    animation: none;
    opacity: 0.5;
  }

  .home-intro__float-card {
    animation: none;
    transform: translateY(-50%);
  }

  .steam-particle {
    animation: none;
    opacity: 0;
  }

  .hero-reveal,
  .home-reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}