/* ===========================================================
   DD Steel — Industrial Brand System
   =========================================================== */
    :root {
      /* Brand — sampled from ddsteel_logo.png */
      --brand-red:        #ED3237;
      --brand-red-2:      #ED3237;
      --brand-red-deep:   #C41E24;
      --brand-red-soft:   rgba(237, 50, 55, 0.10);
      --brand-indigo:     #332698;
      --brand-indigo-2:   #4A36B8;
      --brand-indigo-deep:#221A66;
      --brand-indigo-soft:rgba(51, 38, 152, 0.10);

      /* Color tokens — light theme */
      --bg-deep:      #F1F5F9;
      --bg:           #FFFFFF;
      --bg-elevated:  #FFFFFF;
      --bg-card:      #FFFFFF;
      --bg-2:         #F8FAFC;
      --line:         rgba(15, 23, 42, 0.10);
      --line-strong:  rgba(15, 23, 42, 0.16);

      --steel-50:     #F8FAFC;
      --steel-100:    #F1F5F9;
      --steel-200:    #E2E8F0;
      --steel-300:    #CBD5E1;
      --steel-400:    #94A3B8;
      --steel-500:    #64748B;
      --steel-700:    #334155;

      --text:         #334155;
      --text-strong:  #0F172A;
      --text-muted:   #64748B;
      --success:      #16A34A;

      --nav-scrolled-bg: rgba(255, 255, 255, 0.92);
      --nav-mobile-bg:   rgba(255, 255, 255, 0.98);
      --nav-link:        #334155;
      --nav-link-hover:  #0F172A;
      --nav-link-active: #0F172A;
      --image-overlay:   transparent;

      /* Hero overlay fallbacks — overridden per-page in head.php */
      --hero-overlay-r: 255;
      --hero-overlay-g: 255;
      --hero-overlay-b: 255;
      --hero-overlay-r2: 51;
      --hero-overlay-g2: 38;
      --hero-overlay-b2: 152;
      --hero-overlay-a1: 0;
      --hero-overlay-a2: 0;
      --hero-overlay-a3: 0;
      --hero-overlay-bottom: 0;

      /* Layout */
      --radius-sm: 0;
      --radius:    0;
      --radius-lg: 0;

      /* Shadows */
      --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);

      /* Type */
      --font-display: 'Oswald', 'Inter', system-ui, -apple-system, sans-serif;
      --font-body:    'Inter',  system-ui, -apple-system, sans-serif;

      /* Easing */
      --ease: cubic-bezier(.2,.7,.2,1);
    }

    /* ----- Reset ----- */
    *, *::before, *::after { box-sizing: border-box; }
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--text);
      background: var(--bg-deep);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; }
    button { font: inherit; cursor: pointer; }
    a { color: inherit; text-decoration: none; }

    /* ----- Background atmosphere ----- */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(60% 50% at 80% 0%, rgba(237,50,55,0.06), transparent 70%),
        radial-gradient(40% 35% at 10% 60%, rgba(51,38,152,0.05), transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
      z-index: 0;
      mask-image: radial-gradient(120% 100% at 50% 0%, #000 0%, transparent 90%);
      -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 0%, transparent 90%);
      opacity: 0.5;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 28px;
      position: relative;
      z-index: 1;
    }

    /* ----- Typography ----- */
    h1,h2,h3,h4 {
      font-family: var(--font-display);
      font-weight: 500;
      letter-spacing: 0.01em;
      line-height: 1.05;
      color: var(--text-strong);
      margin: 0;
    }
    h1 { font-size: clamp(2.6rem, 6.5vw, 5.6rem); }
    h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
    h3 { font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 600; letter-spacing: 0.02em; }
    p  { margin: 0 0 1em; color: var(--text); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brand-indigo-2);
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--brand-red);
      display: inline-block;
    }

    /* ----- Buttons ----- */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 22px;
      border-radius: var(--radius-sm);
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid transparent;
      transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
      cursor: pointer;
      white-space: nowrap;
    }
    .btn-primary {
      background-color: #ED3237;
      background-image: none;
      border-color: #ED3237;
      color: #fff;
      box-shadow: 0 10px 30px rgba(237,50,55,0.35);
    }
    .btn-primary:hover {
      background-color: #ED3237;
      filter: brightness(1.08);
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(237,50,55,0.45);
    }
    .btn-ghost {
      background: transparent;
      color: var(--text-strong);
      border-color: var(--line-strong);
    }
    .btn-ghost:hover { border-color: var(--brand-red-2); color: var(--brand-red-2); }
    .btn .arrow {
      width: 18px; height: 1px; background: currentColor; position: relative;
    }
    .btn .arrow::after {
      content: ""; position: absolute; right: 0; top: -3px;
      width: 7px; height: 7px; border-right: 1px solid currentColor;
      border-top: 1px solid currentColor; transform: rotate(45deg);
    }

    /* ===========================================================
       NAVIGATION
       =========================================================== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
    }
    .nav-topbar {
      background: var(--brand-indigo-deep);
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 10px;
      line-height: 1.35;
      letter-spacing: 0.02em;
    }
    .nav-topbar__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px 20px;
      min-height: 28px;
      padding: 4px 0;
      text-align: center;
    }
    .nav-topbar__item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 0;
      min-width: 0;
      color: #fff;
    }
    .nav-topbar__item .material-symbols-outlined {
      flex-shrink: 0;
      font-size: 13px;
      line-height: 1;
      color: #fff;
      font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
    }
    .nav-topbar__item--address span:last-child {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: #fff;
    }
    .nav-topbar__item--phones {
      flex-shrink: 0;
      flex-wrap: wrap;
      justify-content: center;
      color: #fff;
    }
    .nav-topbar a {
      color: #fff;
      font-weight: 500;
      transition: opacity .2s var(--ease);
    }
    .nav-topbar a:hover { opacity: 0.82; }
    .nav-topbar__sep {
      margin: 0 6px;
      color: rgba(255, 255, 255, 0.45);
    }
    .nav {
      position: relative;
      padding: 20px 0;
      transition: background-color .3s var(--ease), padding .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
      border-bottom: 1px solid transparent;
    }
    .nav.is-scrolled {
      background: var(--nav-scrolled-bg);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom-color: var(--line);
      padding: 12px 0;
      box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    }
    /* Homepage: frosted bar from load so links stay readable over any hero photo */
    .nav.nav-over-hero {
      background: var(--nav-scrolled-bg);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom-color: var(--line);
      padding: 12px 0;
      box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    }
    .nav-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }
    .brand {
      grid-column: 1;
      justify-self: start;
      display: flex; align-items: center; gap: 12px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 18px;
      letter-spacing: 0.04em;
      color: var(--text-strong);
    }
    .brand-logo {
      height: 52px; width: auto;
      display: block;
      object-fit: contain;
    }
    .brand:has(.brand-logo) .brand-text { display: none; }
    .brand-mark {
      width: 38px; height: 38px;
      display: inline-grid; place-items: center;
      background: linear-gradient(140deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      border-radius: var(--radius-sm);
      box-shadow: 0 8px 22px rgba(237,50,55,0.4);
      position: relative;
    }
    .brand-mark::after {
      content: ""; position: absolute; inset: 4px;
      border: 1px solid rgba(255,255,255,0.45);
      border-radius: 0;
    }
    .brand-text small {
      display: block;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.24em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .nav-links {
      grid-column: 2;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      list-style: none; margin: 0; padding: 0;
    }
    .nav-links a {
      display: inline-block; padding: 10px 14px;
      font-size: 13px; font-weight: 600;
      color: var(--nav-link);
      letter-spacing: 0.04em;
      position: relative;
      transition: color .2s var(--ease);
    }
    .nav-links a:hover { color: var(--nav-link-hover); }
    .nav-links a::after {
      content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px;
      height: 2px; background: var(--brand-red); transform: scaleX(0); transform-origin: left;
      transition: transform .3s var(--ease);
    }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-links a.is-active {
      color: var(--nav-link-active);
    }
    .nav-links a.is-active::after {
      transform: scaleX(1);
    }

    .nav-end {
      grid-column: 3;
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-cta-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 11px 12px 11px 20px;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #fff;
      background: var(--brand-red);
      border: 1px solid var(--brand-red-deep);
      box-shadow: 0 10px 28px rgba(237, 50, 55, 0.28);
      transition:
        transform .25s var(--ease),
        box-shadow .25s var(--ease),
        background-color .25s var(--ease);
    }
    .nav-cta-btn:hover {
      transform: translateY(-2px);
      background: var(--brand-red-deep);
      box-shadow: 0 14px 34px rgba(237, 50, 55, 0.36);
    }
    .nav-cta-btn.is-active {
      box-shadow:
        0 0 0 2px var(--brand-red-soft),
        0 10px 28px rgba(237, 50, 55, 0.28);
    }
    .nav-cta-btn__label {
      position: relative;
      z-index: 1;
      line-height: 1;
    }
    .nav-cta-btn__icon {
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.24);
    }
    .nav-cta-btn__icon::before {
      content: "";
      width: 8px;
      height: 8px;
      border-right: 2px solid #fff;
      border-top: 2px solid #fff;
      transform: rotate(45deg) translate(-1px, 1px);
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line-strong);
      background: var(--bg);
      border-radius: var(--radius-sm);
      color: var(--text-strong);
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
      transition: border-color .2s var(--ease), background-color .2s var(--ease);
    }
    .nav-toggle:hover {
      border-color: var(--brand-red);
      background: var(--brand-red-soft);
    }
    .nav-toggle__lines {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 20px;
    }
    .nav-toggle__lines span {
      display: block;
      height: 2px;
      width: 100%;
      background: currentColor;
      border-radius: 1px;
      transition: transform .25s var(--ease), opacity .25s var(--ease);
    }
    .nav.is-open .nav-toggle__lines span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav.is-open .nav-toggle__lines span:nth-child(2) {
      opacity: 0;
    }
    .nav.is-open .nav-toggle__lines span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .nav-overlay {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      top: var(--site-header-h, 112px);
      z-index: 48;
      border: 0;
      padding: 0;
      margin: 0;
      background: rgba(15, 23, 42, 0.45);
      cursor: pointer;
    }
    .nav-links__cta {
      display: none;
    }

    /* ===========================================================
       HERO
       =========================================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      padding: calc(var(--site-header-h, 112px) + 80px) 0 80px;
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: -1;
      background: var(--bg-deep);
      overflow: hidden;
    }
    .hero-bg::before {
      content: "";
      position: absolute; inset: 0;
      background: var(--hero-image) center/cover no-repeat;
      filter: grayscale(0.05) saturate(0.95) brightness(1.02);
      transform: scale(1.02);
    }
    .hero-bg::after {
      content: ""; position: absolute; inset: 0;
      background:
        linear-gradient(120deg,
          rgba(var(--hero-overlay-r), var(--hero-overlay-g), var(--hero-overlay-b), var(--hero-overlay-a1)) 0%,
          rgba(var(--hero-overlay-r2), var(--hero-overlay-g2), var(--hero-overlay-b2), var(--hero-overlay-a2)) 48%,
          rgba(var(--hero-overlay-r), var(--hero-overlay-g), var(--hero-overlay-b), var(--hero-overlay-a3)) 100%),
        linear-gradient(0deg, rgba(var(--hero-overlay-r), var(--hero-overlay-g), var(--hero-overlay-b), var(--hero-overlay-bottom)) 0%, transparent 38%);
    }
    .hero.hero-overlay--off .hero-bg::after {
      display: none;
    }
    .hero.hero-overlay--grid .hero-bg::after {
      background:
        linear-gradient(120deg,
          rgba(var(--hero-overlay-r), var(--hero-overlay-g), var(--hero-overlay-b), var(--hero-overlay-a1)) 0%,
          rgba(var(--hero-overlay-r2), var(--hero-overlay-g2), var(--hero-overlay-b2), var(--hero-overlay-a2)) 48%,
          rgba(var(--hero-overlay-r), var(--hero-overlay-g), var(--hero-overlay-b), var(--hero-overlay-a3)) 100%),
        linear-gradient(0deg, rgba(var(--hero-overlay-r), var(--hero-overlay-g), var(--hero-overlay-b), var(--hero-overlay-bottom)) 0%, transparent 38%),
        repeating-linear-gradient(90deg, transparent 0px, transparent 39px, rgba(15,23,42,0.03) 39px, rgba(15,23,42,0.03) 40px);
    }

    .hero.hero-overlay--dark .hero-text .eyebrow,
    .hero.hero-overlay--dark .hero-text h1,
    .hero.hero-overlay--dark .hero-text p.lead,
    .hero.hero-overlay--dark .hero-scroll {
      color: #F8FAFC;
    }
    .hero.hero-overlay--dark .hero-text p.lead { color: #E2E8F0; }
    .hero.hero-overlay--dark .hero-text h1 .accent {
      background: linear-gradient(90deg, #F8FAFC, #CBD5E1);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero.hero-overlay--dark .btn-ghost {
      color: #F8FAFC;
      border-color: rgba(248, 250, 252, 0.45);
    }
    .hero.hero-overlay--dark .btn-ghost:hover {
      background: rgba(248, 250, 252, 0.12);
      border-color: #F8FAFC;
    }

    .hero-grid {
      display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
    }
    .hero-text h1    .accent {
      background: linear-gradient(90deg, var(--brand-indigo-2), var(--brand-indigo));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }
    .accent-solid { color: var(--brand-red-2); }
    .hero-text p.lead {
      font-size: clamp(1.05rem, 1.4vw, 1.25rem);
      color: var(--text);
      max-width: 56ch;
      margin: 22px 0 36px;
      line-height: 1.6;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero-stat-card {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 28px;
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .hero-stat-card::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
    }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat .num {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.6vw, 3rem);
      font-weight: 600;
      color: var(--text-strong);
      display: block;
      line-height: 1;
    }
    .stat .num .unit { font-size: 0.5em; color: var(--brand-red-2); margin-left: 4px; }
    .stat .label {
      display: block;
      margin-top: 8px;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .hero-scroll {
      position: absolute;
      bottom: 30px; left: 50%; transform: translateX(-50%);
      font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--text-muted);
      display: flex; align-items: center; gap: 10px;
      animation: bob 2.4s ease-in-out infinite;
    }
    .hero-scroll .line {
      width: 1px; height: 30px; background: linear-gradient(180deg, transparent, var(--brand-red));
    }
    @keyframes bob {
      0%,100% { transform: translate(-50%, 0); }
      50%    { transform: translate(-50%, 6px); }
    }

    /* ===========================================================
       MARQUEE / TICKER
       =========================================================== */
    .ticker {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--bg);
      overflow: hidden;
      padding: 18px 0;
    }
    .ticker-track {
      display: flex; gap: 40px;
      animation: scroll 28s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    .ticker span {
      display: inline-flex; align-items: center; gap: 14px;
      font-family: var(--font-display);
      font-size: 16px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-strong);
    }
    .ticker span::before {
      content: ""; width: 8px; height: 8px;
      background: var(--brand-red); transform: rotate(45deg);
    }
    @keyframes scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ===========================================================
       SECTIONS
       =========================================================== */
    section {
      position: relative;
      padding: 120px 0;
    }
    section.tight { padding: 80px 0; }
    section.light {
      background: var(--steel-100);
      color: var(--steel-700);
    }
    section.light h2,
    section.light h3 { color: var(--text-strong); }
    section.light p  { color: var(--text); }
    section.light .eyebrow { color: var(--brand-indigo); }

    .section-head {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
      margin-bottom: 60px;
    }
    .section-head .intro { max-width: 50ch; }

    /* ===========================================================
       ABOUT / INTRO
       =========================================================== */
    .about-grid {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
    }
    .about-copy h2 { margin-bottom: 24px; }
    .about-copy p { color: var(--text); font-size: 1.05rem; line-height: 1.75; }
    .about-features {
      list-style: none; padding: 0; margin: 40px 0 0;
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px;
    }
    .about-features li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 12px 0;
      font-size: 15px;
      color: var(--text);
      border-top: 1px solid var(--line);
    }
    .about-features li:first-child,
    .about-features li:nth-child(2) { border-top: none; }
    .about-features li svg {
      flex-shrink: 0; width: 18px; height: 18px;
      color: var(--brand-red); margin-top: 3px;
    }

    .about-card {
      background: linear-gradient(160deg, var(--bg-elevated), var(--bg-2));
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 36px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .about-card::after {
      content: "EST. 2016";
      position: absolute; top: 24px; right: 28px;
      font-family: var(--font-display);
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--text-muted);
    }
    .about-card .quote {
      font-family: var(--font-display);
      font-size: 1.4rem;
      line-height: 1.4;
      color: var(--text-strong);
      margin: 0 0 24px;
    }
    .about-card .quote::before {
      content: "\201C"; display: block;
      font-size: 3rem; line-height: 0.6;
      color: var(--brand-red); margin-bottom: 12px;
    }
    .about-card .meta {
      display: flex; gap: 16px;
      font-size: 12px; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--text-muted);
    }
    .about-card .meta strong { color: var(--text-strong); }

    /* ===========================================================
       SERVICES
       =========================================================== */
    .service-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .service-card {
      background: linear-gradient(180deg, var(--bg-card), var(--bg-2));
      border: 1px solid var(--line);
      padding: 38px 32px;
      border-radius: var(--radius);
      transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .service-card::before {
      content: ""; position: absolute;
      left: 0; top: 0; bottom: 0; width: 2px;
      background: var(--brand-red);
      transform: scaleY(0); transform-origin: top;
      transition: transform .4s var(--ease);
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: var(--line-strong);
      background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
      box-shadow: var(--shadow-lg);
    }
    .service-card:hover::before { transform: scaleY(1); }
    .service-card .num {
      font-family: var(--font-display);
      font-size: 12px;
      letter-spacing: 0.2em;
      color: var(--brand-red);
      display: block;
      margin-bottom: 24px;
    }
    .service-card h3 {
      font-size: 1.6rem;
      margin-bottom: 18px;
    }
    .service-card ul {
      list-style: none; padding: 0; margin: 0;
      border-top: 1px solid var(--line);
    }
    .service-card li {
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
      color: var(--text);
      position: relative;
      padding-left: 22px;
    }
    .service-card li::before {
      content: ""; position: absolute; left: 0; top: 19px;
      width: 12px; height: 1px; background: var(--brand-red);
    }
    .service-card li:last-child { border-bottom: none; }

    /* ===========================================================
       CAPABILITIES
       =========================================================== */
    .cap-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .cap-cell {
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 30px 26px;
      position: relative;
      transition: background-color .3s var(--ease);
    }
    .cap-cell:hover { background: rgba(237,50,55,0.06); }
    .cap-cell .icon {
      width: 36px; height: 36px;
      display: inline-grid; place-items: center;
      background: var(--brand-red-soft);
      color: var(--brand-red-2);
      border-radius: var(--radius-sm);
      margin-bottom: 18px;
    }
    .cap-cell .icon .material-symbols-outlined {
      font-size: 22px;
      line-height: 1;
      font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    }
    .cap-cell h4 {
      font-family: var(--font-display);
      font-size: 16px;
      color: var(--text-strong);
      font-weight: 500;
      letter-spacing: 0.03em;
      line-height: 1.3;
    }
    .cap-cell .sub {
      font-size: 13px;
      color: var(--text-muted);
      margin: 6px 0 0;
    }

    /* ===========================================================
       VISION / MISSION
       =========================================================== */
    .vm-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    }
    .vm-card {
      position: relative;
      background: linear-gradient(180deg, var(--bg-elevated), var(--bg-2));
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 50px 42px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .vm-card .label {
      font-family: var(--font-display);
      font-size: 12px; letter-spacing: 0.24em;
      color: var(--brand-indigo-2); text-transform: uppercase;
      display: block; margin-bottom: 14px;
    }
    .vm-card h3 {
      font-size: 1.8rem; font-weight: 500; line-height: 1.2;
      color: var(--text-strong); margin-bottom: 18px;
    }
    .vm-card p { color: var(--text); font-size: 1.02rem; line-height: 1.7; margin: 0; }
    .vm-card .corner {
      position: absolute; top: 24px; right: 28px;
      font-family: var(--font-display);
      font-size: 96px; line-height: 1;
      color: rgba(51,38,152,0.10);
      font-weight: 700;
    }

    /* ===========================================================
       VALUES
       =========================================================== */
    .values-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .value-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 36px 30px;
      transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
      box-shadow: var(--shadow-md);
    }
    .value-card:hover { border-color: var(--brand-red-2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .value-card .key {
      font-family: var(--font-display);
      font-size: 13px; letter-spacing: 0.18em;
      color: var(--brand-indigo-2); text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 10px;
      padding: 6px 12px;
      border: 1px solid var(--brand-indigo-soft);
      border-radius: 0;
      background: rgba(51,38,152,0.06);
      margin-bottom: 20px;
    }
    .value-card h3 { font-size: 1.45rem; margin-bottom: 6px; }
    .value-card .tagline {
      color: var(--text-muted);
      font-size: 13px;
      margin-bottom: 22px;
      letter-spacing: 0.02em;
    }
    .value-card ul {
      list-style: none; padding: 0; margin: 0;
    }
    .value-card li {
      padding: 10px 0;
      border-top: 1px solid var(--line);
      font-size: 14px;
      color: var(--text);
      position: relative; padding-left: 22px;
    }
    .value-card li::before {
      content: "";
      position: absolute;
      left: 0; top: 18px;
      width: 12px; height: 1px; background: var(--brand-red);
    }

    /* ===========================================================
       SECTORS
       =========================================================== */
    .sectors-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .sector-card {
      position: relative;
      padding: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: auto;
      display: flex;
      flex-direction: column;
      background: var(--bg-card);
      border: 1px solid var(--line);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
      box-shadow: var(--shadow-md);
    }
    .sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .sector-card .bg {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      flex-shrink: 0;
      overflow: hidden;
      opacity: 1;
      transition: transform .6s var(--ease);
    }
    .sector-card .bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s var(--ease);
    }
    .sector-card:hover .bg img { transform: scale(1.04); }
    .sector-card .body {
      position: relative;
      z-index: 1;
      padding: 24px 28px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .sector-card .num {
      font-family: var(--font-display);
      font-size: 14px; letter-spacing: 0.22em;
      color: var(--brand-red);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .sector-card h3 {
      font-size: 1.65rem;
      margin-bottom: 10px;
      color: var(--text-strong);
    }
    .sector-card p { color: var(--text); max-width: none; }

    /* ===========================================================
       PROJECTS / GALLERY
       =========================================================== */
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      grid-auto-rows: auto;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      background: var(--bg-card);
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
      box-shadow: var(--shadow-md);
    }
    .gallery-item:hover { transform: translateY(-4px); border-color: var(--brand-red); box-shadow: var(--shadow-lg); }
    .gallery-item .art {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      flex-shrink: 0;
      overflow: hidden;
      transition: transform .8s var(--ease);
    }
    .gallery-item .art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .8s var(--ease);
    }
    .gallery-item:hover .art img { transform: scale(1.06); }
    .gallery-item .meta {
      position: relative;
      z-index: 1;
      padding: 18px 20px 20px;
      background: var(--bg-card);
      height: auto;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .gallery-item .tag {
      font-size: 11px; letter-spacing: 0.2em;
      color: var(--brand-red); text-transform: uppercase;
      margin-bottom: 8px;
    }
    .gallery-item h4 {
      font-family: var(--font-display);
      font-size: 18px; font-weight: 500;
      color: var(--text-strong); line-height: 1.25;
      margin: 0;
    }
    .gallery-item .desc {
      font-size: 13px; color: var(--text-muted);
      margin-top: 8px; line-height: 1.5;
      max-height: none;
      opacity: 1;
    }
    .gallery-item:hover .desc { max-height: none; opacity: 1; margin-top: 8px; }

    .gallery-item.tall { grid-row: span 2; }
    .gallery-item.wide { grid-column: span 2; }

    /* Photo gallery page */
    .gallery-section { padding-bottom: 100px; }
    .gallery-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .gallery-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .gallery-filter {
      appearance: none;
      border: 1px solid var(--line);
      background: var(--bg-2);
      color: var(--text-muted);
      font: inherit;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 10px 16px;
      border-radius: 999px;
      cursor: pointer;
      transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
    }
    .gallery-filter:hover {
      border-color: var(--brand-red);
      color: var(--text-strong);
    }
    .gallery-filter.is-active {
      background: var(--brand-red);
      border-color: var(--brand-red);
      color: #fff;
    }
    .gallery-count {
      margin: 0;
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: 0.04em;
    }
    .photo-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      grid-auto-rows: auto;
    }
    .photo-card {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      background: var(--bg-card);
      text-align: left;
      transition: transform .35s var(--ease), border-color .35s var(--ease), opacity .35s var(--ease), box-shadow .35s var(--ease);
      box-shadow: var(--shadow-md);
    }
    .photo-card:hover {
      transform: translateY(-4px);
      border-color: var(--brand-red);
      box-shadow: var(--shadow-lg);
    }
    .photo-card.is-hidden {
      display: none;
    }
    .photo-card-art {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      flex-shrink: 0;
      overflow: hidden;
    }
    .photo-card-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s var(--ease);
    }
    .photo-card:hover .photo-card-art img { transform: scale(1.04); }
    .photo-card-meta {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      height: auto;
      padding: 16px 18px 18px;
      background: var(--bg-card);
    }
    .photo-card-meta .tag {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brand-red);
      margin-bottom: 6px;
    }
    .photo-card-meta .title {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 500;
      color: var(--text-strong);
      line-height: 1.25;
    }
    .photo-card.tall { grid-row: span 2; }
    .photo-card.wide { grid-column: span 2; }

    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .gallery-lightbox[hidden] { display: none; }
    .gallery-lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(4, 6, 10, 0.92);
      backdrop-filter: blur(8px);
    }
    .gallery-lightbox-dialog {
      position: relative;
      z-index: 1;
      width: min(1100px, 100%);
      max-height: calc(100vh - 48px);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 12px;
    }
    .gallery-lightbox-figure {
      margin: 0;
      max-height: calc(100vh - 48px);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .gallery-lightbox-figure img {
      width: 100%;
      max-height: calc(100vh - 140px);
      object-fit: contain;
      border-radius: var(--radius);
      background: #000;
    }
    .gallery-lightbox-figure figcaption {
      text-align: center;
    }
    .gallery-lightbox-figure .tag {
      display: block;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #FCA5A5;
      margin-bottom: 6px;
    }
    .gallery-lightbox-figure .title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: #FFFFFF;
    }
    .gallery-lightbox-close {
      position: absolute;
      top: -44px;
      right: 0;
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      color: var(--text-strong);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }
    .gallery-lightbox-nav {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      color: var(--text-strong);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: border-color .2s var(--ease), color .2s var(--ease);
    }
    .gallery-lightbox-nav:hover {
      border-color: var(--brand-red);
      color: var(--brand-red);
    }
    .gallery-lightbox-nav:disabled {
      opacity: 0.35;
      cursor: not-allowed;
    }

    /* ===========================================================
       TEAM
       =========================================================== */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }
    .person {
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 100%;
      background: linear-gradient(180deg, var(--bg-elevated), var(--bg-2));
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .person.featured {
      border-color: rgba(237, 50, 55, 0.35);
      box-shadow: var(--shadow-md), inset 4px 0 0 var(--brand-red);
    }
    .person .avatar {
      width: 96px; height: 96px;
      border-radius: 0;
      display: block;
      margin-bottom: 24px;
      box-shadow: 0 10px 32px rgba(237,50,55,0.35);
      position: relative;
      overflow: hidden;
      background: var(--bg-card);
    }
    .person .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .person.featured .avatar { width: 96px; height: 96px; }
    .person .role {
      font-family: var(--font-display);
      font-size: 12px; letter-spacing: 0.2em;
      color: var(--brand-red-2); text-transform: uppercase;
      display: block; margin-top: 8px; margin-bottom: 18px;
    }
    .person h3 {
      font-size: 1.6rem; line-height: 1.2; margin-bottom: 16px;
    }
    .person .summary {
      color: var(--text);
      margin-bottom: 24px;
      flex: 1 1 auto;
    }
    .person .detail-grid,
    .person .details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: auto;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }
    .person .detail-grid h5,
    .person .details h5 {
      font-family: var(--font-display);
      font-size: 11px; letter-spacing: 0.18em;
      color: var(--text-muted); text-transform: uppercase;
      margin: 0 0 12px;
    }
    .person .detail-grid ul,
    .person .details ul {
      list-style: none; padding: 0; margin: 0;
    }
    .person .detail-grid li,
    .person .details li {
      font-size: 13px; padding: 4px 0;
      color: var(--text); position: relative; padding-left: 16px;
    }
    .person .detail-grid li::before,
    .person .details li::before {
      content: ""; position: absolute; left: 0; top: 12px;
      width: 6px; height: 1px; background: var(--brand-red);
    }

    /* ===========================================================
       REFERENCES
       =========================================================== */
    .ref-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .ref-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 36px 30px;
      display: flex; flex-direction: column; gap: 18px;
      transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
      box-shadow: var(--shadow-md);
    }
    .ref-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
    .ref-card .ribbon {
      width: 40px; height: 4px;
      background: linear-gradient(90deg, var(--brand-red), transparent);
    }
    .ref-card h3 {
      font-size: 1.4rem; margin-bottom: 6px;
    }
    .ref-card address {
      font-style: normal; font-size: 14px;
      color: var(--text-muted); line-height: 1.55;
      white-space: pre-line;
    }
    .ref-card .line {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--text);
    }
    .ref-card .line svg { width: 16px; height: 16px; color: var(--brand-red-2); flex-shrink: 0; }

    /* ===========================================================
       CONTACT
       =========================================================== */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
    }
    .contact-info { display: flex; flex-direction: column; gap: 28px; }
    .info-block .label {
      font-family: var(--font-display);
      font-size: 11px; letter-spacing: 0.22em;
      color: var(--brand-red-2); text-transform: uppercase;
      display: block; margin-bottom: 10px;
    }
    .info-block p,
    .info-block a { color: var(--text); font-size: 1.05rem; line-height: 1.6; }
    .info-block a:hover { color: var(--brand-red-2); }
    .info-block .phones a { display: block; padding: 4px 0; }

    .contact-form {
      background: linear-gradient(180deg, var(--bg-elevated), var(--bg-2));
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 44px;
      box-shadow: var(--shadow-md);
    }
    .contact-form h3 {
      font-size: 1.7rem; margin-bottom: 8px;
    }
    .contact-form .form-sub {
      color: var(--text-muted); font-size: 14px; margin-bottom: 28px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
    .form-field label {
      font-family: var(--font-display);
      font-size: 11px; letter-spacing: 0.18em;
      color: var(--text-muted); text-transform: uppercase;
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      background: var(--bg);
      border: 1px solid var(--line-strong);
      color: var(--text-strong);
      font-family: var(--font-body);
      font-size: 14px;
      padding: 14px 16px;
      border-radius: var(--radius-sm);
      transition: border-color .2s var(--ease), background-color .2s var(--ease);
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      outline: none;
      border-color: var(--brand-red);
      background: rgba(237,50,55,0.03);
    }
    .form-field textarea { min-height: 130px; resize: vertical; }

    /* ===========================================================
       FOOTER
       =========================================================== */
    footer {
      background: var(--steel-100);
      border-top: 1px solid var(--line);
      padding: 80px 0 32px;
      position: relative;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px;
      margin-bottom: 60px;
    }
    .footer-grid h5 {
      font-family: var(--font-display);
      font-size: 11px; letter-spacing: 0.22em;
      color: var(--brand-red-2); text-transform: uppercase;
      margin: 0 0 18px;
    }
    .footer-grid p,
    .footer-grid li {
      font-size: 14px; color: var(--text-muted); line-height: 1.7;
    }
    .footer-grid ul { list-style: none; padding: 0; margin: 0; }
    .footer-grid ul li a {
      color: var(--text-muted);
      transition: color .2s var(--ease);
    }
    .footer-grid ul li a:hover { color: var(--brand-red-2); }
    .footer-brand .brand-logo { height: 64px; }
    .footer-brand .brand-text small { color: var(--text-muted); }
    .footer-brand p { margin-top: 20px; max-width: 38ch; }

    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid var(--line);
      display: flex; flex-direction: column; gap: 12px;
      font-size: 13px; color: var(--text-muted);
    }
    .footer-bottom .row {
      display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    }

    /* ===========================================================
       GOALS & OBJECTIVES
       =========================================================== */
    .goals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }
    .goal {
      background: linear-gradient(180deg, var(--bg-card), var(--bg-2));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 22px;
      display: flex; align-items: center; gap: 18px;
      transition: border-color .25s var(--ease), transform .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
      box-shadow: var(--shadow-md);
    }
    .goal:hover {
      border-color: var(--brand-red-2);
      transform: translateY(-4px);
      background: linear-gradient(180deg, var(--bg-elevated), var(--bg-card));
      box-shadow: var(--shadow-lg);
    }
    .goal .ord {
      font-family: var(--font-display);
      font-size: 26px; font-weight: 600;
      color: var(--brand-indigo-2); line-height: 1;
      min-width: 38px;
    }
    .goal .label {
      font-family: var(--font-display);
      font-size: 14px; font-weight: 500;
      color: var(--text-strong);
      letter-spacing: 0.02em; line-height: 1.35;
    }

    /* ===========================================================
       GROWTH STRATEGY · JOINT VENTURES · MARKET
       =========================================================== */
    .growth-grid {
      display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
      align-items: stretch;
    }
    .jv-card {
      background: linear-gradient(155deg, var(--bg-elevated), var(--bg-2));
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 44px;
      position: relative; overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .jv-card .label {
      font-family: var(--font-display);
      font-size: 12px; letter-spacing: 0.22em;
      color: var(--brand-red-2); text-transform: uppercase;
      display: block; margin-bottom: 14px;
    }
    .jv-card h3 { font-size: 1.8rem; line-height: 1.2; margin-bottom: 18px; }
    .jv-card p { color: var(--text); font-size: 1rem; line-height: 1.7; max-width: 56ch; }
    .jv-list {
      display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
      margin-top: 36px; padding-top: 36px;
      border-top: 1px solid var(--line);
    }
    .jv-item .key {
      font-family: var(--font-display);
      font-size: 11px; letter-spacing: 0.2em;
      color: var(--text-muted); text-transform: uppercase;
      display: block; margin-bottom: 6px;
    }
    .jv-item h4 {
      font-family: var(--font-display);
      font-size: 1.2rem; font-weight: 500;
      color: var(--text-strong); margin: 0 0 16px;
    }
    .jv-item ul { list-style: none; padding: 0; margin: 0; }
    .jv-item li {
      padding: 6px 0;
      font-size: 14px; color: var(--text);
      position: relative; padding-left: 20px;
    }
    .jv-item li::before {
      content: ""; position: absolute; left: 0; top: 14px;
      width: 12px; height: 1px; background: var(--brand-red);
    }
    .market-card {
      background:
        radial-gradient(120% 100% at 0% 0%, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(160deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
      border-radius: var(--radius-lg);
      padding: 44px;
      color: #fff;
      position: relative;
      overflow: hidden;
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .market-card::after {
      content: ""; position: absolute; inset: 0;
      background:
        repeating-linear-gradient(135deg, transparent 0 28px, rgba(255,255,255,0.06) 28px 29px);
      pointer-events: none;
    }
    .market-card .label {
      font-family: var(--font-display);
      font-size: 12px; letter-spacing: 0.22em;
      color: rgba(255,255,255,0.82);
      text-transform: uppercase;
      display: block; margin-bottom: 14px;
      position: relative; z-index: 1;
    }
    .market-card h3 {
      color: #fff;
      font-size: 1.7rem; line-height: 1.2;
      margin-bottom: 36px;
      position: relative; z-index: 1;
    }
    .market-stack {
      display: grid; gap: 22px;
      position: relative; z-index: 1;
    }
    .market-stat { display: flex; flex-direction: column; gap: 4px; }
    .market-stat .top {
      display: flex; align-items: baseline; gap: 10px;
    }
    .market-stat .num {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 3.8vw, 3.2rem);
      color: #fff;
      line-height: 1; font-weight: 600;
    }
    .market-stat .num .si {
      font-size: 0.5em; margin-left: 2px;
    }
    .market-stat .unit {
      font-family: var(--font-display);
      font-size: 13px; color: rgba(255,255,255,0.78);
      letter-spacing: 0.14em; text-transform: uppercase;
    }
    .market-stat .name {
      font-family: var(--font-display);
      font-size: 11px; color: rgba(255,255,255,0.78);
      letter-spacing: 0.18em; text-transform: uppercase;
      margin-top: 4px;
    }

    /* ===========================================================
       REVEAL ANIMATIONS
       =========================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .hero-scroll, .ticker-track { animation: none; }
    }

    /* ===========================================================
       RESPONSIVE
       =========================================================== */
    @media (max-width: 1024px) {
      .hero-grid,
      .about-grid,
      .vm-grid,
      .team-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .service-grid,
      .values-grid,
      .sectors-grid,
      .ref-grid { grid-template-columns: 1fr 1fr; }
      .cap-grid { grid-template-columns: 1fr 1fr; }
      .gallery { grid-template-columns: 1fr 1fr; }
      .photo-gallery { grid-template-columns: 1fr 1fr; }
      .section-head { grid-template-columns: 1fr; gap: 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .growth-grid { grid-template-columns: 1fr; }
      .jv-list { grid-template-columns: 1fr 1fr; gap: 24px; }
    }
    @media (max-width: 720px) {
      section { padding: 80px 0; }
      .container { padding: 0 20px; }
      body.nav-menu-open {
        overflow: hidden;
      }
      .nav-inner {
        display: flex;
        justify-content: space-between;
        gap: 16px;
      }
      .nav-topbar__inner {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px 16px;
        padding: 6px 0;
      }
      .nav-topbar__item--phones {
        justify-content: center;
        flex-wrap: wrap;
      }
      .nav-topbar__item--address span:last-child {
        white-space: normal;
      }
      .brand-logo {
        height: 44px;
        max-width: min(160px, 42vw);
      }
      .brand,
      .nav-links,
      .nav-end,
      .nav-toggle {
        grid-column: auto;
        justify-self: auto;
      }
      .brand {
        min-width: 0;
        flex: 1 1 auto;
      }
      .nav-end {
        margin-left: auto;
        gap: 10px;
        flex-shrink: 0;
      }
      .nav-cta-btn--header {
        display: none;
      }
      .nav-links__cta {
        display: block;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid var(--line);
      }
      .nav-links__cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 14px 18px;
        font-family: var(--font-display);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #fff;
        background: var(--brand-red);
        border: 1px solid var(--brand-red-deep);
        box-shadow: 0 8px 24px rgba(237, 50, 55, 0.28);
        transition: background-color .2s var(--ease);
      }
      .nav-links__cta-btn:hover {
        color: #fff;
        background: var(--brand-red-deep);
      }
      .nav-overlay:not([hidden]) {
        display: block;
      }
      .nav-links {
        position: fixed;
        top: var(--site-header-h, 112px);
        left: 0;
        right: 0;
        z-index: 51;
        flex-direction: column;
        gap: 0;
        margin: 0;
        max-height: calc(100dvh - var(--site-header-h, 112px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--nav-mobile-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 8px 20px 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition:
          opacity .28s var(--ease),
          transform .28s var(--ease),
          visibility .28s var(--ease);
      }
      .nav.is-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }
      .nav-links li {
        list-style: none;
      }
      .nav-links a {
        display: block;
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.02em;
      }
      .nav-links li:last-child a {
        border-bottom: none;
      }
      .nav-links a::after {
        display: none;
      }
      .nav-links a.is-active {
        color: var(--brand-red);
      }
      .nav-toggle {
        display: inline-flex;
      }
      .hero { padding-top: calc(var(--site-header-h, 112px) + 48px); min-height: auto; }
      .service-grid,
      .values-grid,
      .sectors-grid,
      .ref-grid,
      .footer-grid,
      .form-row { grid-template-columns: 1fr; }
      .cap-grid { grid-template-columns: 1fr; }
      .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
      .photo-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
     .gallery-item.tall,
     .gallery-item.wide { grid-row: auto; grid-column: auto; }
     .photo-card.tall,
     .photo-card.wide { grid-row: auto; grid-column: auto; }
      .gallery-lightbox-dialog {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
      }
      .gallery-lightbox-nav.prev,
      .gallery-lightbox-nav.next {
        position: absolute;
        bottom: 12px;
        z-index: 2;
      }
      .gallery-lightbox-nav.prev { left: 0; }
      .gallery-lightbox-nav.next { right: 0; }
      .jv-list { grid-template-columns: 1fr; gap: 18px; }
      .person { padding: 32px; }
      .person .detail-grid,
      .person .details { grid-template-columns: 1fr; }
      .contact-form { padding: 28px; }
    }

    /* Inner pages */
    .page-hero {
      position: relative;
      padding: calc(var(--site-header-h, 112px) + 76px) 0 72px;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
      border-bottom: 1px solid var(--line);
      isolation: isolate;
      overflow: hidden;
    }
    .page-hero--has-image {
      background: transparent;
      border-bottom-color: transparent;
    }
    .page-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: var(--page-banner-image) center/cover no-repeat;
    }
    .page-hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.55) 52%, rgba(248, 250, 252, 0.65) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, transparent 42%);
    }
    .page-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }
    body.page-has-banner .nav {
      background: var(--nav-scrolled-bg);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom-color: var(--line);
      padding: 12px 0;
      box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin: 12px 0 0;
      color: var(--text-strong);
    }
    .page-hero .lead {
      margin-top: 18px;
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 58ch;
    }
    body.page-inner section:first-of-type {
      padding-top: 72px;
    }

    /* Home teasers */
    .home-teasers {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .home-teaser-card {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 28px 24px;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
      box-shadow: var(--shadow-md);
    }
    .home-teaser-card:hover {
      border-color: var(--brand-red);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
    .home-teaser-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-strong);
      margin: 0;
    }
    .home-teaser-card p {
      flex: 1;
      margin: 0;
      font-size: 0.92rem;
      line-height: 1.6;
      color: var(--text-muted);
    }
    .home-teaser-card .link-arrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand-red);
    }
    @media (max-width: 1024px) {
      .home-teasers { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .home-teasers { grid-template-columns: 1fr; }
      .page-hero { padding: calc(var(--site-header-h, 112px) + 48px) 0 48px; }
    }

    /* Floating WhatsApp button */
    .wa-float {
      position: fixed;
      right: max(20px, env(safe-area-inset-right, 0px));
      bottom: max(20px, env(safe-area-inset-bottom, 0px));
      z-index: 90;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 18px 14px 14px;
      background: #25D366;
      color: #fff;
      border-radius: 999px;
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(15, 23, 42, 0.12);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }
    .wa-float:hover {
      color: #fff;
      background: #1EBE5A;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(15, 23, 42, 0.14);
    }
    .wa-float:focus-visible {
      outline: 3px solid rgba(37, 211, 102, 0.45);
      outline-offset: 3px;
    }
    .wa-float__icon {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }
    .wa-float__label {
      line-height: 1;
      padding-right: 2px;
    }
    @media (max-width: 480px) {
      .wa-float {
        padding: 0;
        width: 56px;
        height: 56px;
        justify-content: center;
        border-radius: 50%;
      }
      .wa-float__label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }
      .wa-float__icon {
        width: 30px;
        height: 30px;
      }
    }
