  :root {
    --rust: #D4500A;
    --rust-bright: #FF6B1A;
    --steel: #1C2631;
    --steel-mid: #263545;
    --steel-light: #354A5E;
    --silver: #8FA3B3;
    --silver-light: #C5D5DF;
    --white: #F0F4F7;
    --black: #0D1318;
    --yellow: #F5A623;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--steel); }
  ::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 3px; }

  /* ─── TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' x='0' y='0' fill='rgba(255,255,255,0.015)'/%3E%3Crect width='1' height='1' x='2' y='2' fill='rgba(255,255,255,0.015)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13,19,24,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--rust);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  }

  .nav-logo-icon svg { width: 22px; height: 22px; fill: white; }

  .nav-logo-text {
    line-height: 1.1;
  }

  .nav-logo-text .brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .nav-logo-text .sub {
    font-size: 10px;
    color: var(--rust);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 0;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver-light);
    text-decoration: none;
    padding: 8px 18px;
    position: relative;
    transition: color 0.25s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--rust);
    transition: left 0.25s, right 0.25s;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { left: 18px; right: 18px; }

  .nav-links a.active:not(.nav-cta) { color: var(--white); }
  .nav-links a.active:not(.nav-cta)::after { left: 18px; right: 18px; background: var(--rust-bright); }

  .nav-cta {
    background: var(--rust);
    color: white !important;
    padding: 9px 22px !important;
    font-size: 12px !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.25s !important;
  }

  .nav-cta:hover { background: var(--rust-bright) !important; color: white !important; }
  .nav-cta::after { display: none !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

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

  /* ─── PAGES ─── */
  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
    padding-top: 70px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,80,10,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(28,38,49,0.9) 0%, transparent 60%),
      linear-gradient(135deg, #0D1318 0%, #1C2631 50%, #0D1318 100%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(212,80,10,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,80,10,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, black, transparent);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 2px;
    background: var(--rust);
    display: inline-block;
  }

  .hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(50px, 7vw, 88px);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

  .hero-title span { color: var(--rust); display: block; }

  .hero-desc {
    font-size: 16px;
    color: var(--silver);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--rust);
    color: white;
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: background 0.25s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--rust-bright); transform: translateY(-2px); }

  .btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--steel-light);
    padding: 14px 34px;
    cursor: pointer;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: border-color 0.25s, color 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--rust); color: var(--rust); }

  /* Hero right: stats panel */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
  }

  .stat-card {
    background: var(--steel-mid);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
  }

  .stat-card:hover { border-color: var(--rust); transform: translateY(-4px); }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(212,80,10,0.15), transparent);
  }

  .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--rust);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 12px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
  }

  .stat-icon {
    position: absolute;
    bottom: 16px; right: 16px;
    opacity: 0.1;
    font-size: 40px;
  }

  /* ─── SECTIONS GENERAL ─── */
  section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-full {
    padding: 100px 0;
    max-width: 100%;
    background: var(--steel);
  }

  .section-full > .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    width: 30px; height: 2px;
    background: var(--rust);
  }

  .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .section-title em {
    color: var(--rust);
    font-style: normal;
  }

  .section-desc {
    font-size: 16px;
    color: var(--silver);
    line-height: 1.8;
    max-width: 620px;
    font-weight: 300;
  }

  /* ─── WHY US (Home) ─── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 60px;
  }

  .why-card {
    background: var(--steel-mid);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
  }

  .why-card:hover { transform: translateY(-6px); border-bottom-color: var(--rust); }

  .why-icon {
    width: 56px; height: 56px;
    background: rgba(212,80,10,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  }

  .why-icon svg { width: 28px; height: 28px; stroke: var(--rust); fill: none; stroke-width: 1.8; }

  .why-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .why-card p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.75;
    font-weight: 300;
  }

  /* ─── PRODUCT TICKER ─── */
  .ticker-wrap {
    background: var(--rust);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
  }

  .ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
  }

  .ticker-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .ticker-item::after {
    content: '◆';
    font-size: 8px;
  }

  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ─── PRODUCTS PAGE ─── */
  .products-hero {
    background: linear-gradient(135deg, var(--steel) 0%, var(--black) 100%);
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .products-hero::before {
    content: 'PRODUCTS';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -5px;
  }

  .products-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .filter-bar {
    display: flex;
    gap: 3px;
    margin-top: 50px;
    flex-wrap: wrap;
  }

  .filter-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--steel-mid);
    color: var(--silver);
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    transition: all 0.25s;
  }

  .filter-btn.active, .filter-btn:hover {
    background: var(--rust);
    color: white;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-card {
    background: var(--steel-mid);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
  }

  .product-card:hover { transform: translateY(-6px); }

  .product-card:hover .product-img-overlay { opacity: 1; }

  .product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
  }

  .product-card:hover .product-img img { transform: scale(1.06); }

  .product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212,80,10,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .product-card:hover .product-img-overlay { opacity: 1; }

  .product-img-overlay span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    border: 2px solid white;
    padding: 10px 22px;
  }

  /* finish badge */
  .finish-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 0;
  }

  .finish-badge.glossy {
    background: rgba(212,80,10,0.15);
    color: var(--rust);
    border: 1px solid rgba(212,80,10,0.4);
  }

  .finish-badge.matte {
    background: rgba(143,163,179,0.15);
    color: var(--silver-light);
    border: 1px solid rgba(143,163,179,0.35);
  }

  /* dual action buttons */
  .product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 16px;
  }

  .btn-inquire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--rust);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 10px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
  }

  .btn-inquire:hover { background: var(--rust-bright); transform: translateY(-2px); }

  .btn-inquire svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; flex-shrink: 0; }

  .btn-wa-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #25D366;
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 10px;
    transition: background 0.25s, transform 0.2s;
  }

  .btn-wa-small:hover { background: #1ebe5d; transform: translateY(-2px); }
  .btn-wa-small svg { width: 14px; height: 14px; fill: white; flex-shrink: 0; }

  .product-body {
    padding: 24px;
  }

  .product-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .product-name {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .product-desc {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 18px;
  }

  .product-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .spec-tag {
    font-size: 11px;
    background: var(--steel-light);
    color: var(--silver-light);
    padding: 4px 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .product-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: #25D366;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 18px;
    margin-top: 18px;
    transition: background 0.25s, transform 0.2s;
    display: flex;
  }

  .product-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

  .product-wa-btn svg { width: 17px; height: 17px; fill: white; flex-shrink: 0; }

  /* ─── SERVICES PAGE ─── */
  .services-hero {
    background: linear-gradient(to bottom right, var(--steel) 0%, var(--black) 100%);
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .services-hero::before {
    content: 'SERVICES';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    letter-spacing: -4px;
    white-space: nowrap;
  }

  .services-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .service-item {
    background: var(--steel-mid);
    padding: 44px 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: transform 0.3s;
    border-left: 3px solid transparent;
  }

  .service-item:hover { transform: translateX(6px); border-left-color: var(--rust); }

  .service-num {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(212,80,10,0.25);
    line-height: 1;
    min-width: 60px;
    transition: color 0.3s;
  }

  .service-item:hover .service-num { color: rgba(212,80,10,0.6); }

  .service-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
  }

  .service-text p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.75;
    font-weight: 300;
  }

  .service-features {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .service-features li {
    font-size: 13px;
    color: var(--silver-light);
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
  }

  .service-features li::before {
    content: '';
    width: 16px; height: 2px;
    background: var(--rust);
    flex-shrink: 0;
  }

  /* ─── ABOUT PAGE ─── */
  .about-hero {
    background: linear-gradient(135deg, #0D1318, var(--steel));
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .about-hero::before {
    content: 'ABOUT';
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 220px;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    pointer-events: none;
    letter-spacing: -5px;
    white-space: nowrap;
  }

  .about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .about-story p {
    font-size: 16px;
    color: var(--silver);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .value-item {
    background: var(--steel-mid);
    padding: 28px 24px;
    border-top: 3px solid var(--rust);
  }

  .value-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .value-item p {
    font-size: 13px !important;
    color: var(--silver) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  .team-section {
    background: var(--steel);
    padding: 80px 0;
  }

  .team-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 50px;
  }

  .team-card {
    background: var(--steel-mid);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s;
  }

  .team-card:hover { transform: translateY(-4px); }

  .team-avatar {
    width: 80px; height: 80px;
    background: var(--rust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
  }

  .team-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
  }

  .team-card .role {
    font-size: 12px;
    color: var(--rust);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .team-card p {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ─── CONTACT PAGE ─── */
  .contact-hero {
    background: linear-gradient(135deg, var(--black), var(--steel));
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .contact-hero::before {
    content: 'CONTACT';
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    letter-spacing: -4px;
    white-space: nowrap;
  }

  .contact-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .contact-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .contact-info-card {
    background: var(--steel-mid);
    padding: 40px 36px;
    height: fit-content;
  }

  .contact-info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--rust);
  }

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

  .contact-info-icon {
    width: 44px; height: 44px;
    background: rgba(212,80,10,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .contact-info-icon svg {
    width: 20px; height: 20px;
    stroke: var(--rust);
    fill: none;
    stroke-width: 1.8;
  }

  .contact-info-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 4px;
  }

  .contact-info-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
  }

  .contact-info-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s;
  }

  .contact-info-value a:hover { color: var(--rust); }

  .contact-hours {
    background: var(--steel);
    padding: 20px;
    margin-top: 12px;
  }

  .contact-hours h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 12px;
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--silver);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .hours-row:last-child { border-bottom: none; }
  .hours-row span:last-child { color: var(--white); }

  /* Contact Form */
  .contact-form {
    background: var(--steel-mid);
    padding: 48px 44px;
  }

  .contact-form h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }

  .contact-form .form-desc {
    font-size: 14px;
    color: var(--silver);
    margin-bottom: 36px;
    line-height: 1.6;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .form-group label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--steel);
    border: 1px solid var(--steel-light);
    border-left: 3px solid var(--steel-light);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--rust);
    border-left-color: var(--rust);
  }

  .form-group select option { background: var(--steel-mid); }

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

  .form-submit {
    width: 100%;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--rust);
    color: white;
    border: none;
    padding: 18px;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: 8px;
  }

  .form-submit:hover { background: var(--rust-bright); }

  .form-success {
    display: none;
    background: rgba(212,80,10,0.1);
    border: 1px solid var(--rust);
    padding: 20px;
    margin-top: 16px;
    text-align: center;
    color: var(--rust);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
  }

  /* ─── MAP PLACEHOLDER ─── */
  .map-section {
    height: 360px;
    background: var(--steel);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(212,80,10,0.05) 40px, rgba(212,80,10,0.05) 41px),
      repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(212,80,10,0.05) 40px, rgba(212,80,10,0.05) 41px);
  }

  .map-pin {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .map-pin svg {
    width: 56px; height: 56px;
    fill: var(--rust);
    filter: drop-shadow(0 8px 20px rgba(212,80,10,0.5));
    animation: pinBounce 2s ease-in-out infinite;
  }

  .map-pin p {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-top: 12px;
    letter-spacing: 1px;
  }

  .map-pin span {
    font-size: 13px;
    color: var(--silver);
  }

  @keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ─── GALLERY PAGE ─── */
  .gallery-hero {
    background: linear-gradient(to bottom right, var(--black), var(--steel));
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .gallery-hero::before {
    content: 'GALLERY';
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    pointer-events: none;
    letter-spacing: -3px;
    white-space: nowrap;
  }

  .gallery-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery-item {
    background: var(--steel-mid);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4 / 3;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
  }

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

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,19,24,0.7);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-overlay p {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
  }

  /* Gallery Patterns (fill-in for real images) */
  .g-pattern-1 { background: linear-gradient(135deg, #2a1a0a, #4a2a10, #1a0a00); }
  .g-pattern-2 { background: linear-gradient(135deg, #1a2030, #263545, #0d1318); }
  .g-pattern-3 { background: linear-gradient(135deg, #2a1505, #3a2010, #1a0a00); }
  .g-pattern-4 { background: linear-gradient(135deg, #1C2631, #354A5E, #263545); }
  .g-pattern-5 { background: linear-gradient(135deg, #2a1a0a, #1C2631, #0d1318); }
  .g-pattern-6 { background: linear-gradient(135deg, #3a1a05, #263545, #1a0a00); }
  .g-pattern-7 { background: linear-gradient(135deg, #1a2030, #4a2a10, #263545); }

  /* ─── LIGHTBOX ─── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,19,24,0.96);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
  }

  .lightbox.open { display: flex; }

  .lightbox-img {
    max-width: 92vw;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    animation: fadeIn 0.25s forwards;
  }

  .lightbox-caption {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 16px;
    font-weight: 600;
    text-align: center;
  }

  .lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    background: var(--rust);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3001;
    line-height: 1;
  }

  .lightbox-close:hover { background: var(--rust-bright); }

  .gallery-item { cursor: pointer; }

  /* ─── PRODUCT MODAL ─── */
  .modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,19,24,0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .modal-backdrop.open { display: flex; }

  .modal-box {
    background: var(--steel-mid);
    max-width: 760px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: fadeUp 0.3s forwards;
    border-top: 3px solid var(--rust);
  }

  .modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--rust);
    border: none;
    color: white;
    width: 34px; height: 34px;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    line-height: 1;
  }

  .modal-close:hover { background: var(--rust-bright); }

  .modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
  }

  .modal-body {
    padding: 28px 32px 32px;
  }

  .modal-body .finish-badge { margin-bottom: 8px; }

  .modal-body .product-tag { margin-bottom: 6px; }

  .modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .modal-desc {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
  }

  .modal-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }

  .modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  @media (max-width: 500px) {
    .modal-actions { grid-template-columns: 1fr; }
    .modal-img { height: 200px; }
    .modal-body { padding: 20px; }
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black);
    border-top: 1px solid var(--steel-mid);
    padding: 80px 40px 0;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--steel-mid);
  }

  .footer-brand .brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
  }

  .footer-brand .brand-sub {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--rust);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .footer-brand p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 28px;
  }

  .footer-socials {
    display: flex;
    gap: 8px;
  }

  .social-btn {
    width: 38px; height: 38px;
    background: var(--steel-mid);
    display: flex; align-items: center; justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    text-decoration: none;
    color: var(--silver);
  }

  .social-btn:hover { background: var(--rust); color: white; }

  .social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 14px;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-col ul li a::before {
    content: '';
    width: 12px; height: 1px;
    background: var(--steel-light);
    transition: background 0.25s, width 0.25s;
  }

  .footer-col ul li a:hover { color: var(--white); }
  .footer-col ul li a:hover::before { background: var(--rust); width: 18px; }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 0.5px;
  }

  .footer-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rust);
    background: rgba(212,80,10,0.1);
    padding: 6px 14px;
    border: 1px solid rgba(212,80,10,0.3);
  }

  /* ─── CTA BAND ─── */
  .cta-band {
    background: var(--rust);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
  }

  .cta-band::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: repeating-linear-gradient(
      -45deg, transparent, transparent 10px,
      rgba(0,0,0,0.05) 10px, rgba(0,0,0,0.05) 20px
    );
  }

  .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
  }

  .cta-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
  }

  .btn-white {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: white;
    color: var(--rust);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.25s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
  }

  .btn-white:hover { background: var(--black); color: white; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── BLOG ─── */
  .blog-hero {
    background: linear-gradient(to bottom right, var(--steel), var(--black));
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .blog-hero::before {
    content: 'BLOG';
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    pointer-events: none;
    letter-spacing: -3px;
    white-space: nowrap;
  }

  .blog-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .blog-card {
    background: var(--steel-mid);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .blog-card:hover { transform: translateY(-6px); }

  .blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

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

  .blog-card-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--rust);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
  }

  .blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blog-card-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 10px;
  }

  .blog-card-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .blog-card-body p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
    margin-bottom: 16px;
  }

  .blog-read-more {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rust);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s, color 0.25s;
  }

  .blog-read-more:hover { gap: 14px; color: var(--rust-bright); }

  .blog-card.featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--steel-mid);
  }

  .blog-card.featured .blog-card-img { height: 100%; min-height: 320px; }

  .blog-card.featured .blog-card-body { padding: 40px; justify-content: center; }

  .blog-card.featured .blog-card-body h3 {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.2;
  }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--black); border-top: 2px solid var(--rust); padding: 20px; z-index: 999; gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 20px; border-bottom: 1px solid var(--steel-mid); }
    .nav-links a::after { display: none; }
    .hamburger { display: flex; }

    .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
    .hero-stats { display: grid; }
    
    section { padding: 60px 20px; }
    .why-grid, .products-grid { grid-template-columns: 1fr; }
    .services-list { grid-template-columns: 1fr; padding: 40px 20px; }
    .about-hero-inner, .about-story, .contact-body { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr; padding: 30px 20px; gap: 6px; }
    .blog-grid { grid-template-columns: 1fr; padding: 30px 20px; gap: 16px; }
    .blog-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .blog-card.featured .blog-card-img { min-height: 200px; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 1; }
    .cta-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .products-grid { padding: 20px 14px; gap: 10px; }
    .products-hero, .services-hero, .about-hero, .contact-hero, .gallery-hero { padding: 110px 20px 60px; }
    .team-grid, .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 500px) {
    .hero-title { font-size: 44px; }
    .footer-inner { grid-template-columns: 1fr; }
    .team-grid, .values-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
  }

  /* ─── BLOG ARTICLE ─── */
  .article-hero {
    background: linear-gradient(to bottom right, var(--steel), var(--black));
    padding: 140px 40px 60px;
    position: relative;
    overflow: hidden;
  }

  .article-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }

  .article-hero .blog-card-tag {
    position: static;
    display: inline-block;
    margin-bottom: 18px;
  }

  .article-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
  }

  .article-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver);
  }

  .article-cover {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 40px;
  }

  .article-cover img {
    width: 100%;
    display: block;
    border-radius: 4px;
  }

  .article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px 60px;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 300;
    color: var(--silver-light);
  }

  .article-body p { margin-bottom: 22px; }

  .article-body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--white);
    margin: 48px 0 18px;
    line-height: 1.3;
  }

  .article-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(19px, 2.4vw, 23px);
    font-weight: 600;
    color: var(--white);
    margin: 32px 0 14px;
  }

  .article-body ul, .article-body ol {
    margin: 0 0 22px 22px;
  }

  .article-body li { margin-bottom: 10px; }

  .article-body strong { color: var(--white); font-weight: 600; }

  .article-body a { color: var(--rust-bright); text-decoration: underline; }

  /* Callout / pro-tip box */
  .callout-box {
    background: var(--steel-mid);
    border-left: 4px solid var(--rust);
    padding: 22px 26px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
  }

  .callout-box .callout-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rust-bright);
    margin-bottom: 8px;
    display: block;
  }

  .callout-box p:last-child { margin-bottom: 0; }

  /* Comparison table */
  .table-wrap {
    overflow-x: auto;
    margin: 30px 0;
  }

  .article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    background: var(--steel-mid);
  }

  .article-table th, .article-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--steel-light);
  }

  .article-table th {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--steel);
  }

  .article-table tr:last-child td { border-bottom: none; }

  /* Checklist */
  .checklist { list-style: none; margin: 0 0 22px; }

  .checklist li {
    padding-left: 32px;
    position: relative;
  }

  .checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rust-bright);
    font-weight: 700;
  }

  /* FAQ accordion */
  .faq-item {
    border-bottom: 1px solid var(--steel-mid);
    padding: 18px 0;
  }

  .faq-item summary {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .faq-item summary::-webkit-details-marker { display: none; }

  .faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--rust);
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .faq-item[open] summary::after { transform: rotate(45deg); }

  .faq-item p {
    margin: 14px 0 0;
    font-size: 15px;
    font-weight: 300;
    color: var(--silver-light);
    line-height: 1.8;
  }

  .article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    margin: 30px 0 0;
    transition: color 0.25s, gap 0.25s;
  }

  .article-back:hover { color: var(--rust-bright); gap: 14px; }

  @media (max-width: 600px) {
    .article-hero { padding: 110px 20px 40px; }
    .article-cover, .article-body { padding-left: 20px; padding-right: 20px; }
  }
