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

    :root {
      --ice:     #DFF0F8;
      --glacier: #5BAAD4;
      --deep:    #3D5469;
      --steel:   #4A6880;
      --concrete:#7A8A96;
      --warm:    #EDF4F8;
      --amber:   #5BAAD4;
      --amber-dark: #3d8ab8;
      --white:   #FFFFFF;
      --text:    #2A3D4D;
      --slab:    #B8C4CC;

      --font-display: 'Barlow Condensed', sans-serif;
      --font-body:    'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(61, 84, 105, 0.97);
      backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 96px;
    }
    .nav-logo-img {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .nav-logo-img img {
      height: 82px;
      width: auto;
      display: block;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-text .nav-logo-main {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
    }
    .nav-logo-text .nav-logo-main span {
      color: var(--glacier);
    }
    .nav-logo-text .nav-logo-sub {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--concrete);
    }
    .nav-links { display: flex; align-items: center; gap: 0.95rem; list-style: none; }
    .nav-links a {
      color: var(--ice);
      text-decoration: none;
      font-size: 0.74rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      white-space: nowrap;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--glacier); }
    .nav-cta {
      background: var(--amber);
      color: var(--white) !important;
      padding: 0.38rem 0.8rem;
      border-radius: 4px;
      font-weight: 600 !important;
    }
    .nav-cta:hover { background: var(--amber-dark); color: var(--white) !important; }

    @media (max-width: 1280px) {
      .nav-links { gap: 0.7rem; }
      .nav-links a { font-size: 0.68rem; }
      .nav-cta { padding: 0.35rem 0.65rem; }
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: var(--deep);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      position: relative;
      overflow: hidden;
      padding: 0;
    }
    .hero-left {
      display: flex;
      align-items: center;
      padding: 120px 5vw 80px 5vw;
      position: relative;
      z-index: 1;
    }
    .hero-right {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
    }
    .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--deep) 0%, transparent 30%),
                  linear-gradient(to top, rgba(27,58,75,0.5) 0%, transparent 40%);
    }
    .hero-right-badge {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      background: rgba(27,58,75,0.85);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(91,170,212,0.4);
      border-radius: 6px;
      padding: 1rem 1.5rem;
      text-align: center;
      white-space: nowrap;
    }
    .hero-right-badge p {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--glacier);
      margin: 0 0 0.2rem;
    }
    .hero-right-badge span {
      font-size: 0.8rem;
      color: var(--concrete);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(74,143,168,0.18) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(27,58,75,0.7) 0%, rgba(27,58,75,0.95) 100%);
    }
    /* Decorative concrete texture lines */
    .hero-lines {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        repeating-linear-gradient(105deg, transparent, transparent 120px, rgba(74,143,168,0.06) 120px, rgba(74,143,168,0.06) 121px);
    }
    .hero-content { position: relative; z-index: 1; max-width: 720px; }
    .hero-badges {
      display: flex; gap: 0.75rem; flex-wrap: wrap;
      margin-bottom: 1.25rem;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.35rem 0.9rem;
      border-radius: 3px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .hero-badge.veteran {
      background: rgba(91,170,212,0.18);
      border: 1px solid rgba(91,170,212,0.5);
      color: var(--ice);
    }
    .hero-badge.family {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--ice);
    }
    .hero-eyebrow {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 900;
      letter-spacing: 0.18em;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 1rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 800;
      line-height: 0.95;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.01em;
      margin-bottom: 1.5rem;
    }
    .hero-headline em {
      font-style: normal;
      color: var(--glacier);
      display: block;
    }
    .hero-tagline {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--glacier);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .hero-sub {
      font-size: 1.15rem;
      color: var(--ice);
      opacity: 0.9;
      max-width: 520px;
      margin-bottom: 2.5rem;
      line-height: 1.75;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--amber);
      color: var(--white);
      padding: 0.95rem 2.25rem;
      border-radius: 4px;
      font-weight: 700;
      font-size: 1.05rem;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
      text-transform: uppercase;
    }
    .btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
    .btn-secondary {
      background: transparent;
      color: var(--ice);
      padding: 0.9rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: 1.5px solid rgba(232,243,247,0.35);
      transition: border-color 0.2s, color 0.2s;
      display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--glacier); color: var(--glacier); }
    .hero-stats {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    .stat { text-align: center; }
    .stat {
      background: rgba(0,0,0,0.75);
      border: 1.5px solid rgba(91,170,212,0.4);
      border-radius: 6px;
      padding: 0.75rem 1.25rem;
      text-align: center;
      backdrop-filter: blur(4px);
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      letter-spacing: 0.05em;
    }
    .stat-num span { color: var(--glacier); }
    .stat-label {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--glacier);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 5px;
    }

    /* ── SECTIONS COMMON ── */
    section { padding: 80px 5vw; }
    .section-eyebrow {
      font-family: var(--font-display);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--glacier);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .section-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 2px;
      background: var(--glacier);
      flex-shrink: 0;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.0;
      text-transform: uppercase;
      color: var(--deep);
      margin-bottom: 1.25rem;
      letter-spacing: 0.01em;
    }
    .section-sub {
      font-size: 1rem;
      color: #5a7080;
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 3rem;
    }

    /* ── SERVICES ── */
    #services { background: var(--warm); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5px;
      background: var(--concrete);
      border: 1.5px solid var(--concrete);
    }
    .service-card {
      background: var(--white);
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .service-card:hover { background: var(--ice); }
    .service-icon {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--deep);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .service-icon svg { width: 22px; height: 22px; fill: var(--glacier); }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--deep);
      margin-bottom: 0.75rem;
      letter-spacing: 0.02em;
    }
    .service-card p { font-size: 0.93rem; color: #5a7080; line-height: 1.65; }
    .service-tag {
      display: inline-block;
      margin-top: 1rem;
      background: var(--deep);
      color: var(--ice);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 2px;
    }

    /* ── GALLERY ── */
    #gallery { background: var(--deep); }
    #gallery .section-title { color: var(--white); }
    #gallery .section-eyebrow { color: var(--glacier); }
    #gallery .section-sub { color: var(--concrete); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 220px 220px 220px;
      gap: 6px;
    }
    .gallery-item {
      background: var(--steel);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      gap: 0.5rem;
      cursor: pointer;
      transition: opacity 0.2s;
      position: relative;
      overflow: hidden;
    }
    .gallery-item:hover { opacity: 0.85; }
    .gallery-item.large { grid-column: span 2; }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(27,58,75,0.6);
      display: flex; align-items: flex-end;
      padding: 1rem;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-label {
      font-family: var(--font-display);
      color: var(--white);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    /* Placeholder gallery items */
    .gallery-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0.5rem;
    }
    .gallery-placeholder svg { width: 32px; height: 32px; fill: var(--glacier); opacity: 0.5; }
    .gallery-placeholder span { color: var(--concrete); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

    /* ── WHY US ── */
    #why { background: var(--white); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .why-list { display: flex; flex-direction: column; gap: 1.75rem; }
    .why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
    .why-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 800;
      color: rgba(91,170,212,0.25);
      line-height: 1;
      flex-shrink: 0;
      width: 56px;
      text-align: right;
    }
    .why-text h4 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--deep);
      margin-bottom: 0.4rem;
    }
    .why-text p { font-size: 0.9rem; color: #5a7080; line-height: 1.65; }
    .why-visual {
      background: var(--deep);
      border-radius: 4px;
      padding: 3rem 2.5rem;
      color: var(--white);
    }
    .why-visual-title {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: var(--white);
    }
    .why-visual-title span { color: var(--glacier); }
    .checklist { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
    .checklist li {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.95rem;
      color: var(--ice);
    }
    .checklist li::before {
      content: '';
      width: 18px; height: 18px; flex-shrink: 0;
      border-radius: 50%;
      background: var(--glacier);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E");
      background-size: cover;
    }

    /* ── PROCESS ── */
    #process { background: var(--ice); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px; left: 12.5%; right: 12.5%;
      height: 2px;
      background: var(--glacier);
      opacity: 0.3;
    }
    .process-step { padding: 0 1.5rem; text-align: center; position: relative; }
    .step-dot {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--deep);
      border: 3px solid var(--glacier);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--glacier);
      position: relative; z-index: 1;
    }
    .process-step h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--deep);
      margin-bottom: 0.5rem;
    }
    .process-step p { font-size: 0.85rem; color: #5a7080; line-height: 1.6; }

    /* ── CONTACT ── */
    #contact { background: var(--deep); }
    #contact .section-title { color: var(--white); }
    #contact .section-eyebrow { color: var(--glacier); }
    #contact .section-sub { color: var(--concrete); }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--concrete);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 4px;
      padding: 0.75rem 1rem;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--glacier); }
    .form-group select option { background: var(--deep); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .contact-form .btn-primary { width: 100%; text-align: center; font-size: 1.05rem; padding: 1rem; }
    .contact-info { color: var(--ice); }
    .contact-info h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.25rem;
    }
    .contact-info p { font-size: 0.95rem; color: var(--concrete); line-height: 1.7; margin-bottom: 2rem; }
    .contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-method {
      display: flex; align-items: center; gap: 1rem;
      text-decoration: none;
    }
    .method-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(74,143,168,0.18);
      border: 1px solid rgba(74,143,168,0.35);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .method-icon svg { width: 20px; height: 20px; fill: var(--glacier); }
    .method-text { display: flex; flex-direction: column; }
    .method-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--concrete); }
    .method-value { font-size: 1rem; font-weight: 600; color: var(--white); }
    .service-area-badge {
      margin-top: 2rem;
      padding: 1rem 1.25rem;
      border: 1px solid rgba(74,143,168,0.3);
      border-radius: 4px;
      background: rgba(74,143,168,0.07);
      display: flex; align-items: center; gap: 0.75rem;
    }
    .service-area-badge svg { width: 20px; height: 20px; fill: var(--glacier); flex-shrink: 0; }
    .service-area-badge span { font-size: 0.88rem; color: var(--concrete); }
    .service-area-badge strong { color: var(--ice); }

    /* ── FOOTER ── */
    footer {
      background: #273748;
      padding: 2.5rem 5vw;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .footer-logo span { color: var(--glacier); }
    footer p { font-size: 0.8rem; color: var(--concrete); }

    /* ── TEAM ── */
    #team { background: var(--warm); }
    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .team-card {
      background: var(--white);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(61,84,105,0.08);
      display: flex;
      flex-direction: column;
    }
    .team-card-top {
      background: var(--deep);
      padding: 2.5rem 2rem 2rem;
      position: relative;
    }
    .team-avatar {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: var(--steel);
      border: 3px solid var(--glacier);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .team-avatar svg { width: 40px; height: 40px; fill: var(--slab); }
    .team-name {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 0.02em;
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .team-title {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--glacier);
    }
    .team-badge {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: var(--glacier);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 2px;
    }
    .team-card-body {
      padding: 1.75rem 2rem 2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .team-bio { font-size: 0.93rem; color: #5a7080; line-height: 1.7; }
    .team-contact {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-top: auto;
      padding-top: 1.25rem;
      border-top: 1px solid var(--ice);
    }
    .team-contact a {
      display: flex; align-items: center; gap: 0.6rem;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--deep);
      transition: color 0.2s;
    }
    .team-contact a:hover { color: var(--glacier); }
    .team-contact svg { width: 16px; height: 16px; fill: var(--glacier); flex-shrink: 0; }

    /* ── ESTIMATOR ── */
    #estimator { background: var(--deep); }
    #estimator .section-title { color: var(--white); }
    #estimator .section-eyebrow { color: var(--glacier); }
    #estimator .section-sub { color: var(--concrete); }
    .est-wrap { max-width: 680px; }
    .est-progress {
      display: flex; gap: 0.5rem; margin-bottom: 2rem;
    }
    .est-progress-dot {
      height: 4px; flex: 1; border-radius: 2px;
      background: rgba(255,255,255,0.12);
      transition: background 0.3s;
    }
    .est-progress-dot.active { background: var(--glacier); }
    .est-step { display: none; }
    .est-step.active { display: block; }
    .est-step-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--glacier); margin-bottom: 0.5rem;
    }
    .est-step-title {
      font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
      text-transform: uppercase; color: var(--white); margin-bottom: 1.5rem; line-height: 1.1;
    }
    .est-hint { font-size: 0.85rem; color: var(--concrete); margin-bottom: 1rem; }
    .est-options { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
    .est-opt {
      background: rgba(255,255,255,0.05);
      border: 1.5px solid rgba(255,255,255,0.1);
      border-radius: 6px; padding: 1rem 1.25rem;
      text-align: left; cursor: pointer; width: 100%;
      display: flex; flex-direction: column; gap: 0.2rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .est-opt b { color: var(--white); font-size: 0.97rem; }
    .est-opt small { color: var(--concrete); font-size: 0.8rem; line-height: 1.5; }
    .est-opt .tag { color: var(--glacier); font-size: 0.72rem; font-style: italic; margin-top: 0.1rem; }
    .est-opt:hover { border-color: var(--glacier); background: rgba(91,170,212,0.1); }
    .est-opt.selected { border-color: var(--glacier); background: rgba(91,170,212,0.18); }
    .est-input-wrap { margin-bottom: 1.75rem; }
    .est-input {
      width: 100%; max-width: 280px; display: block;
      background: rgba(255,255,255,0.07);
      border: 1.5px solid rgba(255,255,255,0.18);
      border-radius: 4px; padding: 0.85rem 1rem;
      color: var(--white); font-size: 1.1rem;
      font-family: var(--font-body); outline: none;
      transition: border-color 0.2s;
    }
    .est-input:focus { border-color: var(--glacier); }
    .est-input::placeholder { color: rgba(255,255,255,0.25); }
    .est-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--concrete); display: block; margin-bottom: 0.5rem; }
    .est-btn-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
    .est-next {
      background: var(--glacier); color: var(--white);
      border: none; border-radius: 4px;
      padding: 0.85rem 2rem; font-size: 1rem; font-weight: 700;
      cursor: pointer; letter-spacing: 0.03em; font-family: var(--font-body);
      transition: background 0.2s, opacity 0.2s;
    }
    .est-next:disabled { opacity: 0.3; cursor: not-allowed; }
    .est-next:not(:disabled):hover { background: var(--amber-dark); }
    .est-back {
      background: transparent; color: var(--concrete);
      border: none; font-size: 0.88rem; cursor: pointer;
      font-family: var(--font-body); padding: 0.5rem;
      transition: color 0.2s;
    }
    .est-back:hover { color: var(--ice); }
    .cove-extra { margin-top: 1rem; display: none; }
    .cove-extra.show { display: block; }
    .quote-card {
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(91,170,212,0.4);
      border-radius: 6px; padding: 1.75rem;
      margin-bottom: 1.25rem;
    }
    .q-row {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
      font-size: 0.9rem; gap: 1rem;
    }
    .q-row:last-child { border-bottom: none; }
    .q-row .ql { color: var(--concrete); flex: 1; }
    .q-row .qr { color: var(--white); font-weight: 600; white-space: nowrap; }
    .q-total {
      display: flex; justify-content: space-between; align-items: baseline;
      margin-top: 1rem; padding-top: 1rem;
      border-top: 2px solid var(--glacier);
      font-family: var(--font-display); gap: 1rem;
    }
    .q-total .ql { color: var(--white); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; }
    .q-total .qr { color: var(--glacier); font-size: 1.6rem; font-weight: 800; }
    .quote-disclaimer {
      background: rgba(255,255,255,0.04);
      border-left: 3px solid var(--glacier);
      padding: 1rem 1.25rem; border-radius: 0 4px 4px 0;
      font-size: 0.82rem; color: var(--concrete); line-height: 1.65;
      margin-bottom: 1.5rem;
    }
    .quote-disclaimer strong { color: var(--ice); }


    /* ── HAMBURGER MENU ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 96px;
      left: 0; right: 0;
      background: rgba(38, 55, 72, 0.98);
      backdrop-filter: blur(10px);
      z-index: 99;
      padding: 1.5rem 5vw 2rem;
      flex-direction: column;
      gap: 0;
      border-bottom: 1px solid rgba(91,170,212,0.2);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--ice);
      text-decoration: none;
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--glacier); }
    .mobile-menu .mobile-cta {
      background: var(--glacier);
      color: var(--white) !important;
      text-align: center;
      border-radius: 4px;
      margin-top: 1rem;
      padding: 1rem !important;
      border-bottom: none !important;
    }

    /* ── STICKY MOBILE CTA BAR ── */
    .mobile-cta-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 98;
      background: var(--deep);
      border-top: 1px solid rgba(91,170,212,0.3);
      padding: 0.75rem 1rem;
      gap: 0.75rem;
    }
    .mobile-cta-bar a {
      flex: 1;
      text-align: center;
      padding: 0.85rem 0.5rem;
      border-radius: 4px;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
    }
    .mobile-cta-bar .cta-call {
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.15);
      color: var(--white);
    }
    .mobile-cta-bar .cta-quote {
      background: var(--glacier);
      color: var(--white);
    }
    .mobile-cta-bar svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .mobile-cta-bar { display: flex; }
      /* Add padding to body so content isn't hidden behind sticky bar */
      body { padding-bottom: 72px; }
    }

    /* ── FOCUS STYLES ── */
    :focus-visible {
      outline: 2px solid var(--glacier);
      outline-offset: 3px;
      border-radius: 2px;
    }
    button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--glacier);
      outline-offset: 3px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      #hero { grid-template-columns: 1fr; }
      .hero-right { min-height: 50vw; }
      .hero-left { padding: 100px 5vw 60px; }
      .services-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item.large { grid-column: span 2; }
      .why-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .process-steps::before { display: none; }
      .team-grid { grid-template-columns: 1fr; }
      .contact-layout { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item.large { grid-column: span 1; }
    }

    /* Full-bleed project photos on mobile so they don't look inset/narrow */
    @media (max-width: 640px) {
      .full-bleed-mobile { padding-left: 0 !important; padding-right: 0 !important; }
      .full-bleed-mobile img { border-radius: 0 !important; }
    }
