/* The Crimson Forge — shared stylesheet (extracted from index.html) */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --crimson:      #c0181f;
      --crimson-dark: #8a1015;
      --crimson-glow: rgba(192,24,31,0.28);
      --gold:         #c9a84c;
      --gold-light:   #e8c96a;
      --gold-dark:    #9a7a30;
      --gold-glow:    rgba(201,168,76,0.28);
      --coal:         #000000;
      --iron:         #111009;
      --steel:        #1a1812;
      --ash:          #2a271e;
      --smoke:        #4a4535;
      --silver:       #a09070;
      --light:        #ede5d0;
      --white:        #f7f2e8;
      --font-display: 'Bebas Neue', sans-serif;
      --font-cond:    'Barlow Condensed', sans-serif;
      --font-body:    'Barlow', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--coal);
      color: var(--light);
      font-family: var(--font-body);
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 88px;
      background: rgb(0, 0, 0);
      transition: background 0.4s, border-color 0.4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(0, 0, 0, 0.97);
      border-bottom-color: var(--ash);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      height: 78px;
      text-decoration: none;
    }
    /* ── TO USE YOUR LOGO IMAGE:
       1. Place your logo PNG in the same folder as this HTML file
       2. Replace the <div class="nav-logo-text">...</div> below with:
          <img src="The_Crimson_Forge_final_01b.png" alt="The Crimson Forge" style="height:56px;width:auto;object-fit:contain;">
    ── */
    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 1.55rem;
      letter-spacing: 0.06em;
      line-height: 1;
      color: var(--white);
    }
    .nav-logo-text .g { color: var(--gold); }
    .nav-logo-text .r { color: var(--crimson); }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-cond);
      font-size: 1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--light);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
      padding-bottom: 4px;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--crimson);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--crimson); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-family: var(--font-cond);
      font-size: 0.88rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--crimson);
      border: none;
      padding: 11px 28px;
      cursor: pointer;
      text-decoration: none;
      font-weight: 700;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .nav-cta:hover {
      background: var(--crimson-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px var(--crimson-glow);
    }
    .nav-cta-wrap { display: flex; align-items: center; gap: 22px; }
    .nav-phone {
      font-family: var(--font-cond);
      font-size: 1rem; letter-spacing: 0.08em;
      color: var(--white); text-decoration: none;
      white-space: nowrap; transition: color 0.2s;
    }
    .nav-phone:hover { color: var(--gold); }
    @media (max-width: 900px) { .nav-phone { display: none; } }

    /* ── HERO ── */
    #hero {
      position: relative;
      height: 82vh;
      min-height: 560px;
      max-height: 800px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #0a0806;
    }
    .hero-photo {
      position: absolute; inset: 0;
      background: url("IMG_8526.jpg") center right / cover no-repeat;
      transform-origin: 68% 50%;
      animation: heroZoom 22s ease-out both;
    }
    @keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(90deg, rgba(8,6,5,0.95) 0%, rgba(8,6,5,0.86) 34%, rgba(10,8,6,0.55) 66%, rgba(10,8,6,0.34) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 26%, transparent 66%, rgba(0,0,0,0.66) 100%);
    }
    .hero-overlay::after {
      content: '';
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        -52deg, transparent, transparent 44px,
        rgba(201,168,76,0.02) 44px, rgba(201,168,76,0.02) 45px
      );
    }
    .spark {
      position: absolute; z-index: 1;
      width: 3px; height: 3px; border-radius: 50%;
      background: var(--gold-light);
      box-shadow: 0 0 6px 1px rgba(232,201,106,0.8);
      opacity: 0; pointer-events: none;
    }
    .spark.s1 { right: 26%; bottom: 30%; animation: spark 6s ease-in-out 1s infinite; }
    .spark.s2 { right: 32%; bottom: 24%; animation: spark 7.5s ease-in-out 2.6s infinite; }
    .spark.s3 { right: 21%; bottom: 40%; animation: spark 8s ease-in-out 4.2s infinite; }
    @keyframes spark {
      0%   { opacity: 0; transform: translateY(0) scale(0.8); }
      15%  { opacity: 0.85; }
      60%  { opacity: 0.25; }
      100% { opacity: 0; transform: translateY(-58px) translateX(-14px) scale(0.4); }
    }
    @media (max-width: 768px) { .spark { display: none; } }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 88px;
      max-width: 720px;
      animation: fadeUp 1s ease 0.15s both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-family: var(--font-cond);
      font-size: 0.82rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-top: 48px;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 36px; height: 1px;
      background: linear-gradient(90deg, var(--crimson), transparent);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5.2vw, 4.4rem);
      line-height: 0.98;
      letter-spacing: 0.015em;
      color: var(--white);
      margin-bottom: 22px;
    }
    .hero-title .ag { color: var(--white); }
    .hero-title .ar { color: var(--crimson); }
    .hero-sub {
      font-size: 1.14rem;
      font-weight: 300;
      color: var(--light);
      opacity: 0.9;
      max-width: 540px;
      margin-bottom: 34px;
      line-height: 1.6;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.4s both; }
    .hero-proof {
      display: flex; flex-wrap: wrap; gap: 12px 26px;
      margin-top: 34px;
      animation: fadeUp 0.8s ease 0.55s both;
    }
    .hero-proof span {
      font-family: var(--font-cond);
      font-size: 0.78rem; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--silver);
      display: inline-flex; align-items: center; gap: 10px;
    }
    .hero-proof span::before {
      content: ''; width: 6px; height: 6px; flex-shrink: 0;
      background: var(--crimson); transform: rotate(45deg);
    }

    .btn-gold {
      font-family: var(--font-cond);
      font-size: 0.95rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--crimson);
      border: none;
      padding: 16px 44px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      font-weight: 700;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      clip-path: polygon(9px 0%, 100% 0%, calc(100% - 9px) 100%, 0% 100%);
    }
    .btn-gold:hover { background: var(--crimson-dark); transform: translateY(-2px); box-shadow: 0 8px 28px var(--crimson-glow); }

    .btn-outline {
      font-family: var(--font-cond);
      font-size: 0.95rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--light);
      background: transparent;
      border: 1px solid var(--ash);
      padding: 16px 44px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s;
      clip-path: polygon(9px 0%, 100% 0%, calc(100% - 9px) 100%, 0% 100%);
    }
    .btn-outline:hover { border-color: var(--crimson); color: var(--crimson); }

    @keyframes slide { 0%{left:-100%} 50%{left:0} 100%{left:100%} }
    .hero-vert {
      position: absolute; right: 52px; bottom: 90px;
      font-family: var(--font-cond);
      font-size: 0.68rem; letter-spacing: 0.32em;
      text-transform: uppercase; color: var(--ash);
      writing-mode: vertical-rl;
    }

    /* ── SECTION COMMON ── */
    section { padding: 100px 88px; }
    .section-label {
      font-family: var(--font-cond);
      font-size: 0.75rem; letter-spacing: 0.42em;
      text-transform: uppercase; color: var(--crimson);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before {
      content: '';
      display: block; width: 28px; height: 1px;
      background: linear-gradient(90deg, var(--crimson), transparent);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 4.8vw, 4.8rem);
      line-height: 0.95; letter-spacing: 0.015em;
      color: var(--white); margin-bottom: 24px;
    }
    .section-title .g { color: var(--gold); }

    /* ── SERVICES ── */
    #services {
      background: var(--iron);
      border-top: 1px solid var(--ash);
      border-bottom: 1px solid var(--ash);
      padding: 90px 88px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--ash);
      margin-top: 60px;
    }
    .service-card {
      background: var(--iron);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute; bottom: 0; left: 0;
      height: 3px; width: 0;
      background: linear-gradient(90deg, var(--gold), var(--crimson));
      transition: width 0.45s ease;
    }
    .service-card:hover { background: var(--steel); }
    .service-card:hover::before { width: 100%; }
    .service-num {
      font-family: var(--font-display);
      font-size: 4rem; line-height: 1;
      color: var(--ash); margin-bottom: 16px;
      transition: color 0.3s;
    }
    .service-card:hover .service-num { color: var(--gold-dark); }
    .service-card h3 {
      font-family: var(--font-cond);
      font-size: 1.5rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--white); margin-bottom: 14px;
    }
    .service-card p { font-size: 0.95rem; color: var(--silver); line-height: 1.75; }

    /* ── GALLERY ── */
    #gallery { background: var(--coal); padding: 100px 88px; }
    .gallery-header {
      display: flex; align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 52px; gap: 32px;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 6px;
    }
    .gallery-item {
      overflow: hidden; position: relative;
      background: var(--steel); cursor: pointer;
      height: 320px;
    }
    .gallery-item:nth-child(1) { grid-column: span 7; height: 525px; }
    .gallery-item:nth-child(2) { grid-column: span 5; height: 525px; }
    .gallery-item:nth-child(3) { grid-column: span 4; }
    .gallery-item:nth-child(4) { grid-column: span 4; }
    .gallery-item:nth-child(5) { grid-column: span 4; }

    /* ── HOW TO ADD PHOTOS ──────────────────────────────────────
       Replace each <div class="gallery-placeholder">...</div>
       with an <img> tag, for example:
         <img src="project1.jpg" alt="Custom railing project"
              style="width:100%;height:100%;object-fit:cover;display:block;">
       Make sure your image files are in the same folder as index.html
    ─────────────────────────────────────────────────────────── */
    .gallery-placeholder {
      width: 100%; aspect-ratio: 4/3;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--steel) 0%, var(--ash) 100%);
      position: relative; overflow: hidden;
    }
    .gallery-item:nth-child(1) .gallery-placeholder,
    .gallery-item:nth-child(2) .gallery-placeholder { aspect-ratio: 16/9; }
    .gallery-placeholder::before {
      content: ''; position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        45deg, transparent, transparent 10px,
        rgba(255,255,255,0.01) 10px, rgba(255,255,255,0.01) 11px
      );
    }
    .gph { position: relative; text-align: center; }
    .gph-icon { font-size: 2.2rem; opacity: 0.18; display: block; margin-bottom: 8px; }
    .gph-text {
      font-family: var(--font-cond);
      font-size: 0.72rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--smoke);
    }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(192,24,31,0.88), rgba(140,10,15,0.88));
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      font-family: var(--font-cond);
      font-size: 0.82rem; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--white);
      border: 1px solid rgba(255,255,255,0.4);
      padding: 8px 20px;
    }
    .gallery-note {
      margin-top: 18px;
      font-family: var(--font-cond);
      font-size: 0.75rem; letter-spacing: 0.12em;
      color: var(--smoke); text-align: center;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--iron);
      border-top: 1px solid var(--ash);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 88px; align-items: center;
    }
    .about-text p { color: var(--silver); font-size: 1rem; margin-bottom: 20px; line-height: 1.82; }
    .about-stat-row {
      display: flex; gap: 44px;
      margin-top: 48px; padding-top: 40px;
      border-top: 1px solid var(--ash);
    }
    .stat-num {
      font-family: var(--font-display); font-size: 3.2rem; line-height: 1;
      color: var(--crimson);
      -webkit-text-fill-color: var(--crimson);
    }
    .stat-label {
      font-family: var(--font-cond);
      font-size: 0.75rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--smoke); margin-top: 5px;
    }
    .team-grid { display: flex; flex-direction: column; gap: 20px; }
    .team-card {
      background: var(--steel); border: 1px solid var(--ash);
      padding: 28px 32px; display: flex;
      gap: 22px; align-items: flex-start;
      position: relative; overflow: hidden;
      transition: border-color 0.3s;
    }
    .team-card:hover { border-color: var(--gold-dark); }
    .team-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--crimson), transparent);
    }
    .team-avatar {
      width: 68px; height: 68px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.6rem;
      background: linear-gradient(135deg, var(--ash), var(--steel));
      border: 1px solid var(--gold-dark); color: var(--gold);
    }
    .team-info h3 {
      font-family: var(--font-cond); font-size: 1.25rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--white); margin-bottom: 2px;
    }
    .team-info .role {
      font-family: var(--font-cond); font-size: 0.74rem;
      letter-spacing: 0.26em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .team-info p { font-size: 0.9rem; color: var(--silver); line-height: 1.7; }

    /* ── QUOTE ── */
    #quote {
      background: var(--coal);
      border-top: 1px solid var(--ash);
      padding: 100px 88px;
    }
    .quote-inner {
      display: grid;
      grid-template-columns: 1fr 1.45fr;
      gap: 80px; align-items: start;
    }
    .quote-info p { color: var(--silver); font-size: 1rem; line-height: 1.82; margin-bottom: 40px; }
    .contact-details { display: flex; flex-direction: column; gap: 16px; }
    .contact-item { display: flex; align-items: flex-start; gap: 14px; }
    .contact-icon {
      width: 42px; height: 42px;
      background: var(--steel); border: 1px solid var(--ash);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 1rem; transition: border-color 0.2s;
    }
    .contact-item:hover .contact-icon { border-color: var(--crimson); }
    .contact-detail-text { padding-top: 4px; }
    .contact-detail-text span {
      display: block; font-family: var(--font-cond);
      font-size: 0.7rem; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--smoke); margin-bottom: 2px;
    }
    .contact-detail-text a,
    .contact-detail-text p { font-size: 0.95rem; color: var(--light); text-decoration: none; transition: color 0.2s; }
    .contact-detail-text a:hover { color: var(--gold); }

    .quote-form {
      background: var(--iron); border: 1px solid var(--ash);
      padding: 48px; position: relative; overflow: hidden;
    }
    .quote-form::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--crimson), var(--crimson-dark), var(--gold-dark));
    }
    .quote-photo {
      margin-top: 32px;
      overflow: hidden;
      width: 60%;
      margin-left: auto;
      margin-right: auto;
    }
    .quote-photo img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      opacity: 0.85;
      transition: opacity 0.3s;
      }
    .quote-photo img:hover {
      opacity: 1;
    }
    .form-title {
      font-family: var(--font-cond); font-size: 1.6rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--white); margin-bottom: 6px;
    }
    .form-sub { font-size: 0.88rem; color: var(--smoke); margin-bottom: 32px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 14px; }
    .form-group.full { grid-column: 1 / -1; }
    label {
      display: block; font-family: var(--font-cond);
      font-size: 0.72rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--smoke); margin-bottom: 7px;
    }
    input, select, textarea {
      width: 100%; background: var(--steel); border: 1px solid var(--ash);
      color: var(--light); font-family: var(--font-body);
      font-size: 0.95rem; font-weight: 300;
      padding: 13px 16px; outline: none;
      transition: border-color 0.2s, background 0.2s;
      appearance: none; -webkit-appearance: none; border-radius: 0;
    }
    input:focus, select:focus, textarea:focus { border-color: var(--crimson); background: var(--ash); }
    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a09070' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 16px center; cursor: pointer;
    }
    select option { background: var(--steel); }
    textarea { resize: vertical; min-height: 130px; }
    input::placeholder, textarea::placeholder { color: var(--smoke); }
    .form-submit {
      margin-top: 6px; width: 100%;
      font-family: var(--font-cond); font-size: 1rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--white);
      background: var(--crimson);
      border: none; padding: 18px; cursor: pointer; font-weight: 700;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
    }
    .form-submit:hover { background: var(--crimson-dark); transform: translateY(-2px); box-shadow: 0 6px 24px var(--crimson-glow); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .form-note { text-align: center; font-size: 0.76rem; color: var(--smoke); margin-top: 12px; }
    .form-success { display: none; text-align: center; padding: 48px 24px; }
    .form-success .check { font-size: 3rem; margin-bottom: 16px; display: block; }
    .form-success h3 { font-family: var(--font-display); font-size: 2.2rem; color: var(--crimson); margin-bottom: 12px; }
    .form-success p { color: var(--silver); }

    /* ── FOOTER ── */
    footer {
      background: var(--iron);
      border-top: 1px solid var(--ash);
      padding: 64px 88px 40px;
    }
    .footer-inner {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 64px; margin-bottom: 48px;
      padding-bottom: 48px; border-bottom: 1px solid var(--ash);
    }
    .footer-logo { font-family: var(--font-display); font-size: 1.65rem; letter-spacing: 0.06em; color: var(--white); margin-bottom: 14px; }
    .footer-logo .g { color: var(--gold); }
    .footer-logo .r { color: var(--crimson); }
    .footer-brand p { font-size: 0.9rem; color: var(--smoke); line-height: 1.75; max-width: 320px; }
    .footer-col h4 {
      font-family: var(--font-cond); font-size: 0.74rem;
      letter-spacing: 0.34em; text-transform: uppercase;
      color: var(--crimson); margin-bottom: 18px;
      padding-bottom: 10px; border-bottom: 1px solid var(--ash);
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { font-size: 0.9rem; color: var(--smoke); text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: var(--crimson); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
    .footer-copy { font-size: 0.8rem; color: var(--smoke); }
    .social-links { display: flex; gap: 10px; }
    .social-link {
      width: 38px; height: 38px; background: var(--steel);
      border: 1px solid var(--ash);
      display: flex; align-items: center; justify-content: center;
      color: var(--silver); text-decoration: none;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .social-link:hover { background: var(--crimson); border-color: var(--crimson); color: var(--white); }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.10s; }
    .reveal-delay-2 { transition-delay: 0.22s; }
    .reveal-delay-3 { transition-delay: 0.34s; }

    /* ── MOBILE ── */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--light); transition: 0.3s; }

    @media (max-width: 1080px) {
      section, #services, #gallery, #quote, footer { padding-left: 48px; padding-right: 48px; }
      nav { padding: 0 32px; }
      .hero-content { padding: 0 48px !important; }
      .hero-scroll { left: 48px; }
      #about { grid-template-columns: 1fr; gap: 48px; }
      .quote-inner { grid-template-columns: 1fr; gap: 48px; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
      .gallery-grid { grid-template-columns: repeat(6, 1fr); }
      .gallery-item:nth-child(1) { grid-column: span 6; }
      .gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 3; }
      .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-column: span 3; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta-wrap { display: none; }
      .hamburger { display: flex; }
      .hero-content { padding: 0 28px !important; }
      .hero-scroll { left: 28px; }
      .hero-vert { display: none; }
      section, #services, #gallery, #quote, footer { padding-left: 28px; padding-right: 28px; }
      .services-grid { grid-template-columns: 1fr; }
      .gallery-header { flex-direction: column; align-items: flex-start; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item { grid-column: span 1 !important; }
      .form-row { grid-template-columns: 1fr; }
      .quote-form { padding: 32px 24px; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .about-stat-row { gap: 28px; flex-wrap: wrap; }
    }

    /* ── LIGHTBOX ── */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0,0,0,0.92);
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
    }
    .lightbox-overlay.active { display: flex; }
    .lightbox-box {
      position: relative;
      max-width: 900px;
      width: 100%;
      display: flex;
      flex-direction: column;
      background: var(--steel);
      border: 1px solid var(--ash);
    }
    .lightbox-box img {
      width: 100%;
      max-height: 65vh;
      object-fit: contain;
      display: block;
      background: #000;
    }
    .lightbox-caption {
      padding: 20px 24px;
      border-top: 2px solid var(--crimson);
    }
    .lightbox-caption h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      letter-spacing: 0.06em;
      color: var(--white);
      margin-bottom: 6px;
    }
    .lightbox-caption p {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--silver);
      line-height: 1.7;
    }
    .lightbox-close {
      position: absolute;
      top: -44px;
      right: 0;
      background: none;
      border: none;
      color: var(--white);
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-prev, .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: 1px solid var(--ash);
      color: var(--white);
      font-size: 1.5rem;
      width: 44px;
      height: 44px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      z-index: 10;
    }
    .lightbox-prev { left: -54px; }
    .lightbox-next { right: -54px; }
    .lightbox-prev:hover, .lightbox-next:hover { background: var(--crimson); }

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS — service pages, case studies, new sections
   ═══════════════════════════════════════════════════════════════ */

/* ── NAV DROPDOWN ── */
.nav-links li.has-dropdown { position: relative; }
.nav-caret { font-size: 0.6rem; opacity: 0.7; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: rgba(10,9,8,0.98); border: 1px solid var(--ash);
  min-width: 250px; padding: 8px 0; display: none; flex-direction: column;
}
.nav-links li.has-dropdown:hover .nav-dropdown { display: flex; }
.nav-dropdown a { padding: 11px 22px; letter-spacing: 0.12em; font-size: 0.8rem; white-space: nowrap; }
.nav-dropdown a::after { display: none; }

/* ── SERVICES AS LINKS ── */
a.service-card { text-decoration: none; display: block; color: inherit; }
.service-more {
  margin-top: 18px; font-family: var(--font-cond);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.25s;
}
a.service-card:hover .service-more { gap: 14px; }

/* Coming-soon service cards (not yet linked) */
.service-card.soon { opacity: 0.6; cursor: default; }
.service-card.soon:hover { background: var(--iron); }
.service-card.soon:hover::before { width: 0; }
.service-card.soon:hover .service-num { color: var(--ash); }
.service-soon {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dark);
  padding: 5px 12px;
}

/* ── WHY CHOOSE US ── */
#why { background: var(--coal); border-top: 1px solid var(--ash); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ash); margin-top: 56px; }
.why-item { background: var(--coal); padding: 36px 28px; }
.why-ico { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.why-item h3 { font-family: var(--font-cond); font-size: 1.08rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.why-item p { font-size: 0.9rem; color: var(--silver); line-height: 1.7; }

/* ── REVIEWS / TRUST ── */
#reviews { background: var(--iron); border-top: 1px solid var(--ash); border-bottom: 1px solid var(--ash); text-align: center; }
.reviews-inner { max-width: 900px; margin: 0 auto; }
.reviews-stars { font-size: 1.5rem; letter-spacing: 5px; color: var(--gold); }
.reviews-rating { font-family: var(--font-display); font-size: 3.4rem; color: var(--white); line-height: 1; margin: 8px 0 2px; }
.reviews-count { font-family: var(--font-cond); letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke); font-size: 0.8rem; }
.reviews-cta { margin-top: 26px; }
.trust-stats { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; margin-top: 46px; padding-top: 38px; border-top: 1px solid var(--ash); }

/* ── PATHWAYS (residential / commercial) ── */
#paths { background: var(--coal); border-top: 1px solid var(--ash); }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
a.path-card { text-decoration: none; display: block; background: var(--iron); border: 1px solid var(--ash); padding: 44px 40px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.2s; }
a.path-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--crimson), transparent); }
a.path-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); }
.path-card h3 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.03em; color: var(--white); margin-bottom: 6px; }
.path-sub { font-family: var(--font-cond); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-size: 0.76rem; margin-bottom: 20px; }
.path-card ul { list-style: none; margin-bottom: 22px; }
.path-card li { font-size: 0.92rem; color: var(--silver); padding: 5px 0 5px 20px; position: relative; }
.path-card li::before { content: '\203A'; position: absolute; left: 0; color: var(--crimson); }
.path-more { font-family: var(--font-cond); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ── SERVICE AREA ── */
#area { background: var(--iron); border-top: 1px solid var(--ash); text-align: center; }
.area-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.area-chip { font-family: var(--font-cond); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.8rem; color: var(--light); border: 1px solid var(--ash); padding: 8px 18px; background: var(--steel); }
.area-intro { max-width: 640px; margin: 0 auto; color: var(--silver); line-height: 1.7; }
.area-map {
  max-width: 960px; margin: 44px auto 0;
  position: relative; overflow: hidden;
  border: 1px solid var(--ash);
}
.area-map::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, var(--crimson), var(--gold-dark), transparent);
}
.area-map iframe { width: 100%; height: 440px; border: 0; display: block; }
@media (max-width: 768px) { .area-map iframe { height: 320px; } }

/* ── MOBILE STICKY ACTION BAR ── */
.mobile-bar { display: none; }
@media (max-width: 768px) {
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200; background: rgba(10,9,8,0.98); border-top: 1px solid var(--ash); }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 4px; text-decoration: none; font-family: var(--font-cond); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); border-left: 1px solid var(--ash); }
  .mobile-bar a:first-child { border-left: none; }
  .mobile-bar a.primary { background: var(--crimson); color: var(--white); }
  .mb-ico { font-size: 1.05rem; }
  body { padding-bottom: 58px; }
}

/* ── SUB-PAGE HERO / BREADCRUMB / PROSE / FAQ (service + case pages) ── */
.subhero { padding: 150px 88px 70px; background: radial-gradient(ellipse 60% 80% at 78% 40%, rgba(192,24,31,0.10) 0%, transparent 62%), linear-gradient(160deg, #0a0908 0%, #161208 55%, #0a0908 100%); border-bottom: 1px solid var(--ash); }
.breadcrumb { font-family: var(--font-cond); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke); margin-bottom: 20px; }
.breadcrumb a { color: var(--silver); text-decoration: none; }
.breadcrumb a:hover { color: var(--crimson); }
.subhero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.96; color: var(--white); letter-spacing: 0.015em; max-width: 900px; }
.subhero .lead { color: var(--silver); font-size: 1.05rem; line-height: 1.8; max-width: 640px; margin-top: 20px; }
.subhero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.content-wrap { max-width: 1180px; margin: 0 auto; }
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.prose h2 { font-family: var(--font-cond); font-size: 1.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin: 0 0 18px; }
.prose h3 { font-family: var(--font-cond); font-size: 1.12rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin: 30px 0 12px; }
.prose p { color: var(--silver); line-height: 1.85; margin-bottom: 18px; }
.prose ul { list-style: none; margin: 0 0 22px; }
.prose li { color: var(--light); padding: 7px 0 7px 24px; position: relative; }
.prose li::before { content: '\25AA'; position: absolute; left: 0; color: var(--crimson); }

.info-card { background: var(--iron); border: 1px solid var(--ash); padding: 32px; position: sticky; top: 100px; }
.info-card h3 { font-family: var(--font-cond); letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.info-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--ash); }
.info-row span { color: var(--smoke); font-family: var(--font-cond); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; }
.info-row strong { color: var(--light); font-weight: 400; text-align: right; font-size: 0.9rem; }
.info-card .btn-gold { width: 100%; text-align: center; margin-top: 22px; }

.case-figure { margin: 0 0 32px; border: 1px solid var(--ash); overflow: hidden; }
.case-figure img { width: 100%; display: block; }
.case-figure figcaption { padding: 12px 16px; background: var(--iron); font-size: 0.8rem; color: var(--smoke); font-family: var(--font-cond); letter-spacing: 0.1em; text-transform: uppercase; }

.faq { border-top: 1px solid var(--ash); }
.faq-item { border-bottom: 1px solid var(--ash); padding: 24px 0; }
.faq-item h3 { font-family: var(--font-cond); font-size: 1.1rem; letter-spacing: 0.04em; color: var(--white); margin-bottom: 10px; }
.faq-item p { color: var(--silver); line-height: 1.8; font-size: 0.95rem; }

.cta-band { background: var(--iron); border-top: 1px solid var(--ash); border-bottom: 1px solid var(--ash); text-align: center; }
.cta-band h2 { margin-bottom: 28px; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 1080px) {
  .subhero { padding: 132px 48px 60px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .info-card { position: static; }
}
@media (max-width: 768px) {
  .subhero { padding: 108px 28px 50px; }
  .why-grid { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
  .trust-stats { gap: 32px; }
  .nav-dropdown { position: static; transform: none; border: none; min-width: 0; padding: 4px 0 4px 16px; background: transparent; }
}

/* Gallery items as case-study links */
a.gallery-item { display: block; text-decoration: none; color: inherit; }
