/* ============================================================
   ELLORA — GLOBAL STYLESHEET
   Red + Teal palette  ·  Fraunces / Inter typography
   Reusable layout primitives  ·  Fully responsive
   ============================================================ */

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

:root {
  --black:        #080808;
  --dark:         #0F0F0F;
  --dark2:        #161616;
  --dark3:        #1E1E1E;
  --dark4:        #242424;
  --red:          #C8202A;
  --red-light:    #E8353F;
  --red-dark:     #9A1018;
  --teal:         #009B9B;
  --teal-light:   #00C8C8;
  --teal-dark:    #007070;
  --gold:         #B8962E;
  --gold-light:   #D4AF5A;
  --white:        #F8F8F8;
  --gray:         #999999;
  --gray-light:   #CCCCCC;

  --border:       rgba(248, 248, 248, .07);
  --border-soft:  rgba(248, 248, 248, .04);

  --serif:        'Fraunces', 'Playfair Display', Georgia, serif;
  --sans:         'Inter', sans-serif;
  /* Cinzel (decorative engraved caps) retired — kept as an alias for legacy label usages */
  --cinzel:       'Inter', sans-serif;
  /* Single source of truth for ALL numbers / stats / prices across the site */
  --num:          var(--serif);

  --ease:         cubic-bezier(.4, 0, .2, 1);
  --ease-out:     cubic-bezier(.16, 1, .3, 1);

  --radius:       4px;
  --radius-lg:    8px;

  --nav-h:        116px;
  --nav-h-sm:     98px;
  /* Single source of truth for the gap between the fixed header and the first
     block of page content. Tracks --nav-h, so it shrinks automatically on the
     mobile breakpoints where --nav-h drops. Every "first section" offset and
     every page hero pulls from this, so the header-to-content gap is identical
     across all pages. */
  --head-clear:   calc(var(--nav-h) + 2.5rem);

  --max:          1560px;
  --gutter:       4%;
  --section-y:    4rem;
  --section-y-sm: 2.75rem;

  /* ============================================================
     UNIFIED TYPE SCALE — the ONLY heading/body sizes in the app.
     Every page pulls from these three tokens, so sizes are
     identical page-to-page. Do not hardcode font-size on text.
     ============================================================ */
  --fs-heading:   clamp(1.55rem, 2.1vw, 1.9rem);   /* ALL main page / section titles */
  --fs-subhead:   1.2rem;                          /* ALL card / component titles */
  --fs-body:      .95rem;                          /* ALL body / content copy */

  /* legacy aliases → now identical, so hero & section headings match everywhere */
  --fs-hero:      var(--fs-heading);
  --fs-section:   var(--fs-heading);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Even, baseline-aligned numerals (Playfair otherwise uses uneven old-style figures) */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

::selection { background: rgba(200, 32, 42, .35); color: var(--white); }

::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-light); }

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

.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-alt  { background: var(--dark); }
.section-dark { background: var(--dark2); }

/* First content block on a page sits below the fixed header with one uniform
   gap (--head-clear) — same on every page. */
#header + #mobile-menu + section,
#header + #mobile-menu + .page,
#header + #mobile-menu + #enquiry { padding-top: var(--head-clear); }
/* Full-bleed heroes clear the nav from inside their own padding, so the
   wrapper adds no offset:
   - .hero / .featured center their content behind the transparent nav;
   - <main> on the journey pages leads with .journey-hero, which carries the
     --head-clear gap itself (see .journey-hero) so its background image fills
     the area behind the header instead of leaving an empty band. */
#header + #mobile-menu + main,
#header + #mobile-menu + .hero,
#header + #mobile-menu + .featured { padding-top: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem; margin-bottom: .9rem;
}
.eyebrow-line { width: 28px; height: 1px; background: var(--teal); flex-shrink: 0; }
.eyebrow-text {
  font-size: .65rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--teal); font-weight: 500;
}
.eyebrow-center { display: flex; justify-content: center; }

.section-h {
  font-family: var(--serif);
  font-size: var(--fs-section);
  font-weight: 600; color: var(--white);
  line-height: 1.2; letter-spacing: -.01em; margin-bottom: 1rem;
}
/* Plain ampersand — avoids Playfair's swashy decorative "&" glyph in serif headings */
.amp { font-family: var(--sans); font-style: normal; font-weight: 500; letter-spacing: normal; }

.section-h em   { font-style: normal; font-weight: 400; color: var(--teal-light); }
.section-h .red { font-style: normal; font-weight: 400; color: var(--red-light); }
.text-center  { text-align: center; }

.section-sub {
  font-size: var(--fs-body); color: var(--gray);
  font-weight: 300; max-width: 580px; line-height: 1.9;
}
.section-sub.wide { max-width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  background: rgba(8, 8, 8, .94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 32, 42, .15);
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar.scrolled {
  background: rgba(8, 8, 8, .98);
  border-bottom-color: rgba(200, 32, 42, .35);
  box-shadow: 0 6px 32px rgba(0, 0, 0, .55);
}

.nav-logo { display: flex; align-items: center; height: 100%; }
.nav-logo img {
  height: 90px; width: auto; object-fit: contain;
  transition: height .35s var(--ease), filter .3s ease, transform .3s ease;
}
.navbar.scrolled .nav-logo img { height: 90px; }
.nav-logo:hover img {
  filter: drop-shadow(0 0 14px rgba(200, 32, 42, .55));
  transform: scale(1.03);
}

.nav-links { display: flex; gap: 2.4rem; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: .76rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(248, 248, 248, .62);
  position: relative; transition: color .3s ease;
  padding: .25rem 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--teal);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--white); }
.nav-links a.is-active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  padding: .58rem 1.45rem !important;
  border: 1px solid rgba(200, 32, 42, .4) !important;
  letter-spacing: .12em !important;
  border-radius: 999px !important;
  transition: all .3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red)) !important;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white); display: block;
  transition: .3s var(--ease);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile menu */
.mob-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8, 8, 8, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 199; padding: 1.8rem var(--gutter) 2.2rem;
  flex-direction: column; gap: 1.4rem;
  border-bottom: 1px solid rgba(200, 32, 42, .2);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: .92rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(248, 248, 248, .85);
  transition: color .25s ease;
  padding: .35rem 0;
}
.mob-menu a:hover { color: var(--teal); }
.mob-menu a.is-active { color: var(--teal); }
.mob-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: .85rem 1.5rem !important;
  text-align: center; border-radius: 999px !important;
  font-weight: 600 !important;
  margin-top: .5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-red, .btn-ghost, .btn-teal, .btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px;
  transition: all .3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border: 1px solid rgba(200, 32, 42, .5);
}
.btn-red:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(248, 248, 248, .25);
  font-weight: 500;
}
.btn-ghost:hover {
  border-color: var(--teal); color: var(--teal);
  transform: translateY(-2px);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border: 1px solid rgba(0, 155, 155, .5);
}
.btn-teal:hover {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  box-shadow: 0 8px 30px rgba(0, 155, 155, .35);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: 1px solid rgba(184, 150, 46, .5);
  font-weight: 700;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
}
.btn-sm { padding: .65rem 1.4rem; font-size: .7rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  background: var(--black);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200, 32, 42, .07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 50%, rgba(0, 155, 155, .05) 0%, transparent 70%);
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem var(--gutter); position: relative; z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.8rem;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--red); }
.hero-eyebrow-text {
  font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red); font-weight: 500;
}

.hero h1 {
  font-family: var(--serif);
  font-size: var(--fs-hero);
  font-weight: 600; line-height: 1.12; letter-spacing: -.01em; margin-bottom: 1.4rem;
  color: var(--white);
}
.hero h1 .accent {
  font-style: normal; font-weight: 600;
  color: var(--teal-light);
}

.hero-desc {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .6);
  font-weight: 300; max-width: 560px;
  margin-bottom: 2.2rem; line-height: 1.85;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-n {
  font-family: var(--num); font-size: 2.2rem; font-weight: 600;
  background: linear-gradient(135deg, var(--white), rgba(248, 248, 248, .7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.hero-stat-l {
  font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--teal); margin-top: .35rem;
}

.hero-right { position: relative; overflow: hidden; min-height: 100%; }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.85) contrast(1.05);
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8, 8, 8, .55) 0%, transparent 50%),
    linear-gradient(to top,   rgba(8, 8, 8, .7)  0%, transparent 40%);
}
.hero-badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  background: rgba(8, 8, 8, .92); border: 1px solid rgba(200, 32, 42, .5);
  padding: 1rem 1.25rem; backdrop-filter: blur(12px); min-width: 170px;
  border-radius: var(--radius);
}
.hero-badge-tag   { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: .4rem; }
.hero-badge-name  { font-family: var(--serif); font-size: 1.1rem; color: var(--white); font-weight: 600; }
.hero-badge-price { font-size: .85rem; color: var(--red-light); font-weight: 600; margin-top: .2rem; }

.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 2;
}
.hero-scroll span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(248, 248, 248, .4); }
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(248, 248, 248, .4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--red); padding: .8rem 0; overflow: hidden; }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-item {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(248, 248, 248, .9); font-weight: 500;
  display: flex; align-items: center; gap: 2rem; padding: 0 2rem;
}
.marquee-item::after { content: '◆'; color: rgba(248, 248, 248, .4); font-size: .45rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HERITAGE (Tamil Nadu industry section)
   ============================================================ */
.heritage { position: relative; overflow: hidden; background: var(--black); }
.heritage::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 25%, rgba(200, 32, 42, .05), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(0, 155, 155, .04), transparent 60%);
}

/* Soft animated glow accents in the section background */
.heritage-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hd-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
  animation: heritageGlow 14s ease-in-out infinite alternate;
}
.hd-glow-1 { top: 18%; left: -6%;  width: 360px; height: 360px;
             background: radial-gradient(circle, rgba(200, 32, 42, .6), transparent 65%); }
.hd-glow-2 { bottom: 6%; right: -4%; width: 420px; height: 420px;
             background: radial-gradient(circle, rgba(0, 200, 200, .35), transparent 65%);
             animation-delay: -6s; }
@keyframes heritageGlow {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}

.heritage > .container { position: relative; z-index: 1; }

.heritage-intro {
  max-width: 780px; margin: 0 auto 3rem;
  text-align: center;
}
.heritage-intro .section-h { margin-bottom: 1.4rem; }
.heritage-lede {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .7);
  line-height: 1.9; font-weight: 300;
}
.heritage-lede strong { color: var(--teal-light); font-weight: 600; }

/* ---- HERO BANNER ---- */
.heritage-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto 3rem;
  aspect-ratio: 24 / 9;
  max-height: 420px;
  border: 1px solid rgba(248, 248, 248, .06);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
}
.heritage-banner img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(1.05) contrast(1.05);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.heritage-banner:hover img { transform: scale(1.06); }
.hb-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .55) 50%, rgba(8, 8, 8, .25) 100%),
    linear-gradient(to top, rgba(8, 8, 8, .85), transparent 55%);
}
.hb-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.5rem 3rem;
  max-width: 620px;
}
.hb-mark {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--cinzel);
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--teal-light); font-weight: 600;
  margin-bottom: 1rem;
}
.hb-mark::before { content: ''; width: 22px; height: 1px; background: var(--teal-light); }
.hb-content h3 {
  font-family: var(--serif);
  font-size: var(--fs-section);
  font-weight: 600; color: var(--white);
  line-height: 1.25; margin-bottom: .8rem;
}
.hb-content p {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .75);
  line-height: 1.8; font-weight: 300;
  max-width: 480px;
}

.heritage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.heritage-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
}
.heritage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 155, 155, .3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
}
.heritage-card .h-img { position: relative; height: 240px; overflow: hidden; }
.heritage-card .h-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.85) saturate(1.05);
  transition: transform .8s var(--ease), filter .35s ease;
}
.heritage-card:hover .h-img img { transform: scale(1.08); filter: brightness(.95) saturate(1.1); }
.heritage-card .h-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .75) 0%, rgba(8, 8, 8, .15) 50%, rgba(8, 8, 8, .35) 100%);
  pointer-events: none;
}
.heritage-card .h-num {
  position: absolute; top: 1rem; left: 1.2rem; z-index: 2;
  font-family: var(--num);
  font-size: 2.4rem; font-weight: 600;
  color: var(--teal-light);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .6);
  pointer-events: none;
  letter-spacing: -.02em;
}
.heritage-card .h-body { padding: 1.8rem; flex: 1; }
.heritage-card .h-tag {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; margin-bottom: .7rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.heritage-card .h-tag::before { content: ''; width: 18px; height: 1px; background: var(--teal); }
.heritage-card h3 {
  font-family: var(--serif);
  font-size: var(--fs-subhead); font-weight: 600; color: var(--white);
  line-height: 1.3; margin-bottom: .7rem;
}
.heritage-card p {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .65); line-height: 1.8;
}
.heritage-card p + p { margin-top: .7rem; }
.heritage-card strong { color: var(--teal-light); font-weight: 600; }

.heritage-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(200, 32, 42, .05), rgba(0, 155, 155, .04));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.heritage-stat { text-align: center; }
.heritage-stat .n {
  font-family: var(--num);
  font-size: 2.2rem; font-weight: 600;
  background: linear-gradient(135deg, var(--white), rgba(248, 248, 248, .7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.heritage-stat .l {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal); margin-top: .55rem; font-weight: 500;
}

.heritage-close {
  max-width: 760px; margin: 3.5rem auto 0;
  text-align: center;
  font-size: var(--fs-body); color: rgba(248, 248, 248, .7); line-height: 1.9;
  font-weight: 300;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.heritage-close strong { color: var(--teal-light); font-weight: 500; }

/* ============================================================
   GLOBAL REACH (smooth flight animation)
   ============================================================ */
.reach {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 155, 155, .06), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(200, 32, 42, .04), transparent 70%),
    var(--dark);
  overflow: hidden;
  position: relative;
}
.reach-head { text-align: center; margin-bottom: 3rem; }
.reach-head .section-sub { margin: 0 auto; }

.reach-stage {
  position: relative;
  max-width: 1100px; margin: 0 auto;
  aspect-ratio: 2 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.reach-map-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.52) saturate(.8) contrast(1.05);
}
.reach-map-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 95% at 62% 42%, rgba(8,8,8,0) 0%, rgba(8,8,8,.3) 65%, rgba(8,8,8,.72) 100%),
    linear-gradient(180deg, rgba(8,8,8,.3), rgba(8,8,8,.08) 40%, rgba(8,8,8,.45));
}
.reach-map-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; overflow: visible; }

.reach-grid-bg { stroke: rgba(248, 248, 248, .04); stroke-width: 1; fill: none; }

.reach-arc {
  fill: none;
  stroke: rgba(0, 200, 200, .35);
  stroke-width: 1.4;
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  animation: dashFlow 24s linear infinite;
}
.reach-arc.alt {
  stroke: rgba(216, 175, 90, .35);
  animation-duration: 28s;
  animation-direction: reverse;
}
@keyframes dashFlow { to { stroke-dashoffset: -240; } }

.reach-leaders line { stroke: rgba(0, 200, 200, .4); stroke-width: 1; }

.reach-dot {
  fill: var(--teal-light);
  filter: drop-shadow(0 0 6px rgba(0, 200, 200, .8));
}
.reach-dot.origin {
  fill: var(--red);
  filter: drop-shadow(0 0 10px rgba(200, 32, 42, .8));
}
.reach-dot.pulse { animation: dotPulse 2.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.55); }
}

/* Tiny planes — clean white silhouettes (matches reference image).
   The `color` attribute drives `currentColor` inside the symbol. */
.reach-plane {
  color: var(--white);
  filter:
    drop-shadow(0 .5px .8px rgba(0, 0, 0, .55))
    drop-shadow(0 0 1.5px rgba(255, 255, 255, .35));
}

/* Slower, more elegant dashed trail along the routes */
.reach-arc { animation: dashFlow 40s linear infinite; }
.reach-arc.alt { animation-duration: 46s; }

.reach-label {
  font-family: var(--cinzel);
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px;
}
.reach-label-bg { fill: rgba(8, 8, 8, .85); stroke: rgba(0, 155, 155, .4); stroke-width: 1; }
.reach-label-bg.origin { fill: var(--red); stroke: var(--red-light); }
.reach-label-text { fill: var(--white); }
.reach-label-text.origin { fill: var(--white); }

.reach-legend {
  display: flex; gap: 2.2rem; justify-content: center;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.reach-legend-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(248, 248, 248, .7); font-weight: 500;
}
.reach-legend-item .lg-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 10px var(--teal);
}

/* Country list under the world map */
.reach-countries {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .55rem; margin-top: 2.2rem;
}
.reach-countries .rc-label {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(248, 248, 248, .5); margin-right: .35rem;
}
.reach-countries .rc-item {
  font-size: .72rem; letter-spacing: .06em; font-weight: 600;
  color: rgba(248, 248, 248, .88);
  padding: .42rem .95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.reach-countries .rc-item:hover {
  border-color: var(--teal); color: var(--white);
  background: rgba(0, 155, 155, .1);
}

/* ============================================================
   SHOP BY CATEGORY — joined banner (Collection page)
   ============================================================ */
.shop-by-head {
  max-width: 760px;
  margin: 0 auto 2.8rem;
  text-align: center;
}
.shop-by-head .eyebrow { justify-content: center; }
.shop-by-head .section-sub { margin: 0 auto; }

.shop-by-banner.shop-by-banner--two {
  grid-template-columns: 1fr 1fr;
}
.shop-by-banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;                       /* hairline seam between cards */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
}
.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;             /* tall portrait — looks "banner panel"-ish */
  background: var(--dark3);
  cursor: pointer;
  display: block;
  transition: flex-grow .35s var(--ease);
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
  filter: brightness(.62) saturate(.92) contrast(1.03);
  transition: transform .9s var(--ease), filter .45s ease;
}
.cat-card::before {
  /* dark vignette so text always reads */
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8, 8, 8, .9) 0%, rgba(8, 8, 8, .25) 45%, rgba(8, 8, 8, .55) 100%);
  pointer-events: none;
  transition: background .4s ease;
  z-index: 1;
}
.cat-card:hover img { transform: scale(1.06); filter: brightness(.78) saturate(1); }
.cat-card:hover::before {
  background: linear-gradient(to top, rgba(8, 8, 8, .88) 0%, rgba(8, 8, 8, .1) 55%, rgba(8, 8, 8, .35) 100%);
}

/* gold accent on hover via a seam border */
.cat-card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
  z-index: 2;
}
.cat-card:hover::after { transform: scaleX(1); }

.cat-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem 2rem;
  pointer-events: none;             /* clicks pass to the button */
}
.cat-tag {
  font-size: .65rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--teal-light); font-weight: 600; margin-bottom: .6rem;
}
.cat-card h3 {
  font-family: var(--serif);
  font-size: var(--fs-subhead);
  font-weight: 600; color: var(--white);
  line-height: 1.25; margin-bottom: .7rem;
}
.cat-card h3 em { font-style: normal; color: var(--teal-light); font-weight: 400; }
.cat-card p {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .75);
  margin-bottom: 1.4rem; line-height: 1.65; max-width: 320px;
  font-weight: 300;
}
.cat-btn {
  pointer-events: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans);
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(200, 32, 42, .9);
  border: 1px solid var(--red-light);
  padding: .8rem 1.5rem;
  border-radius: 999px;
  transition: all .3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.cat-btn::after { content: '→'; transition: transform .3s var(--ease); }
.cat-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.cat-btn:hover::after { transform: translateX(4px); }
.cat-btn:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
}

/* Middle card slightly emphasised */
.shop-by-banner .cat-card:nth-child(2) .cat-btn {
  background: rgba(0, 155, 155, .9);
  border-color: var(--teal-light);
}
.shop-by-banner .cat-card:nth-child(2) .cat-btn:hover {
  background: var(--teal);
  box-shadow: 0 10px 28px rgba(0, 155, 155, .4);
}
.shop-by-banner .cat-card:nth-child(3) .cat-btn {
  background: rgba(184, 150, 46, .92);
  border-color: var(--gold-light);
  color: var(--black);
}
.shop-by-banner .cat-card:nth-child(3) .cat-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 28px rgba(184, 150, 46, .4);
}

/* Jackets + Bags are a paired set — collapse the doubled section padding
   between them so they read as one block, not two far-apart sections.
   The gap above each heading is kept equal: Jackets = 5rem top; Bags =
   2.5rem (jackets bottom) + 2.5rem (bags top) = 5rem. */
#shop-jackets { padding-top: 5rem; padding-bottom: 2.5rem; }
#shop-bags    { padding-top: 2.5rem; }
#shop-bags .shop-by-head { margin-top: 0; }

/* ============================================================
   LOOKBOOK HERO — single editorial banner on Collection page
   ============================================================ */
.lookbook-hero-wrap { padding-bottom: 0; }
.lookbook-hero {
  position: relative; display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  text-decoration: none;
  isolation: isolate;
}
.lookbook-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.68) saturate(.95) contrast(1.04);
  transition: transform 1s var(--ease), filter .5s ease;
}
.lookbook-hero:hover img { transform: scale(1.04); filter: brightness(.78) saturate(1.05); }
.lookbook-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(8,8,8,.78) 0%, rgba(8,8,8,.35) 55%, rgba(8,8,8,.15) 100%),
    linear-gradient(to top,   rgba(8,8,8,.55) 0%, rgba(8,8,8,0) 60%);
}
.lookbook-copy {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  max-width: 620px;
  color: var(--white);
}
.lookbook-tag {
  font-family: var(--cinzel);
  font-size: .7rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1rem;
}
.lookbook-copy h1 {
  font-family: var(--serif);
  font-size: var(--fs-hero);
  font-weight: 600; line-height: 1.12; letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.lookbook-copy h1 em {
  font-style: normal; color: var(--teal-light); font-weight: 400;
}
.lookbook-copy p {
  font-size: var(--fs-body);
  color: rgba(248, 248, 248, .82);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 480px;
}
.lookbook-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  align-self: flex-start;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600;
  padding: .95rem 1.8rem;
  background: var(--red); color: var(--white);
  border: 1px solid var(--red-light);
  border-radius: 999px;
  transition: background .25s ease, transform .25s ease, box-shadow .3s ease;
}
.lookbook-hero:hover .lookbook-btn {
  background: var(--red-light);
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .lookbook-hero { aspect-ratio: 4 / 5; }
  .lookbook-veil {
    background:
      linear-gradient(to top, rgba(8,8,8,.85) 0%, rgba(8,8,8,.3) 50%, rgba(8,8,8,.55) 100%);
  }
  .lookbook-copy { max-width: 100%; justify-content: flex-end; }
}

/* ============================================================
   PRODUCTS / COLLECTION
   ============================================================ */
/* Pull the collection up — the preceding Bags section already adds its
   full bottom padding, so the default top padding stacks into dead space. */
#products { padding-top: 3rem; }

/* A touch more air between the "Our Collection" eyebrow and the heading. */
.products-header .eyebrow { margin-bottom: 1.3rem; }

.products-header {
  display: flex; flex-direction: column;
  align-items: flex-start; margin-bottom: 2rem;
  gap: 1.5rem;
}
.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-tab {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; padding: .5rem 1.1rem;
  border: 1px solid rgba(248, 248, 248, .12);
  color: rgba(248, 248, 248, .55);
  background: none; transition: all .25s ease;
  border-radius: 999px;
}
.filter-tab.active,
.filter-tab:hover {
  border-color: var(--red); color: var(--white);
  background: rgba(200, 32, 42, .12);
}

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

.product-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform .4s ease, border-color .3s ease, box-shadow .4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 32, 42, .35);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .6);
}

.product-img-wrap { position: relative; overflow: hidden; height: 460px; }
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.92);
  transition: transform .6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: .58rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700;
  padding: .4rem .75rem; z-index: 2;
  border-radius: 3px;
}
.badge-new  { background: var(--teal); color: var(--black); }
.badge-hot  { background: var(--red);  color: var(--white); }
.badge-sale { background: var(--gold); color: var(--black); }

.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .95) 0%, rgba(8, 8, 8, .3) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
}
.product-cat  { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: .35rem; font-weight: 500; }
.product-name { font-family: var(--serif); font-size: var(--fs-subhead); color: var(--white); font-weight: 600; margin-bottom: .3rem; }
.product-desc { font-size: .75rem; color: rgba(248, 248, 248, .6); line-height: 1.55; margin-bottom: .95rem; }

.product-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.product-price  { font-family: var(--num); font-size: 1.1rem; color: var(--white); font-weight: 600; }
.product-price .orig { font-size: .7rem; color: var(--gray); text-decoration: line-through; margin-left: .4rem; font-family: var(--sans); }

.product-enquire {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; padding: .45rem .95rem;
  background: var(--red); color: var(--white);
  border: none; transition: background .2s ease, transform .2s ease;
  border-radius: 3px;
}
.product-enquire:hover { background: var(--red-light); transform: translateY(-1px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: start;
}
.about-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px; gap: 1rem;
}
.about-imgs img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.92) contrast(1.05);
  border-radius: var(--radius-lg);
}
.about-imgs img:first-child { grid-column: 1 / -1; height: 280px; }

/* ---- ABOUT hero (cinematic image banner) ---- */
/* about-hero reuses .journey-hero for its nav clearance (padding-top:
   --head-clear); it only adds a taller minimum height. */
.about-hero { min-height: 38vh; }
.about-hero .jh-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.4) contrast(1.05);
}

/* ---- ABOUT story section (tighter than default) ---- */
.about-story { padding: 3.6rem 0; }

/* ---- ABOUT story rows (alternating image + text) ---- */
.about-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.about-row + .about-row { margin-top: 3.2rem; }
.about-row.reverse .about-row-media { order: -1; }

/* media panel — shows an elegant placeholder until a real photo is added */
.about-row-media {
  position: relative; height: 340px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(0,155,155,.06), transparent 60%),
    linear-gradient(135deg, #181818 0%, #0d0d0d 100%);
}
.about-row-media img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.92) contrast(1.05);
}
.media-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(248, 248, 248, .35); font-weight: 500;
}
.about-row-text .section-h { margin-bottom: 1.1rem; }

.about-pills  { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.8rem; }
.pill {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; padding: .45rem .95rem;
  border: 1px solid rgba(0, 155, 155, .35); color: var(--teal-light);
  border-radius: 999px;
}

.about-facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.2rem;
}
.about-fact {
  padding: 1.3rem; border: 1px solid var(--border);
  background: rgba(248, 248, 248, .02);
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  transition: border-color .3s ease, transform .3s ease;
}
.about-fact:hover { border-color: rgba(0, 155, 155, .25); transform: translateY(-2px); }
.about-fact::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--red), var(--teal));
}
.about-fact-n {
  font-family: var(--num); font-size: 1.8rem;
  font-weight: 600; color: var(--white); line-height: 1;
}
.about-fact-l {
  font-size: .65rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray); margin-top: .35rem;
}

/* ============================================================
   FEATURED (Signature)
   ============================================================ */
.featured {
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.featured::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 60% 50%, rgba(200, 32, 42, .08) 0%, transparent 70%);
}
.featured-img { position: relative; overflow: hidden; }
.featured-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  filter: brightness(.85);
}
.featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 40%, rgba(22, 22, 22, .9) 100%);
}

.featured-content {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: var(--head-clear) var(--gutter) 3.5rem;
  position: relative; z-index: 1;
}
.featured-tag {
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .7rem;
}
.featured-tag::before { content: ''; width: 24px; height: 1px; background: var(--teal-light); }
.featured-content h1 {
  font-family: var(--serif);
  font-size: var(--fs-hero);
  font-weight: 600; color: var(--white); line-height: 1.12; letter-spacing: -.01em; margin-bottom: .8rem;
}
.featured-content h1 em { font-style: normal; color: var(--teal-light); }
.featured-intro { font-size: var(--fs-body); color: var(--gray); line-height: 1.9; }

.featured-specs { margin: 2rem 0; display: flex; flex-direction: column; gap: .65rem; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--border);
}
.spec-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }
.spec-value { font-size: .82rem; color: var(--white); font-weight: 500; text-align: right; }

.featured-price { margin-top: 1.5rem; }
.price-label  { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: .3rem; }
.price-amount { font-family: var(--num); font-size: 2.5rem; font-weight: 600; color: var(--white); line-height: 1; }
.price-note   { font-size: .72rem; color: var(--gray); margin-top: .4rem; }
.featured-btns { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  padding: 2.5rem 2rem; position: relative;
  border-right: 1px solid var(--border);
  transition: background .3s ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(200, 32, 42, .04); }
.process-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background .3s ease;
}
.process-step:hover::before { background: linear-gradient(to right, var(--red), var(--teal)); }

.process-num {
  font-family: var(--num); font-size: 2.4rem; font-weight: 600;
  color: var(--red-light); line-height: 1; margin-bottom: 1.2rem;
}
.process-icon { font-size: 1.5rem; margin-bottom: .8rem; }
.process-step h4 { font-family: var(--serif); font-size: var(--fs-subhead); color: var(--white); margin-bottom: .6rem; font-weight: 600; }
.process-step p  { font-size: .8rem; color: var(--gray); line-height: 1.8; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 6px; margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.g-item { overflow: hidden; position: relative; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.85);
  transition: transform .5s ease, filter .3s ease;
}
.g-item:hover img { transform: scale(1.07); filter: brightness(1); }

.gallery-grid .g-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-grid .g-item:nth-child(2) { grid-column: span 4; }
.gallery-grid .g-item:nth-child(3) { grid-column: span 3; }
.gallery-grid .g-item:nth-child(4) { grid-column: span 3; }
.gallery-grid .g-item:nth-child(5) { grid-column: span 4; }
.gallery-grid .g-item:nth-child(6) { grid-column: span 5; }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .92) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1.4rem;
  opacity: 0; transition: opacity .3s ease;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); font-weight: 600; }

/* ---- Uniform photo gallery (CSR — reuses .g-item / .g-overlay) ---- */
.field-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 6px; margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ============================================================
   ENQUIRY / CONTACT
   ============================================================ */
.enquiry-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem; align-items: start;
}
/* ---- Split enquiry layout (image + intro on the left, form card on the right) ---- */
#enquiry { position: relative; overflow: hidden; padding-bottom: 3.5rem; }
/* Background renders from CSS so it never breaks if the photo is absent.
   It also layers in hero/jacket-hero.jpg automatically once that file exists. */
.enquiry-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #1a120c;
  background-image: url(../assets/images/hero/enquiry-leather-alt-brown.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Light veil — just enough to keep the left-side white text readable,
   while letting the brown leather texture stay clearly visible. */
.enquiry-bg-veil {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to right, rgba(8, 8, 8, .78) 0%, rgba(8, 8, 8, .45) 32%, rgba(8, 8, 8, .12) 65%, rgba(8, 8, 8, .05) 100%);
}
#enquiry > .container { position: relative; z-index: 1; }

.enquiry-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

/* LEFT */
.enquiry-intro { max-width: 540px; }
.enquiry-title {
  font-family: var(--serif);
  font-size: var(--fs-heading);   /* unified site heading size — matches every other page */
  font-weight: 600; line-height: 1.2; letter-spacing: -.01em;
  color: var(--white); margin: .3rem 0 1.2rem;
}
.enquiry-title em { font-style: normal; color: var(--teal-light); }
.enquiry-intro-text {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .72);
  font-weight: 300; line-height: 1.9; margin-bottom: 2.2rem;
}

.enquiry-socials { display: flex; gap: 1rem; margin-bottom: 2.2rem; }
.enquiry-socials a {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(248, 248, 248, .18);
  color: rgba(248, 248, 248, .8);
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.enquiry-socials a:hover {
  color: var(--teal-light); border-color: var(--teal);
  background: rgba(0, 155, 155, .12); transform: translateY(-2px);
}
.enquiry-socials svg { width: 24px; height: 24px; fill: currentColor; }

.enquiry-meta { display: flex; flex-direction: column; gap: .6rem; }
.enquiry-meta a,
.enquiry-meta span {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .85rem; color: rgba(248, 248, 248, .72);
  transition: color .25s ease; width: fit-content;
  max-width: 100%; overflow-wrap: anywhere;
}
.enquiry-meta .ec-ico { color: var(--teal); font-size: 1rem; }
#enquiry .enquiry-meta a { text-decoration: none; }
.enquiry-meta a:hover { color: var(--white); }

/* RIGHT — form card sits over the image */
.enquiry-form {
  background: rgba(18, 18, 18, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.contact-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  background: rgba(248, 248, 248, .02);
  transition: border-color .3s ease, transform .3s ease;
  border-radius: var(--radius);
}
.contact-row:hover { border-color: rgba(0, 155, 155, .25); transform: translateX(2px); }
.contact-icon-wrap {
  width: 42px; height: 42px;
  border: 1px solid rgba(0, 155, 155, .35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; color: var(--teal);
  border-radius: var(--radius);
}
.contact-label { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: .25rem; font-weight: 600; }
.contact-val   { font-size: var(--fs-body); color: rgba(248, 248, 248, .85); line-height: 1.55; }

/* Email & phone links are always hyperlinked + underlined site-wide */
a[href^="mailto:"], a[href^="tel:"] { text-decoration: underline; text-underline-offset: 2px; }
a[href^="mailto:"]:hover, a[href^="tel:"]:hover { color: var(--teal); }

/* Form */
.form-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 2.5rem; position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
}
.form-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--red), var(--teal));
}
.form-title { font-family: var(--serif); font-size: var(--fs-subhead); color: var(--white); font-weight: 600; margin-bottom: .35rem; }
.form-sub   { font-size: .82rem; color: var(--gray); margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: .62rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: .45rem; font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  background: rgba(248, 248, 248, .04);
  border: 1px solid rgba(248, 248, 248, .1);
  color: var(--white); font-family: var(--sans);
  font-size: .9rem; outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  border-radius: var(--radius);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(248, 248, 248, .25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(0, 155, 155, .05);
  box-shadow: 0 0 0 3px rgba(0, 155, 155, .12);
}
.form-group select {
  appearance: none; cursor: pointer; color: rgba(248, 248, 248, .7);
  background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%),
                    linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%; padding: 1.05rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); font-family: var(--sans);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  border: none; border-radius: 999px;
  transition: all .3s ease; margin-top: .5rem;
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  transform: translateY(-1px);
}
.form-notice { font-size: .68rem; color: rgba(248, 248, 248, .5); text-align: center; margin-top: .9rem; }

.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success-icon {
  width: 64px; height: 64px; border: 1px solid var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.6rem; color: var(--teal);
}
.form-success h3 { font-family: var(--serif); font-size: var(--fs-subhead); color: var(--white); margin-bottom: .5rem; }
.form-success p  { font-size: .88rem; color: var(--gray); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505;
  padding: 1rem var(--gutter) 1.25rem;
  border-top: 1px solid rgba(200, 32, 42, .15);
}
.footer-top {
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; gap: 2rem;
  max-width: var(--max);
  margin-inline: auto;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo {
  display: inline-flex; align-items: center;
  margin-bottom: .5rem;
}
.footer-logo img {
  height: 48px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
  transition: transform .35s var(--ease), filter .35s ease;
}
.footer-logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 14px rgba(200, 32, 42, .35));
}
.footer-about { font-size: .82rem; color: rgba(248, 248, 248, .58); line-height: 1.7; margin-bottom: 0; max-width: 380px; }
.footer-socials { display: flex; gap: .6rem; justify-content: center; }
.f-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(248, 248, 248, .1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(248, 248, 248, .5); font-size: .7rem;
  transition: all .25s ease;
  border-radius: 50%;
  font-weight: 600;
  text-transform: uppercase;
}
.f-social:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.footer-col h5 {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.2rem; font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .82rem; color: rgba(248, 248, 248, .5);
  transition: color .25s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin-inline: auto;
  display: flex; flex-direction: row; justify-content: center;
  align-items: center; flex-wrap: wrap; gap: .9rem;
  text-align: center;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: .72rem; color: rgba(248, 248, 248, .55); }
.cert-wrap { display: flex; gap: .55rem; flex-wrap: wrap; justify-content: center; }
.cert {
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(0, 155, 155, .7); border: 1px solid rgba(0, 155, 155, .25);
  padding: .35rem .7rem;
  border-radius: 3px;
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
#scrollTop {
  position: fixed; bottom: 1.8rem; right: 1.8rem;
  width: 46px; height: 46px;
  background: var(--red); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  opacity: 0; pointer-events: none;
  transition: all .3s ease; z-index: 50;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .4);
}
/* Semi-transparent on every device so it never fully blocks content behind it;
   goes fully opaque on hover (desktop) or while pressed (touch). */
#scrollTop.vis { opacity: .55; pointer-events: auto; }
#scrollTop.vis:hover,
#scrollTop.vis:active { opacity: 1; }
#scrollTop:hover { background: var(--red-light); transform: translateY(-3px); }

/* ============================================================
   FADE-IN
   ============================================================ */
.fi {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.fi.vis { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: .12s; }
.fi-d2 { transition-delay: .24s; }
.fi-d3 { transition-delay: .36s; }
.fi-d4 { transition-delay: .48s; }

/* ============================================================
   JOURNEY PAGE
   ============================================================ */
.journey-page { background: var(--black); }

/* ---- HERO (cinematic, with background image + animated orbs) ---- */
.journey-hero {
  position: relative; overflow: hidden;
  /* Clears the fixed header itself so the hero background fills the space
     behind the nav (no empty band) — identical gap to every other page. */
  padding: var(--head-clear) var(--gutter) 3rem;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, #161616 0%, transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(200, 32, 42, .15);
}
.jh-bg { position: absolute; inset: 0; z-index: 0; }
.jh-bg-veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 45%, transparent 0%, rgba(8,8,8,.4) 80%, var(--black) 100%);
}

.journey-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin-inline: auto;
  text-align: center; width: 100%;
}
.journey-hero h1 {
  font-family: var(--serif); font-size: var(--fs-hero);
  font-weight: 600; line-height: 1.12; letter-spacing: -.01em; margin-bottom: 1.1rem;
  color: var(--white);
}
.journey-hero h1 em {
  font-style: normal;
  color: var(--teal-light);
}
.jh-lede {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .72);
  max-width: 640px; margin: 0 auto; line-height: 1.8; font-weight: 300;
}

/* ---- STORY AT A GLANCE strip ---- */
.journey-stats-strip {
  padding: 2rem 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark2) 100%);
  border-bottom: 1px solid var(--border);
}
.js-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.js-stat {
  text-align: center; padding: 2rem 1.2rem;
  background: rgba(248, 248, 248, .02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s ease, background .3s ease;
}
.js-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--red), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.js-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 155, 155, .3);
  background: rgba(248, 248, 248, .03);
}
.js-stat:hover::before { transform: scaleX(1); }
.js-icon {
  font-size: 1.6rem; margin-bottom: .9rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
}
.js-n {
  font-family: var(--num); font-size: 1.95rem; font-weight: 600;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--white), rgba(248, 248, 248, .7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1; margin-bottom: .55rem;
}
.js-l {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); font-weight: 500;
}

/* ---- VISION + STORY (boxed cards, matches page) ---- */
.journey-intro { padding: 4rem 0; background: var(--black); position: relative; }
.ji-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  align-items: stretch; max-width: 1100px; margin: 0 auto;
}
.ji-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.4rem;
}
.vision-statement {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--fs-subhead); line-height: 1.55;
  color: var(--white); margin-top: 1rem; text-align: left;
}
.vision-statement em { font-style: normal; color: var(--teal-light); }
.ji-prose { margin-top: 1rem; }
.ji-prose p { font-size: var(--fs-body); color: rgba(248, 248, 248, .68); line-height: 1.85; }
.ji-prose p + p { margin-top: .9rem; }

/* ---- PROCESS FLOW (connected-node infographic) ---- */
.process-flow { padding: 1.6rem 0 2.2rem; background: var(--dark2); position: relative; }
.pf-head { max-width: 780px; margin: 0 auto 1.8rem; text-align: center; }
.pf-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem; row-gap: 2rem;
  max-width: 1040px; margin: 0 auto;
}
.pf-step {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1rem;
}

/* ---- serpentine connectors (delicate neutral hairline) ----
   Row 2 is reversed so the path snakes: 1→2→3 ⤵ 4←5←6. */
.pf-step:nth-child(4) { grid-column: 3; grid-row: 2; }
.pf-step:nth-child(5) { grid-column: 2; grid-row: 2; }
.pf-step:nth-child(6) { grid-column: 1; grid-row: 2; }

/* row 1: left → right */
.pf-step:nth-child(1)::after,
.pf-step:nth-child(2)::after {
  content: ''; position: absolute; z-index: 0;
  top: 58px; left: 50%;
  width: calc(100% + 1.5rem); height: 2px;
  background: rgba(248, 248, 248, .16);
}
/* row 2 (reversed): right → left */
.pf-step:nth-child(4)::after,
.pf-step:nth-child(5)::after {
  content: ''; position: absolute; z-index: 0;
  top: 58px; right: 50%;
  width: calc(100% + 1.5rem); height: 2px;
  background: rgba(248, 248, 248, .16);
}
/* node 3 → node 4: rounded bracket curving down the right side */
.pf-step:nth-child(3)::after {
  content: ''; position: absolute; z-index: 0;
  top: 58px; left: calc(50% + 58px); right: -34px;
  height: calc(100% + 2rem);
  border: 2px solid rgba(248, 248, 248, .16);
  border-left: none;
  border-radius: 0 60px 60px 0;
}

/* gradient-ring circle holding the icon */
.pf-icon {
  position: relative; z-index: 1;
  width: 118px; height: 118px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2.3rem; margin-bottom: 1.4rem;
  border: 2px solid transparent;
  background:
    radial-gradient(circle at 50% 32%, #242424, var(--dark2)) padding-box,
    linear-gradient(135deg, var(--red), var(--teal)) border-box;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .35);
  transition: transform .4s var(--ease), box-shadow .35s ease;
}
.pf-step:nth-child(3n+2) .pf-icon {
  background:
    radial-gradient(circle at 50% 32%, #242424, var(--dark2)) padding-box,
    linear-gradient(135deg, var(--gold), var(--red-light)) border-box;
}
.pf-step:nth-child(3n) .pf-icon {
  background:
    radial-gradient(circle at 50% 32%, #242424, var(--dark2)) padding-box,
    linear-gradient(135deg, var(--teal-light), var(--gold)) border-box;
}
.pf-step:hover .pf-icon { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0, 0, 0, .5); }

/* small numbered badge on the circle */
.pf-num {
  position: absolute; z-index: 2;
  top: 0; left: calc(50% + 30px);
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--num); font-size: .82rem; font-weight: 600;
  color: var(--white); line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--teal));
  border: 2px solid var(--dark2);
}

.pf-step h3 {
  font-family: var(--serif); font-size: var(--fs-subhead); font-weight: 600;
  color: var(--white); margin-bottom: .55rem;
}
.pf-step p {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .62);
  line-height: 1.8; max-width: 300px;
}

/* ---- FOUNDERS ---- */
.founders { padding: 6rem 0 5rem; background: var(--dark2); position: relative; }
.founders::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(0, 155, 155, .05), transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 70%, rgba(200, 32, 42, .05), transparent 70%);
}
.founders-head { max-width: 780px; margin: 0 auto 3.5rem; text-align: center; position: relative; z-index: 1; }
.founders-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem;
  position: relative; z-index: 1;
}
.founder-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 280px 1fr;
  transition: transform .4s var(--ease), border-color .3s ease, box-shadow .4s ease;
}
.founder-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 155, 155, .3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
}
.fc-img { position: relative; overflow: hidden; min-height: 100%; }
.fc-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.88) grayscale(.15);
  transition: transform .7s var(--ease), filter .35s ease;
}
.founder-card:hover .fc-img img { transform: scale(1.07); filter: brightness(1) grayscale(0); }
.fc-img-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(30, 30, 30, .8));
}
.fc-body { padding: 1.9rem; }
.fc-tag {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: .85rem;
}
.fc-tag::before { content: ''; width: 18px; height: 1px; background: var(--teal); }
.founder-card h3 {
  font-family: var(--serif); font-size: var(--fs-subhead); font-weight: 600;
  color: var(--white); margin-bottom: .25rem; line-height: 1.1;
}
.fc-role {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem; font-weight: 500;
}
.founder-card p:not(.fc-role) {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .65);
  line-height: 1.85; margin-bottom: 1rem;
}
.fc-skills {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .9rem;
  padding: 0; list-style: none;
}
.fc-skills li {
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; padding: .35rem .8rem;
  border: 1px solid rgba(0, 155, 155, .3); color: var(--teal-light);
  border-radius: 999px;
  background: rgba(0, 155, 155, .05);
}

/* ---- TIMELINE SECTION ---- */
.timeline-section { padding-top: 5rem; background: var(--black); }
.timeline-head    { max-width: 780px; margin: 0 auto 3rem; text-align: center; }

.timeline { padding: 3rem var(--gutter) 6rem; }
.timeline-track { position: relative; max-width: 940px; margin: 0 auto; }
.timeline-track::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--red), var(--teal), var(--red));
  transform: translateX(-50%);
}

.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-bottom: 3rem; align-items: start; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(even) .tl-content { grid-column: 3; }
.timeline-item:nth-child(even) .tl-empty   { grid-column: 1; grid-row: 1; }

.tl-content {
  padding: 1.8rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
  border-radius: var(--radius-lg);
}
.tl-content:hover { border-color: rgba(0, 155, 155, .3); transform: translateY(-3px); }
.tl-content::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--red), var(--teal));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.timeline-item:nth-child(odd) .tl-content { grid-column: 1; }
.timeline-item:nth-child(odd) .tl-empty   { grid-column: 3; grid-row: 1; }

.tl-center { grid-column: 2; display: flex; flex-direction: column; align-items: center; padding-top: 1.5rem; position: relative; z-index: 2; }
.tl-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 3px solid var(--black); box-shadow: 0 0 0 2px var(--red); flex-shrink: 0; }
.tl-year { font-family: var(--num); font-size: .68rem; letter-spacing: .15em; color: var(--teal); margin-top: .5rem; text-align: center; white-space: nowrap; font-weight: 600; }

.tl-content h3 { font-family: var(--serif); font-size: var(--fs-subhead); color: var(--white); font-weight: 600; margin-bottom: .55rem; line-height: 1.25; }
.tl-era-row { display: flex; align-items: center; gap: .6rem; margin-bottom: .65rem; }
.tl-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, rgba(200, 32, 42, .18), rgba(0, 155, 155, .18));
  border: 1px solid rgba(0, 155, 155, .25);
  border-radius: 50%;
  font-size: .95rem;
  flex-shrink: 0;
  transition: transform .35s var(--ease), border-color .3s ease;
}
.tl-content:hover .tl-icon {
  transform: rotate(-8deg) scale(1.08);
  border-color: var(--teal-light);
}
.tl-era { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.tl-content p { font-size: var(--fs-body); color: rgba(248, 248, 248, .65); line-height: 1.85; }
.tl-content p + p { margin-top: .55rem; }
.tl-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tl-pill {
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; padding: .3rem .7rem;
  background: rgba(248, 248, 248, .04);
  border: 1px solid var(--border);
  color: rgba(248, 248, 248, .65);
  border-radius: 999px;
  transition: border-color .25s ease, color .25s ease;
}
.tl-content:hover .tl-pill { border-color: rgba(0, 155, 155, .25); color: rgba(248, 248, 248, .85); }
.tl-cta { margin-top: 1.2rem; display: flex; gap: .7rem; flex-wrap: wrap; }

.timeline-item.tl-present .tl-dot {
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--teal), 0 0 24px rgba(0, 200, 200, .55);
  animation: presentPulse 2.4s ease-in-out infinite;
}
@keyframes presentPulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--teal), 0 0 14px rgba(0, 200, 200, .45); }
  50%      { box-shadow: 0 0 0 2px var(--teal), 0 0 30px rgba(0, 200, 200, .85); }
}
.timeline-item.tl-present .tl-year { color: var(--gold-light); }
.timeline-item.tl-present .tl-content {
  border-color: rgba(0, 155, 155, .35);
  background: linear-gradient(180deg, var(--dark3) 0%, rgba(0, 155, 155, .04) 100%);
}
.timeline-item.tl-present .tl-era { color: var(--gold-light); }
.timeline-item.tl-present .tl-icon {
  background: linear-gradient(135deg, rgba(212, 175, 90, .25), rgba(0, 155, 155, .25));
  border-color: var(--gold-light);
}

/* ---- VALUES / PILLARS ---- */
.values { padding: 2rem 0 2.6rem; background: var(--dark2); position: relative; overflow: hidden; }
.values::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212, 175, 90, .05), transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 155, 155, .05), transparent 70%);
}
.values-head { max-width: 700px; margin: 0 auto 3rem; text-align: center; position: relative; z-index: 1; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  position: relative; z-index: 1;
}
.value-card {
  padding: 2.2rem 1.6rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s ease, background .3s ease;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(to right, var(--red), var(--teal), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 155, 155, .3);
  background: linear-gradient(180deg, var(--dark3), rgba(0, 155, 155, .03));
}
.value-card:hover::before { transform: scaleX(1); }
.vc-icon {
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0, 155, 155, .3);
  background: linear-gradient(135deg, rgba(200, 32, 42, .08), rgba(0, 155, 155, .08));
  border-radius: var(--radius-lg);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: transform .35s var(--ease);
}
.value-card:hover .vc-icon { transform: rotate(-6deg) scale(1.08); }
.value-card h4 {
  font-family: var(--serif); font-size: var(--fs-subhead); font-weight: 600;
  color: var(--white); margin-bottom: .55rem;
}
.value-card p {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .62);
  line-height: 1.8;
}

/* ---- CLOSING CTA ---- */
.journey-cta {
  position: relative; overflow: hidden;
  padding: 3.6rem var(--gutter);
  border-top: 1px solid rgba(200, 32, 42, .15);
  text-align: center;
}
.jc-bg { position: absolute; inset: 0; z-index: 0; }
.jc-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.5) contrast(1.05);
}
.jc-bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 85% at 50% 50%, rgba(8,8,8,.35) 0%, rgba(8,8,8,.72) 80%, var(--black) 100%),
    linear-gradient(135deg, rgba(200, 32, 42, .1), rgba(0, 155, 155, .06));
}
.jc-inner { position: relative; z-index: 1; max-width: 760px; }
.journey-cta h2 { margin-bottom: 1rem; }
.journey-cta p {
  font-size: var(--fs-body); color: rgba(248, 248, 248, .7); line-height: 1.95;
  max-width: 600px; margin: 0 auto 2rem; font-weight: 300;
}
.jc-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   SUSTAINABILITY · TEXT + CERTIFICATE GRID
   ============================================================ */
.sustain-section { padding-top: 2.6rem; padding-bottom: 3rem; }

/* L-shape: certificate floats top-right, text wraps around it */
.sustain-flow::after { content: ''; display: block; clear: both; }
.sustain-flow .cert-grid {
  float: right; width: 52%; max-width: 600px;
  margin: .4rem 0 .8rem 3rem;
}
.sustain-text .section-h { margin: .4rem 0 1rem; }
.sustain-text .section-sub { color: rgba(248, 248, 248, .68); }
.sustain-text .section-sub + .section-sub { margin-top: 1rem; }
.sustain-text .about-pills { margin-top: 1.8rem; }

/* ---- Certificate grid (scans shown as tiles) ---- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem; align-content: start;
}
.cert-grid:has(.cert-img:only-child) { grid-template-columns: 1fr; }
.cert-img {
  margin: 0; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cert-img:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0, 0, 0, .55); }
.cert-img img { width: 100%; height: auto; display: block; }
.cert-img figcaption {
  background: var(--dark3); color: var(--gray-light);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  text-align: center; padding: .75rem 1rem; border-top: 1px solid var(--border);
}

/* ============================================================
   ACCESSIBILITY — visible keyboard focus for every interactive element
   (mouse/touch users never see it; only keyboard ":focus-visible" does)
   ============================================================ */
:where(a, button, select, textarea, [tabindex], .cat-card, .product-card):focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Inputs keep their teal glow but also gain a clear ring when keyboard-focused */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 1px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1600px) { :root { --max: 1680px; } }

/* Compact the full nav in the narrow-desktop band so all seven links +
   logo always fit before the hamburger takes over at 820px (prevents the
   links overrunning the logo / clipping the CTA around 850–950px). */
@media (max-width: 1080px) and (min-width: 821px) {
  .nav-links   { gap: 1.5rem; }
  .nav-links a { font-size: .7rem; letter-spacing: .15em; }
  .nav-cta     { padding: .5rem 1.05rem !important; letter-spacing: .08em !important; }
}

@media (max-width: 1200px) {
  :root { --section-y: 3.5rem; }
  .heritage-grid { gap: 1.25rem; }
}

@media (max-width: 1024px) {
  :root { --section-y: 3.25rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  /* hero sits under the fixed navbar (padding-top:0), so clear --nav-h here
     or the "Chennai · Est. 2026" eyebrow hides behind the header */
  .hero-left  { padding: var(--head-clear) var(--gutter) 3rem; }
  .hero-right { height: 60vw; min-height: 360px; }

  .heritage-grid  { grid-template-columns: 1fr; gap: 1.2rem; }
  .heritage-stats { grid-template-columns: repeat(2, 1fr); }
  .heritage-banner { aspect-ratio: 16 / 9; max-height: 360px; }
  .hb-content      { padding: 2rem 1.8rem; max-width: 100%; }
  .field-gallery   { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }

  .shop-by-banner,
  .shop-by-banner.shop-by-banner--two { grid-template-columns: 1fr; }
  .cat-card                           { aspect-ratio: 3 / 4; }

  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero    { min-height: 44vh; }
  .about-row       { grid-template-columns: 1fr; gap: 1.6rem; }
  .about-row + .about-row { margin-top: 2.6rem; }
  .about-row-media { order: -1; height: 240px; }
  .about-story     { padding: 2.8rem 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .featured            { grid-template-columns: 1fr; min-height: auto; }
  .featured-img        { height: 78vw; min-height: 420px; }
  .featured-img img    { object-position: center top; }
  .featured-img-overlay { background: linear-gradient(to top, rgba(22,22,22,.95) 0%, transparent 60%); }
  .featured-content    { padding: 4rem var(--gutter); }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) { border-bottom: 1px solid var(--border); }

  .enquiry-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .enquiry-split { grid-template-columns: 1fr; gap: 2.6rem; }
  .enquiry-intro { max-width: 100%; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .reach-stage { aspect-ratio: 2 / 1; }

  /* Journey page */
  .js-grid       { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card  { grid-template-columns: 240px 1fr; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }

  /* Sustainability — stack with certificate below the text */
  .sustain-flow { display: flex; flex-direction: column; }
  .sustain-flow .sustain-text { order: 1; }
  .sustain-flow .cert-grid {
    order: 2; float: none; width: 100%; max-width: 520px;
    margin: 2.5rem auto 0;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-h: 72px;
    --nav-h-sm: 64px;
    --section-y: var(--section-y-sm);
    --gutter: 5%;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 56px; }
  .navbar.scrolled .nav-logo img { height: 56px; }

  /* Smaller back-to-top on mobile (transparency is set globally above) */
  #scrollTop { width: 38px; height: 38px; font-size: .95rem; bottom: 1rem; right: 1rem; }

  .hero-left  { padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 2.5rem; }
  .hero-desc  { font-size: .98rem; }
  .hero-btns  { gap: .75rem; }
  .hero-badge { right: 1rem; bottom: 1rem; padding: .9rem 1rem; min-width: 150px; }
  .hero-stats { gap: 1.4rem 2rem; }
  .hero-stat-n { font-size: 2rem; }
  .hero-scroll { display: none; }

  .heritage-stats { grid-template-columns: 1fr 1fr; padding: 1.6rem 1.2rem; gap: 1rem; }
  .heritage-stat .n { font-size: 1.8rem; }
  .heritage-card .h-img { height: 210px; }
  .heritage-card .h-num { font-size: 1.9rem; }
  .heritage-close { padding: 2rem 1.2rem; }
  .heritage-banner { aspect-ratio: 4 / 5; max-height: 480px; }
  .hb-veil         { background: linear-gradient(to top, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .35) 60%, rgba(8, 8, 8, .55) 100%); }
  .hb-content      { padding: 1.6rem 1.4rem; justify-content: flex-end; }
  .hd-glow         { display: none; }

  .cat-card { aspect-ratio: 3 / 4; }
  .cat-overlay { padding: 1.6rem 1.4rem; }
  .cat-card p { margin-bottom: 1.1rem; max-width: 100%; }

  .about-imgs { grid-template-rows: 220px 160px; gap: .75rem; }
  .about-imgs img:first-child { height: 220px; }
  .about-facts { grid-template-columns: 1fr 1fr; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .product-img-wrap { height: 380px; }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 4px;
  }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .gallery-grid .g-item:nth-child(2),
  .gallery-grid .g-item:nth-child(3),
  .gallery-grid .g-item:nth-child(4),
  .gallery-grid .g-item:nth-child(5),
  .gallery-grid .g-item:nth-child(6) { grid-column: span 3; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }

  .form-row    { grid-template-columns: 1fr; }
  .form-box    { padding: 2rem 1.4rem; }
  .footer-top  { flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; }
  .footer-brand { align-items: center; }
  .footer-logo img { height: 44px; }

  .featured-content { padding: 3rem var(--gutter); }
  .price-amount { font-size: 2rem; }

  .reach-stage { aspect-ratio: 2 / 1; }
  .reach-label { display: none; }

  .timeline { padding: 2.5rem var(--gutter) 4rem; }
  .timeline-track::before { left: 1rem; }
  .timeline-item { grid-template-columns: 32px 1fr; gap: 1rem; margin-bottom: 2rem; }
  .timeline-item:nth-child(odd)  .tl-content,
  .timeline-item:nth-child(even) .tl-content { grid-column: 2; grid-row: auto; }
  .timeline-item:nth-child(odd)  .tl-empty,
  .timeline-item:nth-child(even) .tl-empty   { display: none; }
  .tl-center { grid-column: 1; grid-row: 1; padding-top: .5rem; align-items: flex-start; }
  .tl-year   { font-size: .6rem; }
  .tl-content { padding: 1.4rem; }

  /* Journey page mobile */
  .ji-grid      { grid-template-columns: 1fr; gap: 1rem; }
  .ji-card      { padding: 1.8rem; }
  .journey-hero { padding: var(--head-clear) var(--gutter) 2.8rem; }
  .journey-stats-strip { padding: 3rem 0; }
  .js-grid      { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .js-stat      { padding: 1.5rem 1rem; }
  .js-n         { font-size: 1.6rem; }
  .journey-intro { padding: 3rem 0; }
  .process-flow  { padding: 3rem 0; }
  .pf-grid       { grid-template-columns: repeat(2, 1fr); column-gap: 1rem; row-gap: 2.4rem; }
  .pf-step::after { display: none; }   /* connectors only make sense in the 3-up layout */
  .pf-step:nth-child(4), .pf-step:nth-child(5), .pf-step:nth-child(6) { grid-column: auto; grid-row: auto; }
  .founders      { padding: 4rem 0; }
  .founder-card { grid-template-columns: 1fr; }
  .fc-img       { height: auto; aspect-ratio: auto; background: var(--dark2); }
  .fc-img img   { height: auto; width: 100%; object-fit: contain; display: block; filter: brightness(1) grayscale(0); }
  .fc-img-veil  { display: none; }
  .timeline-section { padding-top: 3.5rem; }
  .timeline-head    { margin-bottom: 1.5rem; }
  .values       { padding: 4rem 0; }
  .values-grid  { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .value-card   { padding: 1.7rem 1.3rem; }
  .journey-cta  { padding: 3rem var(--gutter); }
}

@media (max-width: 520px) {
  :root { --gutter: 5%; }

  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-red, .btn-ghost, .btn-teal, .btn-gold { width: 100%; }

  .products-grid { grid-template-columns: 1fr; }
  .product-img-wrap { height: 440px; }

  .field-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-grid .g-item:nth-child(n) { grid-column: span 1; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 2; }

  .about-facts    { grid-template-columns: 1fr; }
  .heritage-stats { grid-template-columns: 1fr; }
  .hero-stats     { gap: 1.25rem; }
  .pf-grid        { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }

  .form-box      { padding: 1.6rem 1.2rem; }
  .footer-bottom { flex-direction: column; align-items: center; }
  .cert-wrap     { gap: .4rem; }

  .featured-tag::before { display: none; }
  .featured-tag { padding-left: 0; }
  .spec-row { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .spec-value { text-align: left; }

  .journey-hero { padding: var(--head-clear) var(--gutter) 2.4rem; }
  .heritage-card .h-body { padding: 1.4rem; }

  /* Journey page narrowest */
  .js-grid     { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .jc-btns     { flex-direction: column; }
  .jc-btns a   { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
