/* ==========================================================================
   NARAN PRECAST CONCRETE CO. — Design System
   Luxury industrial · deep navy · brass gold · concrete stone
   ========================================================================== */

/* ----------  Design Tokens  ---------- */
:root {
  /* Brand — aligned to the Naran logo (navy #27285f, gold #d89b12) */
  --navy-900: #1a1b45;
  --navy-800: #27285f;   /* logo navy */
  --navy-700: #343573;
  --navy-600: #414287;
  --blue-500: #0170b9;   /* brand blue (legacy) */
  --blue-400: #2b8bd0;

  --gold-600: #a9790e;   /* darker marigold for text on light */
  --gold-500: #d89b12;   /* logo gold accent */
  --gold-400: #e6b544;
  --gold-100: #f7ebcf;

  /* Neutrals — warm stone */
  --ivory:   #f6f3ee;
  --stone-100:#efeae1;
  --stone-200:#e2dbcf;
  --stone-300:#cfc6b7;
  --paper:   #fbfaf7;
  --ink:     #14181d;
  --ink-soft:#2a2f36;
  --grey-500:#6d7178;
  --grey-400:#9a9ea6;
  --white:   #ffffff;

  /* Semantic */
  --bg:        var(--paper);
  --bg-alt:    var(--ivory);
  --text:      var(--ink);
  --text-soft: var(--grey-500);
  --accent:    var(--gold-500);
  --dark:      var(--navy-800);

  /* Type */
  --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale — refined / smaller for a premium feel */
  --fs-eyebrow: 0.64rem;
  --fs-body: 0.92rem;
  --fs-lead: clamp(0.95rem, 0.88rem + 0.4vw, 1.1rem);
  --fs-h6: 0.9rem;
  --fs-h5: 1.08rem;
  --fs-h4: clamp(1.1rem, 0.95rem + 0.55vw, 1.35rem);
  --fs-h3: clamp(1.2rem, 1rem + 0.85vw, 1.6rem);
  --fs-h2: clamp(1.45rem, 1.1rem + 1.5vw, 2.2rem);
  --fs-h1: clamp(1.8rem, 1.2rem + 2.6vw, 3.1rem);
  --fs-display: clamp(2.3rem, 1.5rem + 4.2vw, 4.4rem);

  /* Spacing / layout */
  --container: 1280px;
  --container-wide: 1480px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(3.75rem, 6vw, 7rem);
  --radius: 4px;
  --radius-lg: 10px;
  --section-y-sm: clamp(3.5rem, 6vw, 7rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(10, 36, 64, 0.06);
  --shadow-md: 0 18px 45px -20px rgba(10, 36, 64, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(26, 27, 69, 0.45);

  --nav-h: 78px;
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4,h5 { font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--stone-100); }
::-webkit-scrollbar-thumb { background: var(--navy-700); border-radius: 20px; border: 3px solid var(--stone-100); }

/* ----------  Typography helpers  ---------- */
.display { font-family: var(--font-display); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}
.eyebrow.center::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.section-title em { font-style: normal; font-weight: 500; color: var(--gold-600); }
.dark-section .section-title em, .finishes .section-title em { color: var(--gold-400); }
.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}
.muted { color: var(--text-soft); }

/* ----------  Layout  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-y); position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1.4rem; }
.section-head .section-title { margin-top: 1.1rem; }

.dark-section {
  background: var(--navy-800);
  color: var(--stone-100);
}
.dark-section .section-title, .finishes .section-title { color: var(--white); }
.dark-section .lead, .finishes .lead { color: rgba(255,255,255,0.72); }
.dark-section .eyebrow, .finishes .eyebrow { color: var(--gold-400); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.7em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold-500);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--navy-900); }
.btn:hover::before { transform: translateY(0); }
.btn .btn-arrow { transition: transform .45s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-gold { --btn-bg: var(--gold-500); --btn-fg: var(--navy-900); }
.btn-gold::before { background: var(--navy-800); }
.btn-gold:hover { color: #fff; }

.btn-outline {
  --btn-fg: var(--navy-800);
  background: transparent;
  border: 1px solid rgba(10,36,64,0.28);
}
.btn-outline::before { background: var(--navy-800); }
.btn-outline:hover { color: #fff; border-color: var(--navy-800); }

.dark-section .btn-outline, .hero .btn-outline { --btn-fg: #fff; border-color: rgba(255,255,255,0.35); }
.dark-section .btn-outline::before, .hero .btn-outline::before { background: #fff; }
.dark-section .btn-outline:hover, .hero .btn-outline:hover { color: var(--navy-900); }

/* Solid white button with blue text (high contrast on dark/image backgrounds) */
.btn-white { --btn-bg: #ffffff; --btn-fg: var(--blue-500); box-shadow: var(--shadow-sm); }
.btn-white::before { background: var(--navy-800); }
.btn-white:hover { color: #ffffff; }

/* Text link with animated underline */
.link-underline {
  position: relative;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  color: var(--navy-800);
  padding-bottom: 3px;
}
.link-underline::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold-500);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline svg { transition: transform .4s var(--ease); }
.link-underline:hover svg { transform: translateX(4px); }
.dark-section .link-underline { color: #fff; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--stone-200);
  transition: box-shadow .45s var(--ease), height .45s var(--ease), border-color .45s var(--ease);
}
.header::before { display: none; }
.header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(10, 36, 64, 0.09);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: flex; align-items: center; gap: 0.8rem; z-index: 2; position: relative; }
.brand img { height: 56px; width: auto; transition: height .4s var(--ease); }
.brand .logo-light { opacity: 0; }
.brand .logo-dark { position: absolute; top: 0; left: 0; opacity: 1; transition: opacity .4s var(--ease); }
.header.scrolled .brand img { height: 56px; }
body.menu-open .brand .logo-light { opacity: 1; }
body.menu-open .brand .logo-dark { opacity: 0; }
.brand .brand-lockup { line-height: 1; }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-800);
  transition: color .4s var(--ease);
}
.brand .brand-sub {
  font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-400); font-weight: 600;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav-list { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  transition: color .35s var(--ease);
  display: inline-flex; align-items: center; gap: 0.35em;
}
.nav-link::after {
  content:""; position:absolute; left:0; bottom:-2px;
  width:100%; height:1.5px; background: var(--gold-500);
  transform: scaleX(0); transform-origin:right;
  transition: transform .4s var(--ease);
}
.nav-link:hover::after, .nav-item:hover .nav-link::after { transform: scaleX(1); transform-origin:left; }
.nav-link:hover { color: var(--navy-800); }
.nav-link .chev { width: 9px; height: 9px; transition: transform .35s var(--ease); opacity: 0.7; }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 12px);
  min-width: 260px;
  background: var(--paper);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.7rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  margin-top: 14px;
}
.dropdown::before {
  content:""; position:absolute; top:-14px; left:0; right:0; height:14px;
}
.nav-item:hover .dropdown { opacity:1; visibility:visible; transform: translate(-50%, 0); }
.dropdown a {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: background .3s var(--ease), color .3s var(--ease), padding-left .3s var(--ease);
}
.dropdown a:hover { background: var(--stone-100); color: var(--navy-800); padding-left: 1.25rem; }

.nav-cta { display: inline-flex; }

/* Burger */
.burger { display: none; width: 30px; height: 22px; position: relative; z-index: 120; }
.burger span {
  position:absolute; left:0; height:2px; width:100%; background: var(--navy-800); border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .4s var(--ease);
}
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:10px; }
.burger span:nth-child(3){ top:20px; }
body.menu-open .burger span { background:#fff; }
body.menu-open .burger span:nth-child(1){ transform: translateY(10px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity:0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-10px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-900);
  z-index: 110;
  padding: calc(var(--nav-h) + 1rem) var(--gutter) 2rem;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
/* Lift the header above the open menu so the close (X) + logo stay visible/clickable */
body.menu-open .header {
  z-index: 130;
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}
.mobile-menu a { color: #fff; }
.mobile-nav { display: flex; flex-direction: column; margin-top: 1rem; }
.mobile-nav > li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav > li > a, .mobile-acc-btn {
  display:flex; align-items:center; justify-content: space-between; width: 100%;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 400;
  padding: 1.05rem 0; color: #fff; text-align: left;
}
.mobile-acc-btn .chev { transition: transform .4s var(--ease); color: var(--gold-400); }
.mobile-acc-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mobile-sub { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.mobile-sub a { display:block; padding: 0.55rem 0 0.55rem 1rem; font-size: 1rem; color: rgba(255,255,255,0.7); }
.mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }
.mobile-contact { margin-top: auto; padding-top: 2rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.mobile-contact a { color: var(--gold-400); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding-bottom: clamp(2.5rem, 6vh, 5rem);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s var(--ease);
  will-change: opacity;
}
.hero-bg .slide.active { opacity: 1; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-bg .slide.active img { animation: kenburns 9s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14); } }
.hero-bg::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(26,27,69,0.55) 0%, rgba(26,27,69,0.28) 35%, rgba(26,27,69,0.72) 100%),
    linear-gradient(90deg, rgba(26,27,69,0.65) 0%, rgba(26,27,69,0.1) 60%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow { color: var(--gold-400); margin-bottom: 1.6rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  max-width: 20ch;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero h1 em { font-style: normal; font-weight: 500; color: var(--gold-400); }
.hero-sub {
  margin-top: 1.5rem;
  max-width: 50ch;
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  line-height: 1.6;
}
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Hero side meta */
.hero-meta {
  position: absolute; z-index: 2; right: var(--gutter); top: 50%; transform: translateY(-40%);
  display: flex; flex-direction: column; gap: 2rem; align-items: flex-end; text-align: right;
}
.hero-meta .meta-item { max-width: 220px; padding-right: 1.2rem; border-right: 2px solid var(--gold-500); }
.hero-meta .meta-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: #fff; line-height: 1; }
.hero-meta .meta-num .mplus { color: var(--gold-400); }
.hero-meta .meta-label { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 0.4rem; }

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.scroll-cue .line { width: 1px; height: 46px; background: rgba(255,255,255,0.4); overflow: hidden; position: relative; }
.scroll-cue .line::after {
  content:""; position:absolute; top:-50%; left:0; width:100%; height:50%;
  background: var(--gold-400); animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0%{ transform: translateY(-100%);} 60%,100%{ transform: translateY(300%);} }

/* Hero slide dots */
.hero-dots { position: absolute; z-index: 3; left: var(--gutter); bottom: 1.6rem; display: flex; gap: 0.6rem; }
.hero-dots button { width: 34px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 3px; overflow:hidden; position: relative; }
.hero-dots button.active::after {
  content:""; position:absolute; inset:0; background: var(--gold-400);
  transform-origin: left; animation: dotFill 6s linear;
}
@keyframes dotFill { from{ transform: scaleX(0);} to{ transform: scaleX(1);} }

/* ==========================================================================
   MARQUEE / TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  border-block: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding-block: 1.15rem;
}
.marquee { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 34s linear infinite; }
.trust-strip:hover .marquee { animation-play-state: paused; }
.marquee .m-item {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding-inline: 2.2rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.marquee .m-item svg { color: var(--gold-400); flex-shrink: 0; }
.marquee .dot { color: var(--gold-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-band { background: var(--bg-alt); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-200);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.5rem,3vw,2.4rem);
  transition: background .5s var(--ease);
}
.stat:hover { background: var(--navy-800); }
.stat:hover .stat-num, .stat:hover .stat-label, .stat:hover .stat-plus { color: #fff; }
.stat:hover .stat-num { color: var(--gold-400); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1;
  display: inline-flex; align-items: baseline;
  transition: color .5s var(--ease);
}
.stat-plus { color: var(--gold-500); transition: color .5s var(--ease); }
.stat-label {
  margin-top: 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
  transition: color .5s var(--ease);
}

/* ==========================================================================
   ABOUT / INTRO (split)
   ========================================================================== */
.about { position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media .img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-media:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--navy-800); color: #fff;
  padding: 1.6rem 1.8rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); text-align: left;
  max-width: 230px;
}
.about-badge .b-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--gold-400); line-height: 1; }
.about-badge .b-label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-top: 0.4rem; }
.about-copy .section-title { margin-block: 1.1rem 1.6rem; }
.about-copy p + p { margin-top: 1.1rem; }
.about-features { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.8rem; }
.about-feature { display: flex; gap: 0.9rem; align-items: flex-start; }
.about-feature .icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; background: var(--gold-100); color: var(--gold-600);
}
.about-feature h4 { font-family: var(--font-sans); font-size: 0.92rem; font-weight: 600; letter-spacing: 0; }
.about-feature p { font-size: 0.9rem; color: var(--text-soft); margin-top: 0.15rem; }
.about-sign { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.1rem; }
.about-sign .sig-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy-800); }
.about-sign .sig-role { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600); }
.about-sign .divider { width: 1px; height: 38px; background: var(--stone-300); }

/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 1.8rem);
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: flex-end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.product-card .card-img { position:absolute; inset:0; z-index:0; overflow: hidden; }
.product-card .card-img img { width:100%; height:100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.product-card::after {
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(26,27,69,0) 30%, rgba(26,27,69,0.35) 55%, rgba(26,27,69,0.92) 100%);
  transition: background .5s var(--ease);
}
.product-card:hover .card-img img { transform: scale(1.08); }
.product-card:hover::after { background: linear-gradient(180deg, rgba(26,27,69,0.15) 10%, rgba(10,36,64,0.55) 50%, rgba(26,27,69,0.96) 100%); }
.product-body { position: relative; z-index: 2; padding: 2rem 1.8rem; width: 100%; transform: translateY(0); transition: transform .5s var(--ease); }
.product-card .p-count { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; }
.product-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-top: 0.5rem; letter-spacing: -0.01em; }
.product-card .p-desc {
  font-size: 0.92rem; color: rgba(255,255,255,0.78); margin-top: 0.6rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .55s var(--ease), opacity .5s var(--ease), margin-top .5s var(--ease);
}
.product-card:hover .p-desc { max-height: 120px; opacity: 1; }
@media (hover: none) {
  .product-card .p-desc { max-height: 140px; opacity: 1; margin-top: 0.6rem; }
  .product-card .corner { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
}
.product-card .p-link {
  margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: #fff;
}
.product-card .p-link svg { transition: transform .4s var(--ease); }
.product-card:hover .p-link svg { transform: translateX(5px); color: var(--gold-400); }
.product-card .corner {
  position: absolute; top: 1.3rem; right: 1.3rem; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: grid; place-items: center; color: #fff;
  transition: background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.product-card:hover .corner { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); transform: rotate(-45deg); }

/* Wide feature card spanning 2 cols */
.product-card.wide { grid-column: span 2; min-height: 340px; }
@media (max-width: 900px){ .product-card.wide { grid-column: span 1; } }

/* ==========================================================================
   FINISHES (horizontal accordion-ish showcase)
   ========================================================================== */
.finishes { background: var(--navy-800); color: #fff; overflow: hidden; }
.finish-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  height: 480px;
}
.finish-panel {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; min-width: 0;
  transition: flex .6s var(--ease);
}
.finish-panel img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; filter: grayscale(0.35) brightness(0.7); transition: filter .6s var(--ease), transform 1s var(--ease); }
.finish-panel::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(26,27,69,0.9)); }
.finish-panel .fp-body { position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; justify-content:flex-end; padding: 1.6rem 1.4rem; }
.finish-panel .fp-index { font-size: 0.72rem; color: var(--gold-400); letter-spacing: 0.2em; }
.finish-panel .fp-title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-top: 0.4rem;
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  transition: writing-mode .1s, transform .5s var(--ease);
  align-self: flex-start;
}
.finish-panel .fp-desc { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 0.8rem; max-width: 34ch; opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease) .1s, transform .5s var(--ease) .1s; }
.finish-panel.active { flex: 3; }
.finish-panel.active img { filter: grayscale(0) brightness(0.92); transform: scale(1.05); }
.finish-panel.active .fp-title { writing-mode: horizontal-tb; transform: none; font-size: 1.5rem; }
.finish-panel.active .fp-desc { opacity: 1; transform: none; }
.finish-row { display: flex; }
.finish-panel { flex: 1; }

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.projects { background: var(--bg-alt); }
.projects-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.project {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  color: #fff; display: flex; align-items: flex-end; isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.project img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:0; transition: transform 1.1s var(--ease); }
.project::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(26,27,69,0) 35%, rgba(26,27,69,0.9)); transition: opacity .5s; }
.project:hover img { transform: scale(1.07); }
.project-body { position: relative; z-index: 2; padding: 2rem; width: 100%; }
.project .tag {
  display:inline-block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-900); background: var(--gold-400); padding: 0.35em 0.8em; border-radius: 40px; font-weight: 700; margin-bottom: 0.9rem;
}
.project h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem,1.5vw,1.45rem); letter-spacing: -0.01em; }
.project .p-loc { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-top: 0.4rem; display:flex; align-items:center; gap: 0.4em; }
.project.tall { grid-column: span 5; min-height: 560px; }
.project.short { grid-column: span 7; min-height: 270px; }
.project.third { grid-column: span 4; min-height: 340px; }
@media (max-width: 860px){
  .project.tall, .project.short, .project.third { grid-column: span 12; min-height: 320px; }
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem,5vw,5rem); align-items: center; }
.process-steps { position: relative; }
.process-steps::before { content:""; position:absolute; left: 26px; top: 30px; bottom: 30px; width: 1px; background: linear-gradient(var(--gold-500), var(--stone-300)); }
.pstep { display: grid; grid-template-columns: 54px 1fr; gap: 1.4rem; padding-block: 1.35rem; position: relative; }
.pstep .num {
  width: 54px; height: 54px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--stone-300);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy-800);
  position: relative; z-index: 1; transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.pstep:hover .num { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); transform: scale(1.08); }
.pstep h4 { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 600; letter-spacing: 0; }
.pstep p { font-size: 0.95rem; color: var(--text-soft); margin-top: 0.3rem; max-width: 46ch; }
.process-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.process-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.process-media .pm-tag {
  position:absolute; left: 1.4rem; bottom: 1.4rem; right: 1.4rem;
  background: rgba(10,36,64,0.72); backdrop-filter: blur(8px);
  color:#fff; padding: 1.1rem 1.3rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.14);
}
.process-media .pm-tag strong { color: var(--gold-400); font-weight: 600; }

/* ==========================================================================
   CERTIFICATIONS
   ========================================================================== */
.certs { }
.certs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1.2rem; }
.cert-card {
  border: 1px solid var(--stone-200); border-radius: var(--radius-lg);
  padding: 2rem 1.6rem; background: var(--paper);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  text-align: center;
}
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.cert-card .c-icon { width: 56px; height: 56px; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--navy-800); color: var(--gold-400); display: grid; place-items: center; transition: transform .5s var(--ease); }
.cert-card:hover .c-icon { transform: rotateY(180deg); }
.cert-card h4 { font-family: var(--font-sans); font-size: 0.92rem; font-weight: 700; }
.cert-card p { font-size: 0.82rem; color: var(--text-soft); margin-top: 0.3rem; }

.safety-banner {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  background: linear-gradient(100deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem);
  color: #fff; overflow: hidden; position: relative;
}
.safety-banner .s-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem,3vw,2.7rem); color: var(--gold-400); line-height: 1; }
.safety-banner .s-text { flex: 1; min-width: 240px; }
.safety-banner .s-text h4 { font-family: var(--font-sans); font-weight: 600; font-size: 1.15rem; }
.safety-banner .s-text p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-top: 0.2rem; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding-block: clamp(5rem, 9vw, 8rem);
}
.cta .cta-bg { position:absolute; inset:0; z-index:0; overflow:hidden; }
.cta .cta-bg img { width:100%; height:120%; object-fit: cover; }
.cta::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(26,27,69,0.86), rgba(26,27,69,0.9)); }
.cta .container { position: relative; z-index: 2; }
.cta .section-title { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta .lead { color: rgba(255,255,255,0.8); margin: 1.4rem auto 2.4rem; max-width: 52ch; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta .eyebrow { color: var(--gold-400); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding-top: clamp(4rem,7vw,6rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(2rem,4vw,3.5rem); padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .f-logo { display:flex; align-items:center; gap: 0.7rem; margin-bottom: 1.4rem; }
.footer-brand .f-logo img { height: 48px; }
.footer-brand .f-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: #fff; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; line-height: 1.7; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center; color: #fff;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), color .4s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); transform: translateY(-4px); }
.footer h5 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1.3rem; font-weight: 600; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 0.94rem; transition: color .3s var(--ease), padding-left .3s var(--ease); position: relative; }
.footer-links a:hover { color: #fff; padding-left: 0.5rem; }
.footer-contact li { display:flex; gap: 0.8rem; margin-bottom: 1.1rem; font-size: 0.94rem; line-height: 1.5; }
.footer-contact svg { color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-block: 1.8rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom .f-legal { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: #fff; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  transition: transform .4s var(--ease);
  animation: waPulse 2.6s var(--ease) infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%,100%{ box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5);} 50%{ box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6), 0 0 0 14px rgba(37,211,102,0);} }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-42px); }
[data-reveal="right"] { transform: translateX(42px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }
[data-reveal-delay="6"] { transition-delay: .6s; }

/* Reveal-per-word for headings */
.reveal-lines .line-inner { display: inline-block; }
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9em) rotate(2deg);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-lines.is-visible .word { opacity: 1; transform: none; }

/* Page load progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); z-index: 200; transition: width .1s linear; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px){
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { display: none; }
}
@media (max-width: 1024px){
  .nav-list, .nav-cta { display: none; }
  .burger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-media { order: -1; max-width: 520px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .products-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .finish-row { flex-direction: column; height: auto; }
  .finish-panel { height: 90px; }
  .finish-panel.active { height: 300px; flex: none; }
  .finish-panel .fp-title { writing-mode: horizontal-tb; transform: none; }
  .footer-top { grid-template-columns: 1fr; }
  .about-badge { left: 16px; bottom: -20px; padding: 1.2rem 1.4rem; }
  /* Decorative scroll cue collides with the stacked hero buttons on phones — hide it */
  .scroll-cue { display: none; }
}
@media (max-width: 480px){
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}


/* ==========================================================================
   LUXURY MOTION LAYER
   ========================================================================== */

/* Button light sweep (sheen) on hover */
.btn::after {
  content: "";
  position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: skewX(-18deg);
  transition: left .75s var(--ease);
  z-index: 2; pointer-events: none;
}
.btn:hover::after { left: 150%; }

/* Product card lift */
.product-card { transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

/* Cert card icon sweep already present; add lift shadow smoothness handled */

/* Image zoom-out reveal for framed media */
.about-media img, .process-media img {
  transform: scale(1.16);
  transition: transform 1.5s var(--ease);
}
.about-media.is-visible img, .process-media.is-visible img { transform: scale(1); }
.about-media:hover img { transform: scale(1.05); }

/* Eyebrow rule draws in when its section reveals */
.eyebrow::before, .eyebrow.center::after {
  transform-origin: left center;
  transition: transform .9s var(--ease) .15s, width .3s;
}
[data-reveal] .eyebrow::before,
[data-reveal].eyebrow::before,
[data-reveal] .eyebrow.center::after { transform: scaleX(0); }
[data-reveal].is-visible .eyebrow::before,
[data-reveal].is-visible.eyebrow::before,
[data-reveal].is-visible .eyebrow.center::after { transform: scaleX(1); }

/* Section titles: soft rise handled by reveal; add gold underline accent that grows */
.section-head .section-title { position: relative; }

/* Stat card: number gently rises on reveal */
.stat { transition: background .5s var(--ease); }
.stat-num { transition: color .5s var(--ease); }

/* Nav underline gleam refinement: gold dot on hover */
.nav-link { transition: color .35s var(--ease), letter-spacing .35s var(--ease); }
.nav-link:hover { letter-spacing: 0.09em; }

/* Finishes panel: gold index accent + smoother */
.finish-panel .fp-index { font-weight: 600; letter-spacing: 0.24em; }

/* Floating micro-motion for hero meta separators */
.hero-meta .meta-item { transition: transform .5s var(--ease); }
.hero-meta .meta-item:hover { transform: translateX(-5px); }

/* Card corner rotates + gold on hover already; add scroll-cue glow */
.scroll-cue { transition: opacity .4s var(--ease); }

/* Reveal: add a gentle blur-in for a softer, premium entrance */
[data-reveal] { filter: blur(6px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
[data-reveal].is-visible { filter: blur(0); }
[data-reveal="fade"] { filter: blur(4px); }

/* Respect reduced motion for the new layer */
@media (prefers-reduced-motion: reduce) {
  .hero-bg .slide.active img { animation: none; }
  [data-reveal] { filter: none !important; }
  .about-media img, .process-media img { transform: none !important; }
}


/* ==========================================================================
   INTERIOR PAGES — shared components (About, etc.)
   ========================================================================== */

/* Active nav state */
.nav-link.active { color: var(--gold-600); }
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

/* Page hero (interior) */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.page-hero.kb .page-hero-bg img { animation: kenburns 12s var(--ease) forwards; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,27,69,0.55) 0%, rgba(26,27,69,0.72) 60%, rgba(26,27,69,0.9) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; gap: 0.55rem; align-items: center;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 1.3rem; font-weight: 500;
}
.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.5; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); letter-spacing: -0.03em; line-height: 1.05;
}
.page-hero h1 em { font-style: normal; color: var(--gold-400); }
.page-hero .ph-sub {
  margin-top: 1.1rem; max-width: 54ch;
  color: rgba(255,255,255,0.82); font-size: var(--fs-lead); font-weight: 300; line-height: 1.6;
}

/* Intro split (reuses about-grid but with its own image ratio) */
.intro-media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.intro-media { position: relative; overflow: visible; }
.intro-tag {
  position: absolute; right: -22px; top: -22px;
  background: var(--gold-500); color: var(--navy-900);
  border-radius: var(--radius-lg); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-lg);
  max-width: 190px; font-family: var(--font-display);
}
.intro-tag .it-num { font-size: 1.9rem; font-weight: 700; line-height: 1; }
.intro-tag .it-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; margin-top: 0.3rem; font-family: var(--font-sans); }

/* Timeline */
.timeline { position: relative; max-width: 820px; margin-inline: auto; padding-left: 0.5rem; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(var(--gold-500), var(--stone-300)); }
.tl-item { position: relative; padding-left: 2.8rem; padding-bottom: 2.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold-500);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--stone-200);
}
.tl-year { font-family: var(--font-display); font-weight: 700; color: var(--gold-600); font-size: 1.05rem; letter-spacing: 0.02em; }
.tl-item h4 { font-size: 1.1rem; margin-top: 0.2rem; }
.tl-item p { color: var(--text-soft); margin-top: 0.4rem; font-size: 0.95rem; max-width: 60ch; }

/* Leadership quote */
.leadership { background: var(--navy-800); color: #fff; }
.quote-block { max-width: 900px; margin-inline: auto; text-align: center; }
.quote-block .q-mark { font-family: var(--font-display); font-size: 4.5rem; color: var(--gold-400); line-height: 0.6; height: 2.2rem; }
.quote-block blockquote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 1rem + 1.5vw, 2rem); line-height: 1.4; letter-spacing: -0.01em; color: #fff;
}
.quote-block blockquote em { font-style: normal; color: var(--gold-400); }
.quote-block .q-author { margin-top: 1.8rem; }
.quote-block .q-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-400); font-weight: 600; }
.quote-block .q-role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.35rem; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.values-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .values-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .values-grid.cols-4 { grid-template-columns: 1fr; } }
.value-card {
  padding: 2rem 1.8rem; border-radius: var(--radius-lg); background: var(--paper);
  border: 1px solid var(--stone-200); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.value-card .v-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 1.1rem; transition: transform .5s var(--ease); }
.value-card:hover .v-icon { transform: translateY(-3px) rotate(-6deg); }
.value-card h4 { font-size: 1.05rem; }
.value-card p { color: var(--text-soft); font-size: 0.92rem; margin-top: 0.45rem; line-height: 1.6; }

/* Capabilities spec list */
.spec-list { margin-top: 1.6rem; }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--stone-200); font-size: 0.95rem; }
.spec-list li span:first-child { color: var(--text-soft); }
.spec-list li span:last-child { font-weight: 600; color: var(--navy-800); font-family: var(--font-display); text-align: right; }

/* Regions */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 1rem; }
.region-chip {
  border: 1px solid var(--stone-200); border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem; display: flex; align-items: center; gap: 0.8rem;
  background: var(--paper); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.region-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.region-chip svg { color: var(--gold-600); flex-shrink: 0; }
.region-chip .r-name { font-weight: 600; font-family: var(--font-display); font-size: 1rem; }
.region-chip .r-note { font-size: 0.72rem; color: var(--text-soft); }

@media (max-width: 900px){
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .values-grid { grid-template-columns: 1fr; }
  .intro-tag { right: 12px; top: -16px; }
}

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */
.cat-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 2.2rem; }
.cat-nav a {
  padding: 0.6rem 1.15rem; border: 1px solid var(--stone-200); border-radius: 40px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; color: var(--navy-800);
  background: var(--paper); transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.cat-nav a:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); transform: translateY(-2px); }

.cat-block { scroll-margin-top: 80px; }
.cat-block.alt { background: var(--bg-alt); }

.cat-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.cat-media { position: relative; }
.cat-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.cat-head.rev .cat-media { order: 2; }
.cat-count { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; color: var(--gold-600); text-transform: uppercase; }
.cat-intro .section-title { margin: 0.8rem 0 1.1rem; }
.cat-apps { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.cat-apps span {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-600);
  border: 1px solid rgba(169,130,47,0.35); padding: 0.45em 0.9em; border-radius: 40px; font-weight: 600;
}

.subproduct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.subproduct {
  background: var(--paper); border: 1px solid var(--stone-200); border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.subproduct:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.subproduct .sp-num { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; color: var(--gold-600); letter-spacing: 0.1em; }
.subproduct h4 { margin-top: 0.35rem; font-size: 1.05rem; letter-spacing: -0.01em; }
.subproduct p { color: var(--text-soft); font-size: 0.9rem; margin-top: 0.5rem; line-height: 1.6; }
.subproduct .sp-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.1rem; }
.subproduct .sp-tags span { font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-soft); background: var(--stone-100); padding: 0.4em 0.7em; border-radius: 4px; font-weight: 500; }
.cat-block.alt .subproduct { background: #fff; }

@media (max-width: 980px){
  .subproduct-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px){
  .cat-head { grid-template-columns: 1fr; }
  .cat-head.rev .cat-media { order: -1; }
  .cat-media { max-width: 560px; }
}
@media (max-width: 560px){
  .subproduct-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FINISHES PAGE
   ========================================================================== */
.finish-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.finish-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--paper);
  border: 1px solid var(--stone-200); display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  scroll-margin-top: 90px;
}
.finish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.finish-card .fc-img { aspect-ratio: 16/10; overflow: hidden; }
.finish-card .fc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.finish-card:hover .fc-img img { transform: scale(1.06); }
.finish-card .fc-body { padding: 1.7rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.finish-card .fc-num { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; color: var(--gold-600); letter-spacing: 0.1em; }
.finish-card h3 { font-size: 1.15rem; margin-top: 0.35rem; letter-spacing: -0.01em; }
.finish-card > .fc-body > p { color: var(--text-soft); font-size: 0.9rem; margin-top: 0.55rem; line-height: 1.6; }
.finish-card .fc-best { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--stone-200); }
.finish-card .fc-best .lbl { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.finish-card .fc-best p { font-size: 0.82rem; margin-top: 0.35rem; color: var(--ink-soft); line-height: 1.55; }

/* Quality strip (dark band of specs) */
.quality-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); overflow: hidden; }
.quality-strip .qs-item { background: var(--navy-800); padding: clamp(1.6rem,3vw,2.4rem) 1.6rem; text-align: center; }
.quality-strip .qs-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem,2.6vw,2.2rem); color: var(--gold-400); line-height: 1; }
.quality-strip .qs-label { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.66); margin-top: 0.7rem; }

@media (max-width: 980px){ .finish-cards { grid-template-columns: repeat(2, 1fr); } .quality-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .finish-cards { grid-template-columns: 1fr; } .quality-strip { grid-template-columns: 1fr; } }

/* ==========================================================================
   PROJECTS PAGE
   ========================================================================== */
/* Landmark project cards */
.landmark-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.landmark {
  background: var(--paper); border: 1px solid var(--stone-200); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.landmark:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.landmark .lm-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.landmark .lm-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.landmark:hover .lm-img img { transform: scale(1.06); }
.landmark .lm-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--gold-500); color: var(--navy-900);
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45em 0.9em; border-radius: 40px;
}
.landmark .lm-body { padding: 1.8rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.landmark h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
.landmark .lm-loc { font-size: 0.8rem; color: var(--gold-600); font-weight: 600; margin-top: 0.35rem; }
.lm-meta { margin-top: 1.15rem; padding-top: 1.1rem; border-top: 1px solid var(--stone-200); display: grid; gap: 0.6rem; }
.lm-meta .row { display: grid; grid-template-columns: 108px 1fr; gap: 0.9rem; font-size: 0.85rem; align-items: baseline; }
.lm-meta .row .k { color: var(--text-soft); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.08em; font-weight: 600; padding-top: 2px; }
.lm-meta .row .v { color: var(--ink-soft); font-weight: 500; }

/* Ongoing projects list */
.ongoing-list { border: 1px solid var(--stone-200); border-radius: var(--radius-lg); overflow: hidden; }
.ongoing-row {
  display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 1.2rem; align-items: center;
  padding: 1.15rem 1.5rem; border-bottom: 1px solid var(--stone-200); background: var(--paper);
  transition: background .3s var(--ease);
}
.ongoing-row:last-child { border-bottom: none; }
.ongoing-row:hover { background: var(--stone-100); }
.ongoing-row .op-name { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: var(--navy-800); }
.ongoing-row .op-client { color: var(--text-soft); font-size: 0.88rem; }
.ongoing-row .op-status { justify-self: end; display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--gold-600); }
.ongoing-row .op-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 3px rgba(216,155,18,0.2); animation: pulse 2s var(--ease) infinite; }
.ongoing-row .op-status.done .dot { animation: none; box-shadow: none; background: var(--gold-600); }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 3px rgba(201,162,75,0.2);} 50%{ box-shadow: 0 0 0 6px rgba(201,162,75,0);} }

/* Completed highlights list */
.completed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem,4vw,3.5rem); }
.completed-item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 0.95rem 0; border-bottom: 1px solid var(--stone-200); align-items: baseline; }
.completed-item .ci-proj { font-weight: 600; font-size: 0.95rem; color: var(--navy-800); }
.completed-item .ci-client { color: var(--text-soft); font-size: 0.82rem; margin-top: 0.15rem; }
.completed-item .ci-date { color: var(--gold-600); font-size: 0.76rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.03em; }

/* Clients wall */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1px; background: var(--stone-200); border: 1px solid var(--stone-200); border-radius: var(--radius-lg); overflow: hidden; }
.client-cell {
  background: var(--paper); padding: 1.5rem 1rem; text-align: center; min-height: 92px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy-800);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.client-cell:hover { background: var(--navy-800); color: #fff; }
.dark-section .clients-grid { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.1); }
.dark-section .client-cell { background: var(--navy-800); color: rgba(255,255,255,0.82); }
.dark-section .client-cell:hover { background: var(--gold-500); color: var(--navy-900); }

@media (max-width: 860px){
  .landmark-grid { grid-template-columns: 1fr; }
  .completed-grid { grid-template-columns: 1fr; }
  .ongoing-row { grid-template-columns: 1fr auto; }
  .ongoing-row .op-client { grid-column: 1 / -1; }
}

/* ==========================================================================
   TEAM (About)
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.team-card {
  text-align: center; padding: 1.8rem 1rem; border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg); background: var(--paper);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.team-avatar {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--navy-800); color: var(--gold-400);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  transition: transform .5s var(--ease);
}
.team-card:hover .team-avatar { transform: translateY(-3px) scale(1.05); }
.team-card .tm-name { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: var(--navy-800); }
.team-card .tm-role { font-size: 0.72rem; color: var(--gold-600); margin-top: 0.35rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 1024px){ .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   CLIENT LOGO WALL
   ========================================================================== */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.logo-item {
  background: #ffffff; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  padding: 1.3rem 1.1rem; min-height: 96px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.logo-item img {
  max-width: 100%; max-height: 54px; width: auto; height: auto; object-fit: contain;
  filter: grayscale(1); opacity: 0.72; transition: filter .45s var(--ease), opacity .45s var(--ease);
}
.logo-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.logo-item:hover img { filter: grayscale(0); opacity: 1; }
@media (max-width: 1024px){ .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 680px){ .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px){ .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.contact-card {
  text-align: center; padding: 2rem 1.4rem; border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg); background: var(--paper);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.contact-card .cc-ic { width: 52px; height: 52px; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; transition: transform .5s var(--ease); }
.contact-card:hover .cc-ic { transform: translateY(-3px); }
.contact-card .cc-lbl { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
.contact-card .cc-val { font-family: var(--font-display); font-weight: 600; margin-top: 0.45rem; color: var(--navy-800); font-size: 0.98rem; }

.contact-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.6rem, 3vw, 3rem); align-items: start; }
.contact-split.single { display: block; max-width: 760px; margin-inline: auto; }

/* Form */
.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--stone-200); border-radius: var(--radius);
  background: var(--paper); font: inherit; font-size: 0.95rem; color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,75,0.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-soft); margin-top: 0.2rem; }
.contact-form .btn { justify-self: start; margin-top: 0.3rem; }

/* Info panel */
.info-panel { background: var(--navy-800); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); }
.info-panel h3 { color: #fff; font-family: var(--font-display); font-size: 1.25rem; }
.info-panel .ip-sub { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-top: 0.5rem; }
.info-list { margin-top: 1.4rem; }
.info-list li { display: flex; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: flex-start; }
.info-list li:last-child { border-bottom: none; }
.info-list .ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: var(--gold-400); flex-shrink: 0; }
.info-list .lbl { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }
.info-list .val { font-size: 0.96rem; margin-top: 0.25rem; line-height: 1.5; color: #fff; }
.info-list a.val:hover, .info-list .val a:hover { color: var(--gold-400); }
.info-social { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.info-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; color: #fff; transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), color .4s var(--ease); }
.info-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }

/* Map */
.map-embed { position: relative; width: 100%; aspect-ratio: 16/6; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--stone-200); background: var(--stone-100); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 900px){
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .map-embed { aspect-ratio: 4/3; }
}
@media (max-width: 520px){
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.blog-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--stone-200); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.blog-card .bc-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.blog-card:hover .bc-img img { transform: scale(1.06); }
.blog-card .bc-body { padding: 1.7rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .bc-cat { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.blog-card h3 { font-size: 1.12rem; margin-top: 0.5rem; line-height: 1.28; letter-spacing: -0.01em; }
.blog-card p { color: var(--text-soft); font-size: 0.9rem; margin-top: 0.6rem; flex: 1; line-height: 1.6; }
.blog-card .bc-meta { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.2rem; font-size: 0.75rem; color: var(--text-soft); }
.blog-card .bc-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--grey-400); }
.blog-card .bc-link { margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--navy-800); display: inline-flex; align-items: center; gap: 0.5em; }
.blog-card .bc-link svg { transition: transform .4s var(--ease); }
.blog-card:hover .bc-link { color: var(--gold-600); }
.blog-card:hover .bc-link svg { transform: translateX(4px); }

/* Featured (first) card spans wide */
.blog-card.featured { grid-column: span 2; flex-direction: row; }
.blog-card.featured .bc-img { aspect-ratio: auto; width: 50%; flex-shrink: 0; }
.blog-card.featured .bc-body { justify-content: center; }
.blog-card.featured h3 { font-size: 1.5rem; }
@media (max-width: 1000px){ .blog-grid { grid-template-columns: repeat(2, 1fr); } .blog-card.featured { grid-column: span 2; } }
@media (max-width: 680px){ .blog-grid { grid-template-columns: 1fr; } .blog-card.featured { grid-column: span 1; flex-direction: column; } .blog-card.featured .bc-img { width: 100%; aspect-ratio: 16/10; } }

/* Article page */
.article-wrap { max-width: 760px; margin-inline: auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.7rem 1.1rem; align-items: center; margin-top: 1.3rem; font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.article-meta .cat { color: var(--navy-900); background: var(--gold-400); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.66rem; padding: 0.4em 0.9em; border-radius: 40px; }
.article-lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink); font-weight: 400; margin-bottom: 1.9rem; }
.article-body { font-size: 1.05rem; line-height: 1.8; color: var(--ink-soft); }
.article-body p { margin-bottom: 1.3rem; }
.article-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--navy-800); margin: 2.6rem 0 1rem; letter-spacing: -0.01em; }
.article-body h3 { font-size: 1.15rem; color: var(--navy-800); margin: 1.9rem 0 0.7rem; font-weight: 600; }
.article-body ul { margin: 0 0 1.4rem; padding-left: 0; list-style: none; }
.article-body li { position: relative; padding-left: 1.6rem; margin-bottom: 0.65rem; }
.article-body li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; background: var(--gold-500); border-radius: 2px; }
.article-body strong { color: var(--navy-800); font-weight: 600; }
.article-cta { margin-top: 2.6rem; padding: 1.8rem; border: 1px solid var(--stone-200); border-left: 3px solid var(--gold-500); border-radius: var(--radius-lg); background: var(--bg-alt); }
.article-cta h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-800); }
.article-cta p { font-size: 0.95rem; color: var(--text-soft); margin: 0.5rem 0 1.1rem; }
.article-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--stone-200); flex-wrap: wrap; }
.article-nav a { font-size: 0.8rem; font-weight: 600; color: var(--navy-800); display: inline-flex; align-items: center; gap: 0.5em; }
.article-nav a:hover { color: var(--gold-600); }

/* ==========================================================================
   MANUFACTURING PROCESS PAGE
   ========================================================================== */
.workflow-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.7rem; }
.wf-step {
  text-align: center; padding: 1.5rem 1rem; background: var(--paper);
  border: 1px solid var(--stone-200); border-radius: var(--radius-lg); position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.wf-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.wf-step .wf-n { font-family: var(--font-display); font-weight: 700; color: var(--gold-500); font-size: 0.78rem; letter-spacing: 0.08em; }
.wf-step .wf-t { font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; margin-top: 0.45rem; color: var(--navy-800); line-height: 1.25; }
@media (max-width: 900px){ .workflow-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px){ .workflow-strip { grid-template-columns: repeat(2, 1fr); } }

.stage-steps { margin-top: 1.3rem; display: grid; gap: 0.7rem; list-style: none; padding: 0; }
.stage-steps li { position: relative; padding-left: 1.7rem; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
.stage-steps li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; background: var(--gold-500); border-radius: 2px; }

.flow-figure { border: 1px solid var(--stone-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.flow-figure img { width: 100%; display: block; }
.flow-figure figcaption { font-size: 0.82rem; color: var(--text-soft); padding: 0.9rem 1.2rem; border-top: 1px solid var(--stone-200); text-align: center; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: clamp(2rem,4vw,3rem); }
.gallery-filters button {
  padding: 0.6rem 1.2rem; border: 1px solid var(--stone-200); border-radius: 40px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy-800);
  background: var(--paper); cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.gallery-filters button:hover { border-color: var(--gold-400); }
.gallery-filters button.active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.gallery-grid { columns: 4 260px; column-gap: 14px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; display: block; background: var(--stone-100);
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; display: block; transition: transform .8s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,27,69,0) 55%, rgba(26,27,69,0.55));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .g-cat {
  position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2; color: #fff;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item:hover .g-cat { opacity: 1; transform: none; }
.gallery-item .g-zoom {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--navy-800); display: grid; place-items: center;
  opacity: 0; transform: scale(0.8); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item:hover .g-zoom { opacity: 1; transform: none; }
.gallery-item.hide { display: none; }
@media (max-width: 640px){ .gallery-grid { columns: 2 150px; column-gap: 10px; } .gallery-item { margin-bottom: 10px; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 210; background: rgba(26,27,69,0.95); display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lightbox .lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.lightbox button { position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .3s var(--ease); }
.lightbox button:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px){ .lightbox .lb-prev { left: 10px; } .lightbox .lb-next { right: 10px; } .lightbox button { width: 42px; height: 42px; } }

/* Machinery two-column spec grid */
.mach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem,4vw,3.5rem); margin-top: 2rem; }
@media (max-width: 760px){ .mach-grid { grid-template-columns: 1fr; } }
.landmark h3 a { color: inherit; }
.landmark h3 a:hover { color: var(--gold-600); }

/* spec-list inside dark info-panel (project detail pages) */
.info-panel .spec-list li { border-bottom-color: rgba(255,255,255,0.12); }
.info-panel .spec-list li span:first-child { color: rgba(255,255,255,0.55); }
.info-panel .spec-list li span:last-child { color: #ffffff; }

/* ==========================================================================
   HOMEPAGE AI ASSISTANT BAND
   ========================================================================== */
.ai-band { background: var(--navy-800); color: #fff; overflow: hidden; }
.ai-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.ai-copy .eyebrow { color: var(--gold-400); }
.ai-copy .section-title { color: #fff; margin: 1rem 0 1.1rem; }
.ai-copy .section-title em { color: var(--gold-400); }
.ai-copy .lead { color: rgba(255,255,255,0.78); }
.ai-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.ai-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); display: inline-flex; align-items: center; gap: 0.5em; }
.ai-note .dot { width: 8px; height: 8px; border-radius: 50%; background: #43d854; box-shadow: 0 0 0 4px rgba(67,216,84,0.18); }
.btn-assistant { background: var(--gold-500); color: var(--navy-900); }
.btn-assistant::before { background: #fff; }
.btn-assistant:hover { color: var(--navy-900); }
.btn-assistant .bi { display: inline-grid; place-items: center; }

/* Chat mock */
.ai-mock { background: #fbfaf7; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; max-width: 380px; margin-left: auto; border: 1px solid rgba(255,255,255,0.1); }
.ai-mock-head { background: var(--navy-900); color: #fff; padding: 15px 18px; display: flex; align-items: center; gap: 11px; }
.ai-mock-head .av { width: 38px; height: 38px; border-radius: 50%; background: rgba(220,189,116,0.16); color: var(--gold-400); display: grid; place-items: center; }
.ai-mock-head b { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; }
.ai-mock-head small { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.ai-mock-head small .dot { width: 7px; height: 7px; border-radius: 50%; background: #43d854; }
.ai-mock-body { padding: 18px; display: flex; flex-direction: column; gap: 11px; }
.ai-mock-body .b { max-width: 84%; font-size: 0.88rem; line-height: 1.45; padding: 10px 13px; border-radius: 14px; }
.ai-mock-body .b.bot { background: #fff; border: 1px solid var(--stone-200); color: var(--ink-soft); border-bottom-left-radius: 4px; align-self: flex-start; }
.ai-mock-body .b.user { background: var(--navy-800); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.ai-mock-chips { padding: 0 18px 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.ai-mock-chips span { font-size: 0.74rem; font-weight: 600; color: var(--navy-800); background: var(--gold-100); border: 1px solid var(--gold-400); padding: 6px 11px; border-radius: 20px; }
.ai-mock-chips span.wa { background: #25D366; border-color: #25D366; color: #fff; }
@media (max-width: 900px){
  .ai-grid { grid-template-columns: 1fr; }
  .ai-mock { margin: 0 auto; }
}

/* Make the whole landmark project card clickable via the title link */
.landmark { position: relative; }
.landmark h3 a::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.landmark:hover h3 a { color: var(--gold-600); }

/* Fully-clickable cards (stretched links) */
.product-card { position: relative; }
.product-card .product-stretch { position: absolute; inset: 0; z-index: 5; }
.finish-panel .fp-stretch { position: absolute; inset: 0; z-index: 3; }
.project .project-stretch { position: absolute; inset: 0; z-index: 3; }

/* ==========================================================================
   CAREERS — current openings + application form
   ========================================================================== */
.openings-list { display: grid; gap: 1rem; max-width: 900px; margin: 0 auto; }
.opening {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-lg);
  padding: 1.5rem 1.7rem; transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.opening:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold-400); }
.opening .op-info h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy-800); }
.opening .op-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: .55rem 0 .7rem; }
.opening .op-tags span {
  font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-600); background: var(--gold-100); border-radius: 20px; padding: .3rem .7rem;
}
.opening .op-info p { color: var(--ink-soft); font-size: .94rem; max-width: 62ch; }
.opening .op-apply { flex-shrink: 0; }
.openings-empty { display: none; text-align: center; max-width: 640px; margin: 1.5rem auto 0; color: var(--text-soft); }
.openings-list:not(:has(> .opening)) + .openings-empty { display: block; }

.career-form { max-width: 760px; margin: 2.4rem auto 0; }
.career-form .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.career-form .field-hint { display: block; margin-top: .4rem; font-size: .78rem; color: var(--text-soft); }
.career-form .file-input {
  width: 100%; padding: .7rem .9rem; font-family: inherit; font-size: .92rem; color: var(--ink-soft);
  background: var(--paper); border: 1px dashed var(--stone-300); border-radius: var(--radius); cursor: pointer;
}
.career-form .file-input::file-selector-button {
  margin-right: .9rem; border: 0; border-radius: 20px; padding: .5rem 1rem; cursor: pointer;
  background: var(--navy-800); color: #fff; font-family: inherit; font-weight: 600; font-size: .82rem;
}
.career-form .file-input:hover { border-color: var(--gold-500); }
.apply-thanks { max-width: 640px; margin: 2rem auto 0; text-align: center; background: var(--gold-100); border: 1px solid var(--gold-400); border-radius: var(--radius-lg); padding: 2.6rem 2rem; }
.apply-thanks .at-ic { width: 54px; height: 54px; margin: 0 auto 1rem; border-radius: 50%; background: var(--navy-800); color: var(--gold-400); display: grid; place-items: center; }
.apply-thanks h3 { font-family: var(--font-display); color: var(--navy-800); font-size: 1.3rem; }
.apply-thanks p { color: var(--ink-soft); margin-top: .5rem; }

@media (max-width: 620px){
  .opening { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .opening .op-apply { align-self: stretch; justify-content: center; }
}
