    /* =============================================
       CSS CUSTOM PROPERTIES
       ============================================= */
    :root {
      --primary: #1B3A5C;
      --primary-dark: #0F2440;
      --primary-darker: #091A30;
      --secondary: #3D5A80;
      --accent: #40C9B0;
      --accent-dark: #2FA895;
      --highlight: #F0F8FF;
      --white: #FFFFFF;
      --text-dark: #1B3A5C;
      --text-light: #FFFFFF;
      --text-muted: #8BA4BE;
      --font-heading: 'Zilla Slab', Georgia, serif;
      --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
      --font-mono: 'DM Mono', 'Courier New', monospace;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-sm: 0 2px 8px rgba(15, 36, 64, 0.08);
      --shadow-md: 0 8px 30px rgba(15, 36, 64, 0.12);
      --shadow-lg: 0 20px 60px rgba(15, 36, 64, 0.18);
      --shadow-xl: 0 30px 80px rgba(15, 36, 64, 0.25);
      --radius: 4px;
    }

    /* =============================================
       RESET & BASE
       ============================================= */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* =============================================
       TYPOGRAPHY
       ============================================= */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
    }

    h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
    h2 { font-size: clamp(2rem, 4vw, 3rem); }
    h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

    .section-label {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
      display: block;
    }

    .section-title {
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 1.1rem;
      line-height: 1.8;
      max-width: 600px;
    }

    /* =============================================
       BUTTONS
       ============================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      border: 2px solid transparent;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--primary-dark);
      border-color: var(--accent);
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(64, 201, 176, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--white);
      transform: translateY(-2px);
    }

    .btn-dark {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    .btn-dark:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* =============================================
       HEADER
       ============================================= */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.4s ease;
    }

    .header.scrolled {
      background: rgba(15, 36, 64, 0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 12px 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
    }

    .logo-text {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 1px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      line-height: 1.05;
    }

    .logo-brand span {
      font-weight: 400;
      opacity: 0.7;
      font-size: 0.85em;
    }

    .logo-tagline {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color var(--transition);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width var(--transition);
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 10px 24px !important;
      font-size: 0.85rem !important;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      min-width: 44px;
      min-height: 44px;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Nav Overlay */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(9, 26, 48, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }

    .mobile-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav a {
      color: var(--white);
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 600;
      transition: color var(--transition);
    }

    .mobile-nav a:hover {
      color: var(--accent);
    }

    /* =============================================
       HERO
       ============================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #0A1628;
    }

    /* Background video */
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.85) saturate(1.05);
    }

    /* Overlay: lighter so the video shows through, with a soft center scrim
       and top/bottom darkening to keep the headline + nav readable. */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse 85% 60% at 50% 44%, rgba(6, 16, 32, 0.42) 0%, rgba(6, 16, 32, 0) 72%),
        linear-gradient(
          180deg,
          rgba(9, 26, 48, 0.62) 0%,
          rgba(10, 24, 46, 0.38) 40%,
          rgba(10, 24, 46, 0.40) 60%,
          rgba(7, 17, 32, 0.72) 100%
        );
    }

    /* Hero video pause/play toggle */
    .hero-video-toggle {
      position: absolute;
      bottom: 22px;
      right: 22px;
      z-index: 11;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(8, 18, 34, 0.45);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .hero-video-toggle:hover {
      background: rgba(8, 18, 34, 0.8);
      border-color: var(--accent);
    }

    .hero-video-toggle svg {
      width: 16px;
      height: 16px;
      display: block;
    }

    .hero-video-toggle .icon-play { display: none; }
    .hero-video-toggle.is-paused .icon-play { display: block; }
    .hero-video-toggle.is-paused .icon-pause { display: none; }

    /* Respect reduced-motion: show the poster image, stop all motion */
    @media (prefers-reduced-motion: reduce) {
      .hero {
        background: #0A1628 url('../video/torre-hero-poster.jpg') center/cover no-repeat;
      }
      .hero-video,
      .hero-video-toggle { display: none; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1 !important; transform: none !important; }
    }

    /* (Removed: star-field, mountain layers, and atmospheric haze — superseded by the video hero) */

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      color: var(--white);
      padding: 0 24px;
      margin-top: -8vh;
    }

    .hero-label {
      font-family: var(--font-mono);
      font-size: 0.85rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.3s forwards;
    }

    .hero-title {
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 800;
      line-height: 1.05;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s 0.5s forwards;
    }

    .hero-title em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-subtitle {
      font-family: var(--font-body);
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-weight: 300;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 48px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s 0.7s forwards;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s 0.9s forwards;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Ridge divider below hero */
    .ridge-divider {
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      z-index: 10;
      line-height: 0;
    }

    .ridge-divider svg {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 78px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeUp 0.8s 1.2s forwards;
    }

    .scroll-indicator span {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.62);
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scrollPulse 2s infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 1; transform: scaleY(1); }
      50% { opacity: 0.4; transform: scaleY(0.6); }
    }

    /* =============================================
       SECTION DIVIDERS
       ============================================= */
    .peak-divider {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      line-height: 0;
      z-index: 2;
    }

    .peak-divider svg {
      width: 100%;
      display: block;
    }

    /* =============================================
       SERVICES
       ============================================= */
    .services {
      background: var(--highlight);
      padding: 120px 0 160px;
      position: relative;
      z-index: 7;
    }

    .services-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .services-header .section-subtitle {
      margin: 0 auto;
      color: var(--secondary);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .service-card {
      background: var(--white);
      border-radius: 12px;
      padding: 44px 30px 40px;
      position: relative;
      overflow: hidden;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 1px 4px rgba(15, 36, 64, 0.06), 0 4px 16px rgba(15, 36, 64, 0.04);
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-dark));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(64, 201, 176, 0.03), transparent 60%);
      opacity: 0;
      transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      pointer-events: none;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(15, 36, 64, 0.06), 0 16px 48px rgba(15, 36, 64, 0.1);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover::after {
      opacity: 1;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: linear-gradient(145deg, var(--accent), var(--accent-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                  border-radius 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 4px 16px rgba(64, 201, 176, 0.25);
    }

    .service-card:hover .service-icon {
      transform: translateY(-2px);
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(64, 201, 176, 0.35);
    }

    .service-icon svg {
      width: 26px;
      height: 26px;
      fill: none;
      stroke: var(--white);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .service-card:hover .service-icon svg {
      transform: scale(1.05);
    }

    .service-card h3 {
      color: var(--text-dark);
      margin-bottom: 12px;
      font-size: 1.25rem;
      transition: color 0.4s ease;
    }

    .service-card:hover h3 {
      color: var(--primary-dark);
    }

    .service-card p {
      color: var(--secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* =============================================
       CTA BANNER
       ============================================= */
    .cta-banner {
      position: relative;
      z-index: 6;
      padding: 100px 0 160px;
      background: var(--primary-dark);
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(64, 201, 176, 0.08), transparent 70%);
      pointer-events: none;
    }

    /* Subtle angular decoration */
    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 0 300px 300px;
      border-color: transparent transparent rgba(255, 255, 255, 0.02) transparent;
      pointer-events: none;
    }

    .cta-banner .container {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .cta-banner h2 {
      color: var(--white);
      margin-bottom: 16px;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    }

    .cta-banner p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.1rem;
      max-width: 550px;
      margin: 0 auto 36px;
    }

    /* =============================================
       ABOUT / STATS
       ============================================= */
    .about {
      position: relative;
      z-index: 5;
      padding: 120px 0 160px;
      background: var(--highlight);
      color: var(--primary-dark);
      overflow: visible;
    }

    /* Topographic line pattern */
    .topo-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      pointer-events: none;
      background-image:
        repeating-radial-gradient(
          ellipse at 30% 50%,
          transparent 0,
          transparent 40px,
          rgba(15, 36, 64, 0.5) 40px,
          rgba(15, 36, 64, 0.5) 41px,
          transparent 41px,
          transparent 80px
        ),
        repeating-radial-gradient(
          ellipse at 70% 40%,
          transparent 0,
          transparent 50px,
          rgba(15, 36, 64, 0.5) 50px,
          rgba(15, 36, 64, 0.5) 51px,
          transparent 51px,
          transparent 100px
        ),
        repeating-radial-gradient(
          ellipse at 50% 80%,
          transparent 0,
          transparent 30px,
          rgba(15, 36, 64, 0.5) 30px,
          rgba(15, 36, 64, 0.5) 31px,
          transparent 31px,
          transparent 60px
        );
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .about-content .section-subtitle {
      color: var(--secondary);
      margin-bottom: 32px;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 32px;
    }

    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .about-feature-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }

    .about-feature-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .about-feature p {
      color: var(--secondary);
      font-size: 0.95rem;
    }

    .about-feature strong {
      color: var(--primary-dark);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .stat-card {
      background: var(--white);
      border: 1px solid rgba(27, 58, 92, 0.1);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(15, 36, 64, 0.06);
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform var(--transition);
    }

    .stat-card:hover {
      background: var(--white);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(15, 36, 64, 0.1);
    }

    .stat-card:hover::before {
      transform: scaleX(1);
    }

    .stat-number {
      font-family: var(--font-mono);
      font-size: 2.8rem;
      font-weight: 500;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--secondary);
      letter-spacing: 0.5px;
    }

    /* =============================================
       GALLERY
       ============================================= */
    .gallery {
      background: var(--primary-dark);
      padding: 120px 0 160px;
      position: relative;
      z-index: 4;
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .gallery-header h2 {
      color: var(--white);
    }

    .gallery-header .section-subtitle {
      color: var(--text-muted);
      margin: 0 auto;
    }

    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 12px 24px;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition);
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--primary-dark);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                  opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .gallery-item:hover {
      transform: scale(1.02);
    }

    /* All gallery items share the uniform 4/3 ratio set on .gallery-item */

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(64, 201, 176, 0.0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
      background: rgba(64, 201, 176, 0.2);
    }

    .gallery-overlay-content {
      opacity: 0;
      transform: translateY(10px);
      transition: all var(--transition);
      text-align: center;
      color: var(--white);
    }

    .gallery-item:hover .gallery-overlay-content {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-overlay-content p {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* =============================================
       BLOG
       ============================================= */
    .blog {
      background: var(--highlight);
      padding: 120px 0 160px;
      position: relative;
      z-index: 3;
    }

    .blog-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .blog-header .section-subtitle {
      color: var(--secondary);
      margin: 0 auto;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-bottom: 56px;
    }

    .blog-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
    }

    .blog-card::before {
      display: none;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(15, 36, 64, 0.06), 0 16px 48px rgba(15, 36, 64, 0.1);
    }

    .blog-card:hover::before {
      height: 6px;
    }

    .blog-card-image {
      display: block;
      width: 100%;
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .blog-card:hover .blog-card-image img {
      transform: scale(1.05);
    }

    .blog-card-body {
      padding: 28px 28px 32px;
    }

    .blog-card-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .blog-card-tag {
      display: inline-block;
      padding: 4px 12px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: rgba(64, 201, 176, 0.12);
      color: var(--accent-dark);
      border-radius: var(--radius);
      font-weight: 500;
    }

    .blog-card-date {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-muted);
      letter-spacing: 0.5px;
    }

    .blog-card-body h3 {
      font-size: 1.15rem;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.4;
      transition: color var(--transition);
    }

    .blog-card:hover .blog-card-body h3 {
      color: var(--accent-dark);
    }

    .blog-card-body p {
      font-size: 0.92rem;
      color: var(--secondary);
      line-height: 1.7;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .blog-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--accent-dark);
      transition: gap var(--transition);
    }

    .blog-card:hover .blog-card-link {
      gap: 10px;
    }

    .blog-card-link svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .blog-cta {
      text-align: center;
    }

    /* =============================================
       CONTACT
       ============================================= */
    .contact {
      background: var(--primary-darker);
      padding: 120px 0 160px;
      position: relative;
      z-index: 2;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .contact-header h2 {
      color: var(--white);
    }

    .contact-header .section-subtitle {
      color: var(--text-muted);
      margin: 0 auto;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .contact-form-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 48px;
      box-shadow: var(--shadow-xl);
      position: relative;
    }

    .contact-form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent-dark));
      border-radius: var(--radius) var(--radius) 0 0;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--text-dark);
      margin-bottom: 8px;
      letter-spacing: 0.3px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      border: 2px solid #E2EBF3;
      border-radius: var(--radius);
      background: var(--highlight);
      color: var(--text-dark);
      transition: all var(--transition);
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(64, 201, 176, 0.1);
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #A0B4C8;
    }

    .contact-sidebar {
      display: flex;
      flex-direction: column;
      gap: 28px;
      padding-top: 12px;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-info-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(64, 201, 176, 0.1);
      border: 1px solid rgba(64, 201, 176, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-info-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-info-text h4 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--white);
      margin-bottom: 4px;
    }

    .contact-info-text p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .contact-info-text a {
      color: var(--accent);
      display: inline-block;
      padding: 4px 0;
      transition: color var(--transition);
    }

    .contact-info-text a:hover {
      color: var(--white);
    }


    /* =============================================
       FOOTER
       ============================================= */
    .footer {
      background: #060E1A;
      padding: 72px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-top: 16px;
      max-width: 280px;
      line-height: 1.7;
    }

    .footer h4 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 20px;
    }

    .footer-links a {
      display: block;
      color: var(--text-muted);
      font-size: 0.9rem;
      padding: 8px 0;
      transition: color var(--transition);
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .footer-contact-item span {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .footer-legal-id {
      margin-top: 18px;
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.55);
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }

    .footer-bottom-links a {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
      display: inline-block;
      padding: 6px 0;
      transition: color var(--transition);
    }

    .footer-bottom-links a:hover {
      color: var(--accent);
    }

    /* =============================================
       SCROLL REVEAL ANIMATIONS
       ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* Counter animation */
    .stat-number[data-target] {
      transition: none;
    }

    /* =============================================
       RESPONSIVE
       ============================================= */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-nav {
        display: flex;
      }

      .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.8rem);
      }

      .services {
        padding: 80px 0;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .gallery-item:nth-child(n) {
        aspect-ratio: 4/3;
      }

      .contact-wrapper {
        grid-template-columns: 1fr;
      }

      .contact-form-card {
        padding: 32px 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .cta-banner {
        padding: 80px 0 80px;
      }

      .about {
        padding: 80px 0;
      }

      .gallery {
        padding: 80px 0;
      }

      .blog {
        padding: 80px 0;
      }

      .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .contact {
        padding: 80px 0;
      }
    }

    @media (max-width: 480px) {
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-filters {
        gap: 8px;
      }

      .filter-btn {
        padding: 11px 18px;
        font-size: 0.8rem;
      }
    }
    /* ─── Gallery lightbox ─────────────────────── */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(6, 14, 26, 0.92);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      padding: 24px;
    }

    .lightbox.is-open { display: flex; }

    .lightbox__figure {
      margin: 0;
      max-width: min(1100px, 92vw);
      max-height: 88vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .lightbox__img {
      max-width: 100%;
      max-height: 80vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: var(--radius);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .lightbox__caption {
      color: rgba(255, 255, 255, 0.85);
      font-family: var(--font-body);
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      text-align: center;
    }

    .lightbox__close,
    .lightbox__nav {
      position: absolute;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .lightbox__close:hover,
    .lightbox__nav:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--accent);
    }

    .lightbox__close {
      top: 20px;
      right: 20px;
      width: 48px;
      height: 48px;
      font-size: 28px;
      line-height: 1;
    }

    .lightbox__nav {
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      font-size: 30px;
      line-height: 1;
    }

    .lightbox__prev { left: 20px; }
    .lightbox__next { right: 20px; }
    .lightbox__counter {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.6);
      font-family: var(--font-mono);
      font-size: 0.8rem;
      letter-spacing: 1px;
    }

    @media (max-width: 600px) {
      .lightbox__nav { width: 44px; height: 44px; font-size: 26px; }
      .lightbox__prev { left: 8px; }
      .lightbox__next { right: 8px; }
      .lightbox__close { width: 44px; height: 44px; top: 12px; right: 12px; font-size: 24px; }
    }

    /* =============================================
       INNER PAGES (blog, single post, legal pages, 404)
       ============================================= */
    .header.is-inner {
      background: rgba(15, 36, 64, 0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
      padding: 12px 0;
    }
    .inner-hero {
      background: linear-gradient(160deg, #0F2440, #091A30);
      color: #fff;
      padding: 150px 0 60px;
      text-align: center;
    }
    .inner-hero .section-label { color: var(--accent); }
    .inner-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-top: 10px; }
    .inner-hero .inner-meta { margin-top: 14px; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
    .site-main { background: var(--highlight); min-height: 60vh; }
    .inner-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
    .entry-content { padding: 56px 0 90px; color: #2E4459; font-size: 1.05rem; line-height: 1.85; }
    .entry-content h2 { font-family: var(--font-heading); color: var(--primary-dark); margin: 34px 0 12px; }
    .entry-content h3 { font-family: var(--font-heading); color: var(--primary-dark); margin: 26px 0 10px; }
    .entry-content p { margin-bottom: 18px; }
    .entry-content ul, .entry-content ol { margin: 0 0 18px 22px; }
    .entry-content li { margin-bottom: 8px; }
    .entry-content img { border-radius: var(--radius); margin: 16px 0; max-width: 100%; height: auto; }
    .entry-content a { color: var(--accent-dark); text-decoration: underline; }
    .post-feimg { width: 100%; max-height: 440px; object-fit: cover; border-radius: 8px; margin: 0 0 28px; }
    .back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; color: var(--accent-dark); font-weight: 600; }
    .archive-section { padding: 80px 0 100px; }
    .archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .pagination { margin-top: 50px; text-align: center; }
    .pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border-radius: var(--radius); background: #fff; color: var(--primary-dark); box-shadow: var(--shadow-sm); }
    .pagination .current { background: var(--accent); color: #fff; }
    .notfound { text-align: center; padding: 170px 24px 130px; }
    .notfound h1 { font-size: 5rem; color: var(--primary-dark); line-height: 1; margin-bottom: 10px; }
    @media (max-width: 900px) { .archive-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .archive-grid { grid-template-columns: 1fr; } }

    /* =============================================
       WP admin bar offset + overscroll background
       ============================================= */
    /* Dark root background so the elastic overscroll at the top/bottom
       shows the hero's navy instead of white. */
    html { background-color: #0A1628; }

    /* Push the fixed site header below the WordPress admin bar (logged-in users only). */
    .admin-bar .header { top: 32px; }
    @media screen and (max-width: 782px) {
      .admin-bar .header { top: 46px; }
    }

    /* =============================================
       Contact form — GDPR consent checkbox
       ============================================= */
    .form-consent { margin-bottom: 22px; }
    .consent-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      line-height: 1.5;
      color: #5B7894;
      cursor: pointer;
    }
    .consent-label input[type="checkbox"] {
      margin-top: 3px;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      accent-color: var(--accent);
      cursor: pointer;
    }
    .consent-label a { color: var(--accent-dark); text-decoration: underline; }
