/* ==========================================================================
   Silver Digital Signal Private Limited
   Design language referenced from stl.tech (STL / Sterlite Technologies):
   deep-blue brand base, bold tight display type, full-bleed dark image heroes,
   bordered card grids, light #f7f8fd section alternation.
   Palette values below were read from the reference site's own stylesheet.
   ========================================================================== */

/* ------------------------------------------------------------------ TOKENS */
:root{
  /* brand */
  --navy:        #002184;   /* primary brand blue (reference site) */
  --navy-deep:   #00154f;
  --blue:        #1b47c5;   /* accent / links / buttons */
  --blue-soft:   #5d63cf;
  --cyan:        #19b6e8;   /* highlight rules, active states */

  /* neutrals */
  --ink:         #0b1226;   /* darkest surface */
  --text:        #1b2233;
  --muted:       #5b6480;
  --line:        #dbdeed;   /* borders (reference site) */
  --off:         #f7f8fd;   /* light section background (reference site) */
  --white:       #ffffff;

  /* type */
  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* metrics */
  --wrap:        1240px;
  --gutter:      clamp(1.125rem, 4vw, 2.5rem);
  --radius:      14px;
  --radius-lg:   22px;
  --header-h:    76px;

  --shadow-sm:   0 1px 2px rgba(11,18,38,.06), 0 4px 12px rgba(11,18,38,.05);
  --shadow-md:   0 10px 30px rgba(0,33,132,.10), 0 2px 8px rgba(11,18,38,.06);
  --shadow-lg:   0 24px 60px rgba(0,33,132,.16);

  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------------------------------------------- RESET */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:clamp(1rem,.96rem + .18vw,1.0625rem);
  line-height:1.65;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg,video{ max-width:100%; height:auto; display:block; }
/* <picture> is inline by default, which would break height:100% on the image inside it */
.hero-media picture,.page-hero-media picture,.card-media picture,.split-media picture,
.director-photo picture,.license-media picture{ display:block; width:100%; height:100%; }
a{ color:var(--blue); text-decoration:none; }
a:hover{ text-decoration:underline; }
button{ font:inherit; color:inherit; }
ul{ margin:0; padding:0; list-style:none; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:700;
  line-height:1.12;
  letter-spacing:-.02em;
  color:var(--ink);
  margin:0 0 .6em;
  text-wrap:balance;
}
h1{ font-size:clamp(2.1rem,1.35rem + 3.6vw,4rem); }
h2{ font-size:clamp(1.65rem,1.2rem + 2.1vw,2.75rem); }
h3{ font-size:clamp(1.2rem,1.08rem + .6vw,1.5rem); }
h4{ font-size:1.0625rem; letter-spacing:-.01em; }
p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }

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

.skip-link{
  position:absolute; left:.5rem; top:-4rem; z-index:200;
  background:var(--white); color:var(--navy); padding:.7rem 1.1rem;
  border-radius:8px; font-weight:600; box-shadow:var(--shadow-md);
  transition:top .2s var(--ease);
}
.skip-link:focus{ top:.5rem; }

/* ----------------------------------------------------------------- LAYOUT */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(3.25rem,2rem + 6vw,6.5rem); }
.section--tight{ padding-block:clamp(2.5rem,1.75rem + 3.5vw,4rem); }
.section--off{ background:var(--off); }
.section--ink{ background:var(--ink); color:#cfd6e6; }
.section--ink h2,.section--ink h3{ color:var(--white); }

.kicker{
  display:inline-flex; align-items:center; gap:.55rem;
  font-family:var(--font-display); font-size:.78rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:var(--blue);
  margin-bottom:1rem;
}
.kicker::before{ content:""; width:26px; height:2px; background:var(--cyan); flex:none; }
.section--ink .kicker,.hero .kicker{ color:var(--cyan); }

.section-head{ max-width:62ch; margin-bottom:clamp(2rem,1.4rem + 2vw,3.25rem); }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head p{ font-size:1.0625rem; color:var(--muted); }
.section--ink .section-head p{ color:#a8b3ca; }

.lead{ font-size:clamp(1.0625rem,1rem + .35vw,1.25rem); color:var(--muted); }

/* ----------------------------------------------------------------- BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  min-height:48px; padding:.8rem 1.6rem;
  font-family:var(--font-display); font-size:.95rem; font-weight:600;
  border-radius:999px; border:2px solid transparent; cursor:pointer;
  text-decoration:none; transition:transform .18s var(--ease), background .18s var(--ease),
    border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover{ text-decoration:none; transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn svg{ width:16px; height:16px; flex:none; }

.btn--primary{ background:var(--blue); color:var(--white); box-shadow:0 6px 18px rgba(27,71,197,.28); }
.btn--primary:hover{ background:var(--navy); box-shadow:0 10px 26px rgba(0,33,132,.32); }

.btn--ghost{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.55); }
.btn--ghost:hover{ background:rgba(255,255,255,.12); border-color:var(--white); }

.btn--outline{ background:transparent; color:var(--navy); border-color:var(--line); }
.btn--outline:hover{ border-color:var(--blue); color:var(--blue); background:var(--off); }

.link-arrow{
  display:inline-flex; align-items:center; gap:.45rem;
  font-family:var(--font-display); font-weight:600; font-size:.95rem; color:var(--blue);
}
.link-arrow svg{ width:15px; height:15px; transition:transform .2s var(--ease); }
.link-arrow:hover{ text-decoration:none; }
.link-arrow:hover svg{ transform:translateX(4px); }

/* ------------------------------------------------------------------ HEADER */
.header{
  position:sticky; top:0; z-index:100;
  background:var(--white);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.header.is-stuck{ box-shadow:var(--shadow-sm); }
/* transparent variant sits over a dark hero */
.header--over{ background:transparent; border-bottom-color:transparent; position:fixed; left:0; right:0; }
.header--over .brand-name,.header--over .brand-tag,.header--over .nav-link{ color:var(--white); }
.header--over .brand-tag{ color:rgba(255,255,255,.72); }
.header--over .burger span{ background:var(--white); }
.header--over.is-stuck{
  background:rgba(255,255,255,.97); backdrop-filter:blur(10px);
  border-bottom-color:var(--line);
}
.header--over.is-stuck .brand-name,.header--over.is-stuck .nav-link{ color:var(--ink); }
.header--over.is-stuck .brand-tag{ color:var(--muted); }
.header--over.is-stuck .burger span{ background:var(--ink); }

.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  min-height:var(--header-h);
}
.brand{ display:flex; align-items:center; gap:.7rem; text-decoration:none; flex:none; }
.brand:hover{ text-decoration:none; }
.brand-mark{ width:40px; height:40px; flex:none; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-name{
  font-family:var(--font-display); font-weight:700; font-size:1.0625rem;
  letter-spacing:-.02em; color:var(--ink);
}
.brand-tag{ font-size:.7rem; color:var(--muted); letter-spacing:.02em; }

.nav{ display:flex; align-items:center; gap:.35rem; }
.nav-link{
  display:inline-flex; align-items:center; min-height:44px; padding:.5rem .9rem;
  font-family:var(--font-display); font-size:.95rem; font-weight:500;
  color:var(--text); border-radius:999px; position:relative;
  transition:color .18s var(--ease), background .18s var(--ease);
}
.nav-link:hover{ text-decoration:none; color:var(--blue); }
.nav-link[aria-current="page"]{ color:var(--blue); font-weight:600; }
.nav-link[aria-current="page"]::after{
  content:""; position:absolute; left:.9rem; right:.9rem; bottom:.35rem;
  height:2px; background:var(--cyan); border-radius:2px;
}
.header-cta{ margin-left:.6rem; }

.burger{
  display:none; width:46px; height:46px; border:0; background:transparent;
  padding:11px 10px; cursor:pointer; border-radius:10px;
}
.burger span{
  display:block; height:2px; border-radius:2px; background:var(--ink);
  transition:transform .28s var(--ease), opacity .2s var(--ease);
}
.burger span+span{ margin-top:5px; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- HERO (home) */
.hero{ position:relative; background:var(--ink); color:var(--white); isolation:isolate; }
.hero-media{ position:absolute; inset:0; z-index:-2; overflow:hidden; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(0,12,45,.82) 0%, rgba(0,21,79,.72) 42%, rgba(0,33,132,.66) 100%),
    radial-gradient(90% 70% at 18% 20%, rgba(25,182,232,.18), transparent 60%);
}
.hero-inner{
  padding-top:calc(var(--header-h) + clamp(3rem,2rem + 7vw,7rem));
  padding-bottom:clamp(3rem,2rem + 6vw,7rem);
  max-width:56rem;
}
.hero h1{ color:var(--white); margin-bottom:1rem; }
.hero .lead{ color:rgba(255,255,255,.86); max-width:46rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.85rem; margin-top:2rem; }

/* page hero (inner pages) */
.page-hero{ position:relative; background:var(--navy-deep); color:var(--white); isolation:isolate; }
.page-hero-media{ position:absolute; inset:0; z-index:-2; overflow:hidden; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; }
.page-hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(0,12,45,.86), rgba(0,33,132,.70));
}
.page-hero-inner{
  padding-top:calc(var(--header-h) + clamp(2.25rem,1.5rem + 4vw,4.25rem));
  padding-bottom:clamp(2.25rem,1.5rem + 4vw,4.25rem);
  max-width:52rem;
}
.page-hero h1{ color:var(--white); }
.page-hero .lead{ color:rgba(255,255,255,.85); margin-bottom:0; }

.crumbs{ font-size:.85rem; color:rgba(255,255,255,.7); margin-bottom:1.1rem; }
.crumbs a{ color:rgba(255,255,255,.85); }
.crumbs span{ padding-inline:.45rem; opacity:.6; }

/* ------------------------------------------------------------------- STATS */
.stats{
  display:grid; gap:1px; background:var(--line);
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden;
}
.stat{ background:var(--white); padding:clamp(1.25rem,1rem + 1.2vw,2.1rem) 1.25rem; text-align:center; }
.stat-value{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(1.8rem,1.4rem + 1.8vw,2.7rem);
  letter-spacing:-.03em; color:var(--navy); line-height:1;
}
.stat-label{ font-size:.875rem; color:var(--muted); margin-top:.5rem; }
/* stats band floating over the hero edge */
.stats-band{ margin-top:clamp(-2.5rem,-4vw,-1.5rem); position:relative; z-index:2; }
.stats-band .stats{ box-shadow:var(--shadow-md); }

/* ------------------------------------------------------------------- GRIDS */
.grid{ display:grid; gap:clamp(1rem,.75rem + 1vw,1.75rem); }
.grid--2{ grid-template-columns:repeat(auto-fit,minmax(min(100%,22rem),1fr)); }
.grid--3{ grid-template-columns:repeat(auto-fit,minmax(min(100%,19rem),1fr)); }
.grid--4{ grid-template-columns:repeat(auto-fit,minmax(min(100%,15rem),1fr)); }

/* --------------------------------------------------------------- CARDS */
.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:#c6cde6; }
.card-media{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--off); }
.card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.card:hover .card-media img{ transform:scale(1.04); }
.card-body{ padding:clamp(1.25rem,1rem + .8vw,1.75rem); display:flex; flex-direction:column; flex:1; gap:.15rem; }
.card-body h3{ margin-bottom:.5rem; }
.card-body p{ color:var(--muted); font-size:.96rem; }
.card-body .link-arrow{ margin-top:auto; padding-top:1rem; }

.icon-badge{
  width:46px; height:46px; border-radius:12px; display:grid; place-items:center;
  background:rgba(27,71,197,.09); color:var(--blue); margin-bottom:1rem; flex:none;
}
.icon-badge svg{ width:24px; height:24px; }

.ticks{ margin:.35rem 0 0; display:grid; gap:.45rem; }
.ticks li{
  position:relative; padding-left:1.6rem; font-size:.925rem; color:var(--muted);
}
.ticks li::before{
  content:""; position:absolute; left:0; top:.45em; width:9px; height:9px;
  border-radius:50%; border:2px solid var(--cyan);
}

/* --------------------------------------------------- SERVICE DETAIL (alternating) */
.split{
  display:grid; gap:clamp(1.5rem,1rem + 3vw,4rem); align-items:center;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,24rem),1fr));
}
.split-media{
  border-radius:var(--radius-lg); overflow:hidden; background:var(--off);
  aspect-ratio:4/3; box-shadow:var(--shadow-md);
}
.split-media img{ width:100%; height:100%; object-fit:cover; }
.split--flip .split-media{ order:2; }
@media (max-width:63.9375em){ .split--flip .split-media{ order:0; } }
.split-row{ padding-block:clamp(2rem,1.5rem + 2.5vw,3.5rem); border-top:1px solid var(--line); }
.split-row:first-of-type{ border-top:0; }

/* --------------------------------------------------------- WHY-US / FEATURES */
.feature{
  padding:clamp(1.35rem,1rem + 1vw,1.9rem);
  border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-lg);
  background:rgba(255,255,255,.04);
}
.feature h3{ font-size:1.125rem; margin-bottom:.5rem; }
.feature p{ color:#a8b3ca; font-size:.95rem; margin:0; }
.feature-num{
  font-family:var(--font-display); font-size:.8rem; font-weight:600;
  color:var(--cyan); letter-spacing:.1em; display:block; margin-bottom:.7rem;
}

/* =========================================================== DIRECTOR CARDS */
.directors{ display:grid; gap:clamp(1rem,.75rem + 1vw,1.75rem);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,16rem),1fr)); }
.director{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.director:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.director-photo{
  position:relative; aspect-ratio:4/5; overflow:hidden;
  background:linear-gradient(160deg,#e8ecf8,#dbe1f2);
}
.director-photo img{ width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.director-body{ padding:clamp(1.1rem,.9rem + .6vw,1.5rem); }
.director-name{ font-family:var(--font-display); font-weight:700; font-size:1.125rem;
  letter-spacing:-.01em; color:var(--ink); margin:0 0 .2rem; }
.director-role{
  font-size:.8rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--blue); margin:0 0 .8rem;
}
.director-bio{ font-size:.925rem; color:var(--muted); margin:0; }
.director-social{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; margin-top:1rem; border-radius:10px;
  border:1px solid var(--line); color:var(--muted);
  transition:color .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.director-social:hover{ color:var(--white); background:var(--blue); border-color:var(--blue); }
.director-social svg{ width:17px; height:17px; }

/* ====================================================== LICENSE GALLERY GRID */
.licenses{
  display:grid; gap:clamp(1rem,.75rem + 1vw,1.6rem);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,14rem),1fr));
}
.license{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; display:flex; flex-direction:column; text-align:left;
  padding:0; cursor:zoom-in; width:100%; text-align:inherit;
  transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.license:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:#c6cde6; }
.license-media{
  position:relative; aspect-ratio:3/4; overflow:hidden;
  background:linear-gradient(160deg,#eef1fa,#e2e7f6);
  border-bottom:1px solid var(--line);
}
.license-media img{ width:100%; height:100%; object-fit:cover; }
.license-zoom{
  position:absolute; right:.6rem; bottom:.6rem; width:34px; height:34px;
  border-radius:9px; background:rgba(11,18,38,.62); color:#fff;
  display:grid; place-items:center; opacity:0; transition:opacity .2s var(--ease);
}
.license-zoom svg{ width:16px; height:16px; }
.license:hover .license-zoom,.license:focus-visible .license-zoom{ opacity:1; }
.license-body{ display:block; padding:.9rem 1rem 1.1rem; }
.license-title{ display:block; font-family:var(--font-display); font-weight:600; font-size:1rem;
  color:var(--ink); margin:0 0 .3rem; }
.license-meta{ display:block; font-size:.8rem; color:var(--muted); line-height:1.5; margin:0; }
.license-meta span{ display:block; }

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:200; display:none;
  background:rgba(6,10,24,.93); padding:clamp(1rem,4vw,3rem);
  place-items:center;
}
.lightbox[open],.lightbox.is-open{ display:grid; }
.lightbox-figure{ margin:0; max-width:min(100%,60rem); text-align:center; }
.lightbox-figure img{
  max-height:78vh; width:auto; margin-inline:auto; border-radius:10px;
  background:#fff; box-shadow:var(--shadow-lg);
}
.lightbox-figure figcaption{ color:#cfd6e6; margin-top:1rem; font-size:.95rem; }
.lightbox-close{
  position:absolute; top:clamp(.75rem,2vw,1.5rem); right:clamp(.75rem,2vw,1.5rem);
  width:48px; height:48px; border-radius:50%; border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.1); color:#fff; cursor:pointer; display:grid; place-items:center;
}
.lightbox-close:hover{ background:rgba(255,255,255,.2); }
.lightbox-close svg{ width:20px; height:20px; }
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:50%; border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.1); color:#fff; cursor:pointer; display:grid; place-items:center;
}
.lightbox-nav:hover{ background:rgba(255,255,255,.2); }
.lightbox-nav svg{ width:20px; height:20px; }
.lightbox-prev{ left:clamp(.5rem,2vw,1.5rem); }
.lightbox-next{ right:clamp(.5rem,2vw,1.5rem); }
body.no-scroll{ overflow:hidden; }

/* placeholder ribbon shown on unreplaced assets */
.ph-flag{
  position:absolute; left:0; top:0; z-index:2;
  background:var(--cyan); color:#00243a;
  font-family:var(--font-display); font-size:.62rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  padding:.28rem .6rem; border-bottom-right-radius:8px;
}

/* ------------------------------------------------------------ TESTIMONIALS */
.quote{
  border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--white);
  padding:clamp(1.5rem,1.1rem + 1.4vw,2.25rem);
}
.quote-mark{ font-family:var(--font-display); font-size:2.5rem; line-height:1;
  color:var(--cyan); margin-bottom:.4rem; }
.quote p{ font-size:1.0625rem; color:var(--text); }
.quote footer{ margin-top:1.1rem; font-size:.9rem; }
.quote cite{ font-style:normal; font-weight:600; color:var(--ink); display:block;
  font-family:var(--font-display); }
.quote footer span{ color:var(--muted); }

/* -------------------------------------------------------------- CLIENT LOGOS */
.logos{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:clamp(1.5rem,1rem + 3vw,3.5rem); }
.logos img{ height:clamp(28px,24px + 1.4vw,44px); width:auto; opacity:.65;
  filter:grayscale(1); transition:opacity .2s var(--ease), filter .2s var(--ease); }
.logos img:hover{ opacity:1; filter:none; }

/* ------------------------------------------------------------------ CTA BAND */
.cta{
  position:relative; isolation:isolate; overflow:hidden;
  background:linear-gradient(120deg,var(--navy) 0%, var(--blue) 58%, var(--blue-soft) 100%);
  color:var(--white); border-radius:var(--radius-lg);
  padding:clamp(2rem,1.5rem + 3vw,3.75rem);
}
.cta::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:radial-gradient(70% 120% at 92% 10%, rgba(25,182,232,.35), transparent 60%);
}
.cta h2{ color:var(--white); max-width:34ch; }
.cta p{ color:rgba(255,255,255,.88); max-width:52ch; }
.cta-inner{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:clamp(1.25rem,1rem + 2vw,2.5rem); }
.cta-actions{ display:flex; flex-wrap:wrap; gap:.85rem; }

/* ------------------------------------------------------------------ CONTACT */
.contact-grid{ display:grid; gap:clamp(1.5rem,1rem + 3vw,3rem);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,20rem),1fr)); }
.info-list{ display:grid; gap:1.4rem; }
.info-item{ display:flex; gap:1rem; align-items:flex-start; }
.info-item .icon-badge{ margin-bottom:0; width:42px; height:42px; }
.info-item h4{ margin:0 0 .2rem; }
.info-item p,.info-item a{ margin:0; font-size:.96rem; color:var(--muted); }
.info-item a{ color:var(--blue); }

form.enquiry{ display:grid; gap:1rem; }
.field{ display:grid; gap:.4rem; }
.field label{ font-size:.875rem; font-weight:600; color:var(--ink);
  font-family:var(--font-display); }
.field input,.field select,.field textarea{
  font:inherit; font-size:1rem; color:var(--text);
  padding:.8rem 1rem; min-height:50px;
  border:1px solid var(--line); border-radius:10px; background:var(--white);
  transition:border-color .18s var(--ease), box-shadow .18s var(--ease);
  width:100%;
}
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(27,71,197,.15);
}
.field-row{ display:grid; gap:1rem; grid-template-columns:repeat(auto-fit,minmax(min(100%,13rem),1fr)); }
.form-note{ font-size:.82rem; color:var(--muted); margin:0; }
.map-embed{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  aspect-ratio:16/9; background:var(--off); }
.map-embed iframe{ width:100%; height:100%; border:0; display:block; }

/* ------------------------------------------------------------------- FOOTER */
.footer{ background:var(--ink); color:#a8b3ca; padding-block:clamp(2.5rem,2rem + 3vw,4.5rem) 0; }
.footer a{ color:#cfd6e6; }
.footer a:hover{ color:var(--white); }
.footer-top{
  display:grid; gap:clamp(1.75rem,1.25rem + 2.5vw,3rem);
  grid-template-columns:repeat(auto-fit,minmax(min(100%,14rem),1fr));
  padding-bottom:clamp(2rem,1.5rem + 2vw,3rem);
}
.footer-brand{ grid-column:span 1; max-width:26rem; }
@media (min-width:64em){ .footer-brand{ grid-column:span 2; } }
.footer .brand-name{ color:var(--white); }
.footer .brand-tag{ color:#8792ab; }
.footer-blurb{ font-size:.925rem; margin-top:1rem; color:#98a3bb; }
.footer h4{ color:var(--white); font-size:.82rem; letter-spacing:.12em;
  text-transform:uppercase; margin-bottom:1rem; }
.footer-links{ display:grid; gap:.6rem; font-size:.925rem; }
.footer-contact{ display:grid; gap:.55rem; font-size:.925rem; }
.social{ display:flex; gap:.6rem; margin-top:1.25rem; }
.social a{
  width:42px; height:42px; border-radius:10px; display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.16); color:#cfd6e6;
  transition:background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.social a:hover{ background:var(--blue); border-color:var(--blue); color:var(--white); }
.social svg{ width:17px; height:17px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12); padding-block:1.5rem;
  display:flex; flex-wrap:wrap; gap:.75rem 1.5rem;
  align-items:center; justify-content:space-between; font-size:.85rem;
}
.footer-legal{ display:flex; flex-wrap:wrap; gap:.4rem 1.25rem; color:#8792ab; }

/* --------------------------------------------------------------- UTILITIES */
.center{ text-align:center; }
.mt-lg{ margin-top:clamp(2rem,1.5rem + 2vw,3rem); }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.noscript-note{
  background:#fff4d6; border:1px solid #f0d79a; color:#5c4708;
  padding:1rem 1.25rem; border-radius:12px; font-size:.95rem;
}

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .card:hover,.director:hover,.license:hover,.btn:hover{ transform:none; }
  .card-media img,.license-media img{ transition:none; }
}

/* ======================================================= MOBILE NAVIGATION */
@media (max-width:63.9375em){
  :root{ --header-h:64px; }
  .burger{ display:block; }
  .header-cta{ display:none; }

  .nav{
    position:fixed; inset:var(--header-h) 0 0 auto;
    width:min(22rem,86vw);
    background:var(--white);
    border-left:1px solid var(--line);
    flex-direction:column; align-items:stretch; gap:0;
    padding:1.25rem var(--gutter) 2rem;
    overflow-y:auto;
    transform:translateX(102%);
    transition:transform .32s var(--ease);
    box-shadow:-20px 0 60px rgba(11,18,38,.18);
  }
  .nav.is-open{ transform:translateX(0); }
  .header--over .nav .nav-link{ color:var(--text); }
  .nav-link{
    min-height:56px; padding:.9rem .25rem; border-radius:0;
    border-bottom:1px solid var(--line); font-size:1.0625rem; font-weight:500;
  }
  .nav-link[aria-current="page"]::after{ left:.25rem; right:auto; width:22px; bottom:.7rem; }
  .nav .btn{ margin-top:1.5rem; width:100%; }

  .nav-backdrop{
    position:fixed; inset:0; background:rgba(6,10,24,.5);
    opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
    z-index:99;
  }
  .nav-backdrop.is-open{ opacity:1; pointer-events:auto; }
}

@media (min-width:64em){
  .nav-backdrop{ display:none; }
  /* the in-drawer CTA is for mobile only; the desktop one is .header-cta */
  .nav > .btn{ display:none; }
}

/* small phones */
@media (max-width:26.5625em){
  .hero-actions .btn,.cta-actions .btn{ width:100%; }
  .stats{ grid-template-columns:repeat(2,1fr); }
  .brand-tag{ display:none; }
}

/* ------------------------------------------------------------------- PRINT */
@media print{
  .header,.footer,.cta,.burger,.nav,.lightbox,.hero-media,.page-hero-media{ display:none !important; }
  body{ color:#000; }
  .section{ padding-block:1rem; }
  a[href^="http"]::after{ content:" (" attr(href) ")"; font-size:.8em; }
}
