/* =========================================================================
   MH PRODUCTION & ENTERTAINMENT
   Stylesheet — "Production Manifest" design system
   Dark luxury cinema theme built around the language of film logistics:
   waybills, routing codes, boarding passes, customs stamps.
   -------------------------------------------------------------------------
   Contents
   1.  Design tokens
   2.  Reset & base
   3.  Typography
   4.  Layout helpers
   5.  Buttons
   6.  Navbar
   7.  Hero
   8.  Section chrome (eyebrows, dividers, glass cards)
   9.  Home — intro / services preview / stats / featured / CTA
   10. Manifest card (portfolio)
   11. Page header (interior pages)
   12. About page
   13. Services page
   14. Portfolio filters
   15. Gallery
   16. Awards timeline
   17. Contact
   18. Footer
   19. Back to top + scroll reveal
   20. Responsive
   21. Accessibility
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root{
  /* Colour */
  --void:        #0B0A08;   /* primary background — warm near-black */
  --void-soft:   #0F0D0A;
  --charcoal:    #17140F;   /* alternate section background */
  --charcoal-2:  #211C16;   /* card / glass base */
  --charcoal-3:  #2A241C;   /* raised surfaces, hover */
  --line:        rgba(201,162,75,0.16);
  --line-strong: rgba(201,162,75,0.32);

  --gold:        #C9A24B;   /* primary accent — antique gold */
  --gold-bright: #E8C878;   /* hover / highlight */
  --gold-dim:    #8A6F35;   /* deep gold for text on light */
  --gold-ink:    #171208;   /* text set on gold backgrounds */

  --ivory:       #F3EFE6;   /* primary text — warm white */
  --stone:       #9A9282;   /* secondary / muted text */
  --stone-dim:   #6B6455;   /* tertiary text, captions */

  /* Type */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Scale */
  --fs-hero:   clamp(3rem, 8vw, 7.5rem);
  --fs-h1:     clamp(2.4rem, 5vw, 4.2rem);
  --fs-h2:     clamp(2rem, 3.6vw, 3.1rem);
  --fs-h3:     clamp(1.4rem, 2.2vw, 1.9rem);
  --fs-lead:   clamp(1.05rem, 1.4vw, 1.3rem);

  /* Rhythm */
  --gutter:    1.75rem;
  --section-y: clamp(5rem, 9vw, 8.5rem);
  --radius:    2px;         /* deliberately near-square — ledger, not app-UI */
  --radius-lg: 6px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --fast: .25s;
  --slow: .7s;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  background: var(--void);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button{ font-family: inherit; cursor: pointer; }

::selection{ background: var(--gold); color: var(--gold-ink); }

/* subtle film-grain wash over the whole page for a cinematic surface */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------------- */
h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--ivory);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

h1{ font-size: var(--fs-h1); font-weight: 400; }
h2{ font-size: var(--fs-h2); font-weight: 400; }
h3{ font-size: var(--fs-h3); font-weight: 500; }

p{ margin: 0 0 1rem; color: var(--stone); }
p:last-child{ margin-bottom: 0; }

.lead{
  font-size: var(--fs-lead);
  color: var(--stone);
  font-weight: 400;
  line-height: 1.6;
}

em{ font-style: italic; color: var(--gold); }

.serif-italic{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* utility / manifest style label — small tracked mono caps */
.manifest-tag{
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.manifest-tag::before{
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.text-stone{ color: var(--stone) !important; }
.text-gold{ color: var(--gold) !important; }

/* -------------------------------------------------------------------------
   4. LAYOUT HELPERS
   ------------------------------------------------------------------------- */
.section{ padding: var(--section-y) 0; position: relative; }
.section-charcoal{ background: var(--charcoal); }
.section-void{ background: var(--void); }

.section-head{
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2{ margin-top: .9rem; }

.hairline{
  height: 1px;
  width: 100%;
  background: var(--line);
  border: 0;
  margin: 0;
}

.container{ max-width: 1240px; }

/* -------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.btn-mh{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--fast) var(--ease);
  white-space: nowrap;
}

.btn-mh-gold{
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
}
.btn-mh-gold:hover{
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--gold-ink);
  transform: translateY(-2px);
}

.btn-mh-ghost{
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-strong);
}
.btn-mh-ghost:hover{
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-mh i{ font-size: 1rem; }

/* -------------------------------------------------------------------------
   6. NAVBAR
   ------------------------------------------------------------------------- */
#mainNav{
  padding: 1.4rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--fast) var(--ease);
}
#mainNav.is-scrolled{
  padding: .9rem 0;
  background: rgba(11,10,8,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar-brand{
  display: flex;
  align-items: center;
  gap: .8rem;
}
.navbar-brand .brand-mark{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-ink);
  background: var(--gold);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.navbar-brand .brand-wordmark{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ivory);
  letter-spacing: .01em;
}
.navbar-brand .brand-wordmark small{
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .2rem;
}

.navbar-nav .nav-link{
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  padding: .6rem 1.05rem !important;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  color: var(--ivory);
}
.navbar-nav .nav-link.active::after{
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: .1rem;
  height: 1px;
  background: var(--gold);
}
.navbar-nav .nav-link.btn-nav-contact{
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--gold);
  margin-left: .4rem;
}
.navbar-nav .nav-link.btn-nav-contact:hover{
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
}

.navbar-toggler{
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .5rem .6rem;
  background: transparent;
}
.navbar-toggler:focus{ box-shadow: none; }
.toggler-bar{
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin: 4px 0;
}

@media (max-width: 991.98px){
  .navbar-collapse{
    background: var(--charcoal);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
    padding: .5rem 1rem;
  }
  .navbar-nav .nav-link.active::after{ display: none; }
  .navbar-nav .nav-link.btn-nav-contact{ margin: .5rem 0; display: inline-block; }
}

/* -------------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 0%, #1c1710 0%, var(--void) 62%);
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media .hero-fallback{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-media .hero-fallback{
  background:
    linear-gradient(180deg, rgba(11,10,8,.35) 0%, rgba(11,10,8,.55) 55%, var(--void) 100%),
    repeating-linear-gradient(115deg, #17140f 0 2px, #1c170f 2px 4px),
    linear-gradient(120deg, #1a1610, #0b0a08 70%);
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11,10,8,.2) 0%, rgba(11,10,8,.35) 40%, var(--void) 100%);
}

.hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  padding-top: 9rem;
}

.hero-manifest{
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: .85rem 0;
  margin-bottom: 2.2rem;
}
.hero-manifest span{ color: var(--stone); }
.hero-manifest strong{ color: var(--ivory); font-weight: 500; }

.hero h1{
  font-size: var(--fs-hero);
  font-weight: 400;
  color: var(--ivory);
  max-width: 15ch;
}

.hero .lead{
  max-width: 46ch;
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-desc{
  max-width: 56ch;
  color: var(--stone);
  margin-top: 1rem;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.hero-scroll{
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  writing-mode: vertical-rl;
}
.hero-scroll .line{
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--gold), transparent);
}

/* -------------------------------------------------------------------------
   8. SECTION CHROME — glass cards
   ------------------------------------------------------------------------- */
.glass-card{
  background: linear-gradient(160deg, rgba(33,28,22,.75), rgba(23,20,15,.6));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.glass-card:hover{
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

/* -------------------------------------------------------------------------
   9. HOME SECTIONS
   ------------------------------------------------------------------------- */

/* Intro */
.intro-grid{
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.intro-grid .intro-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--ivory);
  line-height: 1.35;
}
.intro-stats-inline{
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.intro-stats-inline .num{
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
}
.intro-stats-inline .label{
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone-dim);
}

/* Services preview */
.service-card{
  padding: 2.3rem 2rem;
  height: 100%;
}
.service-card .icon{
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.service-card .index{
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--stone-dim);
  letter-spacing: .1em;
  margin-bottom: .9rem;
  display: block;
}
.service-card h3{ margin-bottom: .7rem; font-size: 1.25rem; }
.service-card p{ font-size: .93rem; margin-bottom: 0; }

/* Stats / counters */
.stats-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-block{
  padding: clamp(2.2rem, 4vw, 3.2rem) 1rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat-block:first-child{ border-left: 0; }
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .15rem;
}
.stat-label{
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: .9rem;
}

/* Featured productions (industries) */
.industry-card{
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
}
.industry-card .backdrop{
  position: absolute;
  inset: 0;
  transition: transform var(--slow) var(--ease);
}
.industry-card:hover .backdrop{ transform: scale(1.06); }
.industry-card.bollywood .backdrop{ background: linear-gradient(155deg,#241a10,#0b0a08 75%); }
.industry-card.hollywood .backdrop{ background: linear-gradient(155deg,#1a1a1c,#0b0a08 75%); }
.industry-card.arabic .backdrop{ background: linear-gradient(155deg,#221708,#0b0a08 75%); }
.industry-card::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,10,8,.92) 5%, rgba(11,10,8,.15) 65%);
}
.industry-card .content{
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.industry-card .manifest-tag{ margin-bottom: .8rem; }
.industry-card h3{ font-size: 1.7rem; margin-bottom: .5rem; }
.industry-card .count{
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--stone);
  letter-spacing: .08em;
}

/* CTA band */
.cta-band{
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta-band::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201,162,75,.16), transparent 60%);
}
.cta-band h2{
  position: relative;
  max-width: 16ch;
  margin: 0 auto;
}
.cta-band .lead{ max-width: 44ch; margin: 1.3rem auto 2.4rem; position: relative; }
.cta-band .hero-actions{ justify-content: center; position: relative; }

/* -------------------------------------------------------------------------
   10. MANIFEST CARD — portfolio movie card
   ------------------------------------------------------------------------- */
.manifest-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal-2);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.manifest-card:hover{
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.manifest-card .poster{
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(201,162,75,.05) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, var(--charcoal-3), var(--void-soft));
}
.manifest-card .poster i{
  font-size: 2.4rem;
  color: var(--line-strong);
}
.manifest-card .poster .stamp{
  position: absolute;
  top: .9rem;
  right: .9rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  padding: .25rem .5rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  background: rgba(11,10,8,.55);
}

.manifest-card .route{
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .1em;
  color: var(--stone-dim);
  padding: .6rem .9rem;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  justify-content: space-between;
  background: var(--void-soft);
}
.manifest-card .route .dest{ color: var(--gold); }

.manifest-card .info{
  padding: 1.1rem 1.1rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.manifest-card .info h4{
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: .5rem;
  line-height: 1.25;
}
.manifest-card .info .role{
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--stone);
  margin-top: auto;
  padding-top: .7rem;
}

/* portfolio filter bar */
.filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 3rem;
}
.filter-btn{
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .65rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--stone);
  transition: all var(--fast) var(--ease);
}
.filter-btn:hover{ color: var(--ivory); border-color: var(--gold); }
.filter-btn.active{
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
}

.portfolio-section-title{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 4rem 0 2rem;
}
.portfolio-section-title:first-of-type{ margin-top: 0; }
.portfolio-section-title h3{ white-space: nowrap; font-size: 1.6rem; }
.portfolio-section-title .rule{ height: 1px; width: 100%; background: var(--line); }
.portfolio-section-title .count{
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--stone-dim);
  white-space: nowrap;
}

/* -------------------------------------------------------------------------
   11. PAGE HEADER — interior pages
   ------------------------------------------------------------------------- */
.page-header{
  position: relative;
  padding: 10.5rem 0 4.5rem;
  background: radial-gradient(ellipse at 20% 0%, #1c1710 0%, var(--void) 65%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-header::before{
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 120px);
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}
.page-header .manifest-tag{ margin-bottom: 1.1rem; }
.page-header h1{ font-size: clamp(2.4rem, 5.5vw, 4.2rem); max-width: 18ch; }
.page-header .lead{ max-width: 54ch; margin-top: 1.2rem; }
.breadcrumb-manifest{
  position: relative;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone-dim);
  margin-top: 2rem;
  display: flex;
  gap: .5rem;
}
.breadcrumb-manifest a{ color: var(--stone); }
.breadcrumb-manifest a:hover{ color: var(--gold); }
.breadcrumb-manifest .current{ color: var(--gold); }

/* -------------------------------------------------------------------------
   12. ABOUT PAGE
   ------------------------------------------------------------------------- */
.about-story-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-visual{
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(201,162,75,.06) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, var(--charcoal-3), var(--void-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-visual i{ font-size: 3.5rem; color: var(--line-strong); }
.about-visual .corner-tag{
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}

.mv-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.mv-card{ padding: 2.2rem; }
.mv-card .manifest-tag{ margin-bottom: 1rem; }
.mv-card p{ font-size: .95rem; }

.why-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.why-item{
  display: flex;
  gap: 1.1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.why-item i{
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.why-item h4{ font-size: 1rem; margin-bottom: .35rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .01em; }
.why-item p{ font-size: .88rem; margin: 0; }

.exp-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.exp-strip .exp-item{
  flex: 1 1 220px;
  padding: 2rem;
  border-left: 1px solid var(--line);
}
.exp-strip .exp-item:first-child{ border-left: 0; }
.exp-strip .exp-item .stat-num{ font-size: 2.2rem; }

/* -------------------------------------------------------------------------
   13. SERVICES PAGE
   ------------------------------------------------------------------------- */
.service-detail-card{
  padding: 2.4rem;
  height: 100%;
  position: relative;
}
.service-detail-card .top-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.service-detail-card .icon{
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}
.service-detail-card .code{
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--stone-dim);
  letter-spacing: .1em;
}
.service-detail-card h3{ font-size: 1.3rem; margin-bottom: .8rem; }
.service-detail-card p{ font-size: .92rem; }
.service-detail-card .tags{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.service-detail-card .tags span{
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--stone-dim);
  border: 1px solid var(--line);
  padding: .25rem .55rem;
  border-radius: var(--radius);
}

.process-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.process-step{
  padding: 1.8rem 1.5rem;
  border-top: 2px solid var(--gold);
  background: var(--charcoal-2);
}
.process-step .step-num{
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .1em;
}
.process-step h4{ font-size: 1rem; margin: .8rem 0 .5rem; font-family: var(--font-body); font-weight: 600; }
.process-step p{ font-size: .85rem; margin: 0; }

/* -------------------------------------------------------------------------
   15. GALLERY
   ------------------------------------------------------------------------- */
.gallery-item{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(201,162,75,.05) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, var(--charcoal-3), var(--void-soft));
  cursor: pointer;
}
.gallery-item.tall{ aspect-ratio: 4/5; }
.gallery-item i{ font-size: 2rem; color: var(--line-strong); transition: color var(--fast); }
.gallery-item:hover i{ color: var(--gold); }
.gallery-item .g-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(0deg, rgba(11,10,8,.92), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--fast) var(--ease);
}
.gallery-item:hover .g-caption{ transform: translateY(0); opacity: 1; }
.gallery-item .g-caption .cat{
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .2rem;
}
.gallery-item .g-caption .title{ font-size: .85rem; color: var(--ivory); }

/* -------------------------------------------------------------------------
   16. AWARDS TIMELINE
   ------------------------------------------------------------------------- */
.timeline{
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.timeline::before{
  content: "";
  position: absolute;
  left: 18px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(var(--line-strong), var(--line-strong) 90%, transparent);
}
.timeline-item{
  position: relative;
  padding: 0 0 3.2rem 3.2rem;
}
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-item .dot{
  position: absolute;
  left: 11px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--gold);
}
.timeline-item .t-card{
  padding: 1.6rem 1.8rem;
}
.timeline-item .t-year{
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}
.timeline-item h4{ font-size: 1.15rem; margin-bottom: .35rem; }
.timeline-item .role{
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--stone);
  letter-spacing: .04em;
}

/* -------------------------------------------------------------------------
   17. CONTACT
   ------------------------------------------------------------------------- */
.contact-grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info-card{ padding: 2.4rem; margin-bottom: 1.5rem; }
.contact-info-card .row-item{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .9rem 0;
  border-top: 1px solid var(--line);
}
.contact-info-card .row-item:first-child{ border-top: 0; padding-top: 0; }
.contact-info-card .row-item i{ color: var(--gold); font-size: 1.1rem; margin-top: .2rem; }
.contact-info-card .row-item .label{
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone-dim);
  display: block;
  margin-bottom: .2rem;
}
.contact-info-card .row-item .value{ color: var(--ivory); font-size: .95rem; }

.contact-quick{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-quick .btn-mh{ flex: 1; justify-content: center; }

.contact-form-card{ padding: clamp(2rem, 4vw, 3rem); }
.form-floating-mh{ margin-bottom: 1.4rem; }
.form-floating-mh label{
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone-dim);
  display: block;
  margin-bottom: .6rem;
}
.form-floating-mh .form-control{
  background: var(--void-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ivory);
  padding: .9rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
}
.form-floating-mh .form-control:focus{
  background: var(--void-soft);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,.12);
  color: var(--ivory);
}
.form-floating-mh .form-control::placeholder{ color: var(--stone-dim); }
textarea.form-control{ min-height: 140px; resize: vertical; }

.form-status{
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  display: none;
}
.form-status.show{ display: block; }
.form-status.ok{ color: var(--gold); }
.form-status.err{ color: #d98a6a; }

.map-frame{
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(201,162,75,.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(201,162,75,.05) 0 1px, transparent 1px 40px),
    var(--charcoal-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .6rem;
  text-align: center;
}
.map-frame i{ font-size: 2rem; color: var(--gold); }
.map-frame span{ font-family: var(--font-mono); font-size: .75rem; color: var(--stone); letter-spacing: .06em; }

/* -------------------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------------------- */
.site-footer{
  background: var(--void-soft);
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .brand-mark{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-ink);
  background: var(--gold);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}
.footer-brand p{ font-size: .88rem; max-width: 34ch; }
.footer-social{ display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-social a{
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone);
  transition: all var(--fast) var(--ease);
}
.footer-social a:hover{ color: var(--gold-ink); background: var(--gold); border-color: var(--gold); }

.site-footer h6{
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.site-footer .footer-links ul li,
.site-footer .footer-services ul li{ margin-bottom: .7rem; }
.site-footer .footer-links a,
.site-footer .footer-services a{
  font-size: .88rem;
  color: var(--stone);
}
.site-footer .footer-links a:hover,
.site-footer .footer-services a:hover{ color: var(--gold); }

.footer-contact ul li{
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--stone);
  margin-bottom: .8rem;
}
.footer-contact ul li i{ color: var(--gold); margin-top: .2rem; }

.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--stone-dim);
}

/* -------------------------------------------------------------------------
   19. BACK TO TOP + SCROLL REVEAL
   ------------------------------------------------------------------------- */
.back-to-top{
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--fast) var(--ease);
  z-index: 1500;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.back-to-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--gold-bright); }

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: .1s; }
.reveal-delay-2{ transition-delay: .2s; }
.reveal-delay-3{ transition-delay: .3s; }
.reveal-delay-4{ transition-delay: .4s; }

/* -------------------------------------------------------------------------
   20. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1199.98px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .process-strip{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px){
  .intro-grid,
  .about-story-grid,
  .contact-grid{ grid-template-columns: 1fr; }
  .about-story-grid{ direction: ltr; }
  .why-list{ grid-template-columns: 1fr; }
  .mv-grid{ grid-template-columns: 1fr; }
  .exp-strip{ flex-direction: column; }
  .exp-strip .exp-item{ border-left: 0; border-top: 1px solid var(--line); }
  .exp-strip .exp-item:first-child{ border-top: 0; }
  .hero{ align-items: center; min-height: 92vh; }
  .hero-inner{ padding-top: 7rem; }
}

@media (max-width: 767.98px){
  :root{ --section-y: 4rem; }
  .footer-grid{ grid-template-columns: 1fr; gap: 2rem; }
  .stat-block{ border-left: 0; border-top: 1px solid var(--line); }
  .stat-block:first-child{ border-top: 0; }
  .stats-strip .row > div:nth-child(1) .stat-block,
  .stats-strip .row > div:nth-child(2) .stat-block{ }
  .process-strip{ grid-template-columns: 1fr; }
  .hero-scroll{ display: none; }
  .hero-manifest{ font-size: .65rem; gap: .4rem 1.2rem; }
  .page-header{ padding: 8.5rem 0 3.5rem; }
}

/* -------------------------------------------------------------------------
   21. ACCESSIBILITY
   ------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
.form-control:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal{ opacity: 1; transform: none; }
}
