/* ==========================================================================
   Shree Enterprises — Institutional Linen Luxury (Light)
   Design tokens: navy/gold/linen/sky brand palette in an airy, paper-light
   register. Navy is kept as a deliberate dark accent (stats band, contact
   panel, footer) — the same rhythm the original site already used.
   Motif: pressed linen fold-creases, gold thread dividers, soft glass cards.
   ========================================================================== */

:root{
  /* --- brand core (from live site) --- */
  --navy:        #213E60;
  --gold:        #E68C3A;
  --linen:       #F4F2EF;
  --sky:         #94B6EF;

  /* --- extended light system (derived from brand core) --- */
  --cream:       #FAF7F2;   /* page base / alt-section bg */
  --paper:       #FFFFFF;   /* card surface / alt-section bg */
  --ink:         #16294A;   /* primary text, deep navy */
  --navy-deep:   #122340;   /* darkest navy, for dark-panel gradients */
  --gold-deep:   #C96F22;   /* accessible gold for text/icons on light bg */
  --gold-light:  #F6C892;   /* soft gold wash, hover fills */
  --steel:       #5B6B82;   /* muted body text, navy-biased grey */
  --steel-dim:   #8A96A8;   /* captions */

  --line:        rgba(33,62,96,0.12);
  --line-strong: rgba(33,62,94,0.22);
  --thread:      rgba(230,140,58,0.45);

  --glow-gold:   0 0 50px rgba(230,140,58,0.14);
  --shadow-card: 0 20px 45px -24px rgba(22,41,74,0.22);
  --shadow-nav:  0 12px 34px -18px rgba(22,41,74,0.28);

  --font-display: 'Syne', 'Outfit', sans-serif;
  --font-head:    'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  color-scheme: light;
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure{ margin: 0; padding: 0; }
ul{ list-style: none; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select{ font: inherit; color: inherit; }

body{
  background: var(--cream);
  color: var(--steel);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

:focus-visible{
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus{ top: 1rem; }

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

/* ---------- layout helpers ---------- */
.container{
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.thread-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--thread) 50%, transparent);
}

section{ position: relative; }
.bg-cream{ background: var(--cream); }
.bg-paper{ background: var(--paper); }

.section-pad{ padding: clamp(4.5rem, 8vw, 7.5rem) 0; }

.section-head{
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.eyebrow::before{
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  color: var(--navy);
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.section-sub{
  margin-top: 1rem;
  color: var(--steel);
  font-size: 1.0625rem;
  max-width: 60ch;
}

/* ---------- glass / paper surfaces ---------- */
.glass{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(22,41,74,0.04);
  transition: transform 0.45s cubic-bezier(.22,1,.36,1), border-color 0.35s ease, box-shadow 0.45s ease;
}
.glass:hover{
  transform: translateY(-6px) scale(1.015);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

/* ---------- buttons ---------- */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
}
.btn::after{
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.65) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
  mix-blend-mode: overlay;
}
.btn:hover::after{ transform: translateX(120%); }
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #FFFFFF;
  box-shadow: 0 14px 28px -12px rgba(201,111,34,0.45);
}
.btn-primary:hover{ box-shadow: 0 18px 36px -10px rgba(201,111,34,0.55); }

.btn-ghost{
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover{ border-color: var(--navy); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar{
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1180px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem 0.65rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-nav);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.navbar.is-scrolled{
  background: rgba(255,255,255,0.94);
  border-color: var(--line-strong);
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-mark{
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.brand span{ color: var(--gold-deep); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 2px; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.15; }
.brand-logo{ height: 38px; width: auto; display: block; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links a{
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--steel);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.is-active{ color: var(--navy); }
.nav-links a:hover::after, .nav-links a.is-active::after{ width: 100%; }

.nav-cta{ display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-cta .btn{ padding: 0.6rem 1.15rem; font-size: 0.8rem; white-space: nowrap; }

.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(33,62,96,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span{
  width: 18px; height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open{ opacity: 1; pointer-events: auto; }
.mobile-menu a{
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}
.mobile-menu a:hover{ color: var(--gold-deep); }
.mobile-menu-cta{
  margin-top: 1rem;
  font-size: 0.95rem !important;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 82% -10%, rgba(230,140,58,0.14), transparent 60%),
    linear-gradient(180deg, rgba(19,40,64,0.87) 0%, rgba(8,17,32,0.92) 100%),
    url('images/hero-img.jpg');
  background-size: cover;
  background-position: center;
}
.hero-glow{
  position: absolute;
  top: -20%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(230,140,58,0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-inner{ position: relative; max-width: 780px; }

.hero .eyebrow{ color: var(--gold-light); }
.hero .eyebrow::before{ background: var(--gold-light); }

.hero-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--linen);
  text-wrap: balance;
}
.hero-title em{
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub{
  margin-top: 1.75rem;
  font-size: 1.15rem;
  color: rgba(244,242,239,0.82);
  max-width: 58ch;
}

.hero-actions{
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-actions .btn-ghost{
  background: rgba(255,255,255,0.08);
  color: var(--linen);
  border-color: rgba(244,242,239,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-actions .btn-ghost:hover{ border-color: var(--gold-light); }

.hero-trust{
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  background: rgba(244,242,239,0.14);
  border: 1px solid rgba(244,242,239,0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}
.trust-item{
  background: rgba(8,17,32,0.55);
  padding: 1.4rem 1.2rem;
}

/* Above-the-fold: reveal on load via pure CSS, never gated on JS/ScrollTrigger */
@keyframes heroTrustIn{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero-trust .trust-item{
  opacity: 0;
  animation: heroTrustIn 0.7s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-trust .trust-item:nth-child(1){ animation-delay: 0.1s; }
.hero-trust .trust-item:nth-child(2){ animation-delay: 0.2s; }
.hero-trust .trust-item:nth-child(3){ animation-delay: 0.3s; }
.hero-trust .trust-item:nth-child(4){ animation-delay: 0.4s; }
@media (prefers-reduced-motion: reduce){
  .hero-trust .trust-item{ animation: none; opacity: 1; }
}
.trust-num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}
.trust-label{
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(244,242,239,0.72);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Services
   ========================================================================== */
.tabs{
  display: inline-flex;
  padding: 0.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  box-shadow: 0 1px 2px rgba(22,41,74,0.04);
}
.tab-btn{
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--steel);
  transition: color 0.3s ease, background 0.3s ease;
}
.tab-btn[aria-selected="true"]{
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.tab-panel{ display: none; }
.tab-panel.is-active{ display: block; }

.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
}
.service-card{
  padding: 1.5rem 1.6rem;
  border-left: 2px solid var(--gold);
}
.service-card h3{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.4;
}
.service-card p{
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--steel-dim);
}

/* ==========================================================================
   Credentials timeline
   ========================================================================== */
.timeline{
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.timeline::before{
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--thread) 8%, var(--thread) 92%, transparent);
  transform: translateX(-50%);
}
.timeline-row{
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: start;
  margin-bottom: 1.5rem;
}
.timeline-row .timeline-card{ grid-column: 1; }
.timeline-row:nth-child(even) .timeline-card{ grid-column: 3; }
.timeline-dot{
  grid-column: 2;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(230,140,58,0.18);
  justify-self: center;
  margin-top: 1.4rem;
}
.timeline-card{
  padding: 1.4rem 1.5rem;
}
.timeline-year{
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold-deep);
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}
.timeline-card h3{
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.35rem;
  font-size: 1rem;
}
.timeline-card p{ margin-top: 0.3rem; font-size: 0.88rem; color: var(--steel-dim); }

.chip-cloud{
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.chip{
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--paper);
  border: 1px dashed var(--line-strong);
}

/* ==========================================================================
   Associates
   ========================================================================== */
.associates-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.associate-card{
  padding: 1.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
}
.associate-card img{ max-height: 52px; width: auto; margin: 0 auto; filter: grayscale(1); opacity: 0.65; transition: filter 0.35s ease, opacity 0.35s ease; }
.associate-card:hover img{ filter: grayscale(0); opacity: 1; }
.associate-fallback{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--steel);
}
.associate-card:hover .associate-fallback{ color: var(--gold-deep); }

/* ==========================================================================
   About + turnover chart
   ========================================================================== */
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-copy p{ margin-bottom: 1.1rem; font-size: 0.98rem; }
.about-meta{
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}
.about-meta strong{ color: var(--navy); font-weight: 600; }

.why-box{
  margin-top: 1.5rem;
  padding: 1.6rem 1.8rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(160deg, rgba(33,62,96,0.04), rgba(33,62,96,0.01));
}
.why-box h4{ font-family: var(--font-head); color: var(--navy); font-weight: 600; margin-bottom: 0.8rem; }
.why-box li{ position: relative; padding-left: 1.3rem; font-size: 0.92rem; margin-bottom: 0.6rem; }
.why-box li::before{ content: '—'; position: absolute; left: 0; color: var(--gold-deep); }

.about-portrait{
  padding: 1rem;
}
.about-portrait img{ border-radius: var(--radius-md); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-portrait figcaption{ text-align: center; margin-top: 1rem; }
.about-portrait .name{ font-family: var(--font-head); color: var(--navy); font-weight: 600; }
.about-portrait .role{ font-size: 0.85rem; color: var(--steel-dim); }

.turnover{
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.turnover-head{ display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.25rem; }
.turnover-head h3{ font-family: var(--font-head); color: var(--navy); font-weight: 600; font-size: 1.15rem; }
.turnover-head span{ font-size: 0.8rem; color: var(--steel-dim); }
.chart{
  display: flex;
  align-items: flex-end;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  height: 220px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.chart-col{ flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; height: 100%; justify-content: flex-end; }
.chart-bar{
  width: 100%;
  max-width: 46px;
  max-height: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  height: 0;
  transition: height 1.1s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 8px 20px -8px rgba(201,111,34,0.4);
}
.chart-figure{ font-size: 0.78rem; font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; }
.chart-year{ font-size: 0.72rem; color: var(--steel-dim); }

/* ==========================================================================
   Sustainability accordion
   ========================================================================== */
.accordion{ max-width: 820px; }
.accordion-item{
  border-bottom: 1px solid var(--line);
}
.accordion-item:first-child{ border-top: 1px solid var(--line); }
.accordion-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0.25rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}
.accordion-trigger .num{
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 0.85rem;
  margin-right: 0.9rem;
}
.accordion-icon{
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.accordion-icon::before, .accordion-icon::after{
  content: '';
  position: absolute;
  background: var(--gold-deep);
  transition: transform 0.35s ease;
}
.accordion-icon::before{ width: 10px; height: 1.5px; }
.accordion-icon::after{ width: 1.5px; height: 10px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after{ transform: scaleY(0); }
.accordion-trigger[aria-expanded="true"] .accordion-icon{ border-color: var(--gold); transform: rotate(90deg); }

.accordion-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.22,1,.36,1);
}
.accordion-panel p{ padding: 0 0.25rem 1.6rem 2.6rem; font-size: 0.95rem; color: var(--steel); }

/* ==========================================================================
   Gallery filmstrip
   ========================================================================== */
.gallery-wrap{ position: relative; }
.filmstrip{
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.filmstrip::-webkit-scrollbar{ height: 6px; }
.filmstrip::-webkit-scrollbar-thumb{ background: var(--gold); border-radius: 999px; }

.film-frame{
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 300px);
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(22,41,74,0.04);
}
.film-frame img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.22,1,.36,1); }
.film-frame:hover img{ transform: scale(1.12); }
.film-frame .frame-tag{
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(22,41,74,0.55);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.film-nav{ display: flex; gap: 0.75rem; margin-top: 0.5rem; justify-content: flex-end; }
.film-nav button{
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  display: grid; place-items: center;
  color: var(--navy);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.film-nav button:hover{ border-color: var(--gold); background: rgba(230,140,58,0.08); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-info{
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: rgba(244,242,239,0.85);
}
.contact-info h3{ font-family: var(--font-head); color: #FFFFFF; font-weight: 600; font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-row{ display: flex; gap: 0.85rem; margin-bottom: 1.1rem; font-size: 0.92rem; }
.contact-row .ico{ color: var(--gold-light); flex-shrink: 0; margin-top: 0.15rem; }
.contact-block{ margin-top: 2rem; }
.contact-block h4{ font-family: var(--font-head); color: #FFFFFF; font-weight: 600; margin-bottom: 0.6rem; font-size: 0.95rem; }
.social-row{ display: flex; gap: 0.7rem; margin-top: 0.5rem; }
.social-row a{
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(244,242,239,0.25);
  color: rgba(244,242,239,0.85);
  display: grid; place-items: center;
  transition: border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.social-row a:hover{ border-color: var(--gold-light); transform: translateY(-3px); color: var(--gold-light); }

.contact-form{ padding: clamp(2rem, 4vw, 3rem); background: var(--paper); }
.contact-form h3{ font-family: var(--font-head); color: var(--navy); font-weight: 600; font-size: 1.3rem; margin-bottom: 1.5rem; }
.field{ margin-bottom: 1.3rem; }
.field label{
  display: block; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--steel-dim); margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea{
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field input::placeholder, .field textarea::placeholder{ color: var(--steel-dim); }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--gold);
  background: #FFFFFF;
  outline: none;
}
.field textarea{ min-height: 110px; resize: vertical; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer{
  padding-top: clamp(4rem, 7vw, 6rem);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(244,242,239,0.75);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-col h3{ font-family: var(--font-head); color: #FFFFFF; font-weight: 600; font-size: 1rem; margin-bottom: 1.1rem; position: relative; padding-bottom: 0.6rem; }
.footer-col h3::after{ content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 1px; background: var(--gold); }
.footer-col p{ font-size: 0.9rem; }
.footer-col ul li{ margin-bottom: 0.65rem; }
.footer-col ul li a{ font-size: 0.9rem; color: rgba(244,242,239,0.75); transition: color 0.25s ease; }
.footer-col ul li a:hover{ color: var(--gold-light); }
.footer-col ul li{ display: flex; gap: 0.55rem; font-size: 0.9rem; color: rgba(244,242,239,0.75); align-items: flex-start; }
.footer-col ul li .ico{ color: var(--gold-light); margin-top: 0.2rem; }

.copyright{
  padding: 1.5rem 0;
  border-top: 1px solid rgba(244,242,239,0.12);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(244,242,239,0.55);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Content is visible by default — no CSS rule hides it. GSAP applies the
   hidden starting state itself (inline style, in script.js) only at the
   exact moment it also wires up the matching reveal, so hiding and
   revealing can never get decoupled: if GSAP never loads or throws, nothing
   was ever hidden and the page simply reads normally with no animation. */
[data-reveal]{
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
[data-reveal-stagger] > *{
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}

@media (prefers-reduced-motion: reduce){
  [data-reveal], [data-reveal-stagger] > *{ opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-portrait{ max-width: 320px; margin: 0 auto; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .navbar{ padding: 0.55rem 0.55rem 0.55rem 1rem; }
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary{ display: none; }
  .nav-toggle{ display: flex; }
  .hero-trust{ grid-template-columns: repeat(2, 1fr); }
  .timeline::before{ left: 20px; }
  .timeline-row{ grid-template-columns: 40px 1fr; }
  .timeline-row .timeline-card, .timeline-row:nth-child(even) .timeline-card{ grid-column: 2; }
  .timeline-dot{ grid-column: 1; margin-top: 1.4rem; }
}

@media (max-width: 640px){
  .field-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-trust{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px){
  .brand-logo{ height: 30px; }
  .navbar{ top: 12px; padding: 0.5rem 0.5rem 0.5rem 0.9rem; }
  .nav-toggle{ width: 38px; height: 38px; }
  .hero-trust{ grid-template-columns: 1fr; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ justify-content: center; }
}
