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

  :root {
    --green: #1E5C2E;
    --green-mid: #247336;
    --green-light: #2d8a41;
    --navy: #1E3A5F;
    --navy-dark: #122540;
    --gold: #C8960A;
    --gold-light: #e0a80c;
    --steel: #3D4E5C;
    --off-white: #F5F2EC;
    --warm-gray: #e8e4dc;
    --body-text: #2e3a42;
    --black: #0D0F0E;
    /* structural section backgrounds (not brand colors, not admin-editable) */
    --slate-teal: #34504c;
    --sage-green: #82997f;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: #fff; color: var(--body-text); overflow-x: hidden; }

  /* ===== NAVBAR ===== */
  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: 80px;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: rgba(13,15,14,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,150,10,0.2);
  }
  .nav-logo { height: 56px; width: auto; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: #fff; font-size: 14px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { background: var(--gold); color: #fff; padding: 10px 24px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
  .nav-cta:hover { background: var(--gold-light); }

  /* ── NAV DROPDOWN ─── */
  .nav-has-dropdown { position: relative; }
  .nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
  .nav-caret { transition: transform 0.22s ease; flex-shrink: 0; }
  .nav-has-dropdown:hover .nav-caret { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(13,15,14,0.97);
    backdrop-filter: blur(12px);
    min-width: 240px; list-style: none;
    padding: 16px 0 8px;
    border-top: 2px solid var(--gold);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 200;
  }
  .nav-has-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu li a {
    display: block; padding: 13px 24px;
    color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; text-shadow: none;
    transition: color 0.18s, padding-left 0.18s;
    border-left: 2px solid transparent;
  }
  .nav-dropdown-menu li a:hover {
    color: var(--gold); padding-left: 30px;
    border-left-color: var(--gold);
    background: rgba(255,255,255,0.04);
  }

  /* ===== HERO (full-bleed video, minimal overlay) ===== */
  .hero {
    position: relative; height: 88vh; min-height: 560px;
    display: flex; align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-color: #1a2a1a;
  }
  .hero-video {
    position: absolute; inset: 0; z-index: 1;
    width: 100%; height: 100%; object-fit: cover;
  }
  #heroVideoMobile { display: none; }
  .hero-overlay {
    display: none;
  }
  .hero-content {
    position: relative; z-index: 3;
    padding: 0 80px 56px;
  }
  .hero-cues { display: none; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    animation: slideUp 0.8s ease 0.2s both;
  }
  .hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold); }

  .hero-scroll {
    position: absolute; bottom: 28px; left: 80px; z-index: 3;
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    animation: fadeIn 1.2s ease 1.2s both;
  }
  .hero-scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); }

  .btn-primary {
    background: var(--gold); color: #fff; padding: 16px 36px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    display: inline-block; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    border: 2px solid rgba(20,30,28,0.3); color: var(--navy-dark); padding: 14px 34px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--green); color: var(--green); }
  .btn-outline.on-dark { border-color: rgba(255,255,255,0.3); color: #fff; }
  .btn-outline.on-dark:hover { border-color: var(--gold); color: var(--gold); }

  /* ===== INTRO BAND (photo strip + headline + paragraph + button) ===== */
  .intro { padding: 90px 0 100px; background: #fff; }
  .intro-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-bottom: 64px; }
  .intro-photo {
    height: 260px; position: relative; overflow: hidden;
    background: linear-gradient(145deg, #1a2f1a, #2a3f1a);
    display: flex; align-items: center; justify-content: center;
  }
  .intro-photo img { width: 100%; height: 100%; object-fit: cover; }
  .intro-photo-label { color: rgba(255,255,255,0.25); font-size: 11px; text-align: center; padding: 16px; font-style: italic; }
  .intro-content { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 48px; }
  .intro-title {
    font-family: 'Fraunces', serif; font-weight: 600; font-style: normal;
    font-size: clamp(32px, 4.5vw, 52px); line-height: 1.12; letter-spacing: -0.01em;
    color: var(--navy-dark); margin-bottom: 4px;
  }
  .intro-title .accent { color: var(--green); display: inline; }
  .intro-text { color: #5a6b78; font-size: 16px; line-height: 1.85; margin: 28px 0 36px; }
  .intro-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== STATS BAR ===== */
  .stats-bar {
    background: var(--green);
    padding: 0;
  }
  .stats-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    max-width: 1200px; margin: 0 auto;
  }
  .stat-item {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .stat-item:nth-child(1) { transition-delay: 0s; }
  .stat-item:nth-child(2) { transition-delay: 0.12s; }
  .stat-item:nth-child(3) { transition-delay: 0.24s; }
  .stat-item:nth-child(4) { transition-delay: 0.36s; }
  .stat-item.visible { opacity: 1; transform: translateY(0); }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: 46px; line-height: 1; color: #fff; letter-spacing: -0.01em;
    display: inline-flex; align-items: baseline; gap: 2px;
  }
  .stat-num span { color: var(--gold); }
  .stat-num.popped { animation: statPop 0.45s cubic-bezier(0.34,1.56,0.64,1) both; }
  .stat-label { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }

  /* ===== SECTION HEADINGS (shared) ===== */
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--green); }
  h2.section-title {
    font-family: 'Fraunces', serif; font-weight: 600; font-style: normal;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.01em; color: var(--navy-dark); line-height: 1.08;
    margin-bottom: 20px;
  }
  .section-desc { color: #5a6b78; font-size: 16px; line-height: 1.75; max-width: 540px; }

  /* ===== ABOUT BANNER (text-left + image-right overlap) ===== */
  .about-banner {
    position: relative;
    max-width: 1900px;
    margin: 0 auto;
    padding: 35px 20px 90px 20px;
  }
  .about-banner-wrap {
    position: relative;
  }
  .about-banner-text {
    position: relative;
    width: 57%;
    min-height: 588px;
    background: var(--slate-teal);
    padding: 90px 60px 60px 75px;
    z-index: 1;
  }
  .about-banner-text::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 70px; height: 100%;
    background: #2d4542;
  }
  .about-banner-text-inner {
    position: relative;
    max-width: 600px;
  }
  .about-eyebrow { color: var(--gold) !important; }
  .about-eyebrow::before { background: var(--gold) !important; }
  .about-banner-heading {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(28px, 3vw, 44px);
    color: #fff; letter-spacing: 0.03em; text-transform: uppercase;
    margin-bottom: 24px; line-height: 1.08;
  }
  .about-banner-desc {
    color: rgba(255,255,255,0.80);
    font-size: 15px; line-height: 1.9;
  }
  .about-banner-img-wrap {
    position: absolute;
    top: 50px;
    right: 0;
    width: 54%;
    z-index: 2;
  }
  .about-banner-img-wrap::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -55px;
    height: 60px;
    background: var(--gold);
    z-index: -1;
  }
  .about-banner-img {
    display: block; width: 100%; height: 573px; object-fit: cover; object-position: top;
  }
  @media (max-width: 860px) {
    .about-banner { padding: 20px 16px 0; }
    .about-banner::after { display: none; }
    .about-banner-text { width: 100%; min-height: auto; padding: 50px 30px; }
    .about-banner-img-wrap { position: relative; top: 0; width: 100%; margin-top: 20px; }
    .about-banner-img { height: 320px; }
    .about-banner-img-wrap::after { display: none; }
  }

  /* ===== SERVICES (icon row, not cards) ===== */
  .services { padding: 100px 48px; background: var(--off-white); }
  .services-inner { max-width: 1200px; margin: 0 auto; }
  .services-header { text-align: center; margin-bottom: 64px; }
  .services-header .section-eyebrow { justify-content: center; }
  .services-header .section-desc { margin: 0 auto; }
  .services-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 48px; max-width: 1100px; margin: 0 auto; }
  .service-item {
    flex: 1 1 220px; text-align: center;
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 32px 24px 28px;
    border: 2px solid transparent;
    background: transparent;
    cursor: default;
  }
  .service-item.visible { opacity: 1; transform: translateY(0); }
  .service-item:hover {
    transform: translateY(-6px);
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 12px 36px rgba(0,0,0,0.10);
  }
  .service-icon-lg {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: #fff; display: flex; align-items: center; justify-content: center;
    color: var(--green);
    transition: background 0.3s, transform 0.3s, color 0.3s;
  }
  .service-icon-lg svg { width: 28px; height: 28px; }
  .service-item:hover .service-icon-lg {
    background: rgba(200,150,10,0.10);
    transform: scale(1.15);
    color: var(--gold);
  }
  .service-item h3 {
    font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px;
    letter-spacing: 0.01em; color: var(--navy-dark); margin-bottom: 10px; text-transform: uppercase;
    transition: color 0.3s;
  }
  .service-item:hover h3 { color: var(--green); }
  .service-item p { font-size: 13px; color: #6a7d8a; line-height: 1.7; }

  /* ===== COLOR-BAND CTA (why-us pull quote, ESOP-style band) ===== */
  .cta-band {
    padding: 100px 48px;
    background: linear-gradient(135deg, rgba(30,92,46,0.07), rgba(200,150,10,0.13));
    text-align: center;
  }
  .cta-band-inner { max-width: 680px; margin: 0 auto; }
  .cta-band-inner .section-eyebrow { justify-content: center; }
  .cta-band h2 {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(30px, 3.8vw, 46px); line-height: 1.15; letter-spacing: -0.01em;
    color: var(--navy-dark);
  }
  .cta-band h2 .accent { color: var(--green); display: block; }
  .cta-band p { color: #5a6b78; font-size: 16px; line-height: 1.85; margin: 28px 0 36px; }

  /* ===== TWO-UP DRAMATIC PANELS ===== */
  .split-panels { display: grid; grid-template-columns: 1fr 1fr; }
  .split-panel {
    position: relative; height: 420px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #233029, #16201c);
  }
  .split-panel:nth-child(2) { background: linear-gradient(145deg, #1a2a35, #101b22); }
  .split-panel-overlay { position: absolute; inset: 0; background: rgba(13,15,14,0.25); }
  .split-panel-content { position: relative; z-index: 2; text-align: center; padding: 0 32px; }
  .split-panel-word {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(34px, 4.2vw, 52px); color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.01em;
  }
  .split-panel-caption {
    color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6;
    max-width: 320px; margin: 14px auto 0;
  }

  /* ===== PROJECTS CAROUSEL ===== */
  .projects { padding: 100px 0; background: var(--slate-teal); position: relative; }
  .projects-header { padding: 0 80px; margin-bottom: 56px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
  .projects-header h2.section-title { color: #fff; }
  .projects-header .section-eyebrow { color: var(--gold); }
  .projects-header .section-eyebrow::before { background: var(--gold); }
  .projects-scroll-wrap { position: relative; }
  .projects-scroll { display: flex; gap: 3px; overflow-x: auto; padding: 0 80px 20px; scrollbar-width: none; scroll-behavior: smooth; }
  .projects-scroll::-webkit-scrollbar { display: none; }
  .projects-arrow {
    position: absolute; top: 40%; z-index: 5;
    width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.3);
    background: rgba(13,15,14,0.4); color: #fff; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, border-color 0.2s;
  }
  .projects-arrow:hover { background: var(--gold); border-color: var(--gold); }
  .projects-arrow.prev { left: 24px; }
  .projects-arrow.next { right: 24px; }
  .project-card {
    min-width: 340px; height: 440px; position: relative; overflow: hidden; cursor: pointer; flex-shrink: 0;
    opacity: 0; transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .project-card.visible { opacity: 1; transform: translateX(0); }
  .project-card-bg {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, #1a2f1a, #2a3f1a);
    transition: transform 0.6s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .project-card:hover .project-card-bg { transform: scale(1.05); }
  .project-img-placeholder {
    color: rgba(255,255,255,0.2); font-size: 11px; letter-spacing: 0.12em; text-align: center;
    font-style: italic; padding: 20px;
  }
  .project-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
    z-index: 1;
  }
  .project-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; z-index: 2; transform: translateY(8px); transition: transform 0.3s; }
  .project-card:hover .project-card-info { transform: translateY(0); }
  .project-tag { display: inline-block; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 12px; }
  .project-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 25px; color: #fff; letter-spacing: 0; margin-bottom: 6px; }
  .project-card p { color: rgba(255,255,255,0.6); font-size: 13px; }

  /* ===== GALLERY (bento/mosaic grid) ===== */
  .gallery { padding: 100px 80px; background: #fff; }
  .gallery-header {
    text-align: center; margin-bottom: 56px;
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .gallery-header.visible { opacity: 1; transform: translateY(0); }
  .gallery-header .section-eyebrow { justify-content: center; }
  .gallery-header .section-desc { margin: 0 auto; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
    grid-template-areas:
      "large medium small1"
      "large medium small2"
      "large small3 small4";
    gap: 6px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .gallery-item {
    position: relative; overflow: hidden; background: linear-gradient(145deg, #1a2f1a, #2a3f1a);
    opacity: 0; transform: scale(0.94);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .gallery-item.visible { opacity: 1; transform: scale(1); }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item.large { grid-area: large; }
  .gallery-item.medium { grid-area: medium; }
  .gallery-item.small1 { grid-area: small1; }
  .gallery-item.small2 { grid-area: small2; }
  .gallery-item.small3 { grid-area: small3; }
  .gallery-item.small4 { grid-area: small4; }

  /* ===== VALUES ROW (compact why-points) ===== */
  .values-row { padding: 80px 48px; background: #fff; text-align: center; }
  .values-row .section-eyebrow { justify-content: center; }
  .values-row-inner { display: flex; justify-content: center; gap: 72px; flex-wrap: wrap; max-width: 900px; margin: 40px auto 0; }
  .value-item { text-align: center; max-width: 220px; }
  .value-icon { display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 10px; }
  .value-icon svg { width: 22px; height: 22px; }
  .value-label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a9baa; margin-bottom: 8px; }
  .value-word { font-family: 'Fraunces', serif; font-weight: 700; font-size: 24px; color: var(--green); text-transform: uppercase; letter-spacing: 0; display: block; margin-bottom: 8px; }
  .value-desc { font-size: 13px; color: #6a7d8a; line-height: 1.6; }

  /* ===== CLIENTS / TRUST BAR ===== */
  .trust { background: var(--off-white); padding: 56px 80px; }
  .trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
  .trust-inner p { font-size: 12px; color: #8a9baa; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 36px; }
  .trust-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }
  .trust-logo {
    height: 36px; display: flex; align-items: center;
    color: #b0bec7; font-size: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    opacity: 0.6; transition: opacity 0.2s;
  }
  .trust-logo:hover { opacity: 1; }

  /* ===== FINAL CTA BAND ===== */
  .final-cta { padding: 90px 48px; background: var(--sage-green); text-align: center; }
  .final-cta h2 {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(28px, 3.5vw, 42px); color: #fff; margin-bottom: 32px; letter-spacing: -0.01em;
  }

  /* ===== FOOTER ===== */
  footer { background: var(--black); padding: 64px 80px 40px; }
  .footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; max-width: 1200px; margin: 0 auto 56px; }
  .footer-logo-area img { height: 64px; margin-bottom: 20px; }
  .footer-tagline { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; max-width: 240px; }
  .footer-col h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px; letter-spacing: 0.02em; color: #fff; margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 14px; text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-contact p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; }
  .footer-contact strong { color: rgba(255,255,255,0.7); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; max-width: 1200px; margin: 0 auto; }
  .footer-bottom p { color: rgba(255,255,255,0.25); font-size: 13px; }
  .footer-badge { background: var(--green); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 12px; }

  /* ===== ANIMATIONS ===== */
  @keyframes slideUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes statPop { 0% { transform: scale(1); } 55% { transform: scale(1.1); } 100% { transform: scale(1); } }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .intro-photos { grid-template-columns: 1fr 1fr; }
    .intro-photos .intro-photo:nth-child(3) { display: none; }
    .services-row { justify-content: center; }
    .split-panels { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery { padding: 70px 48px; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px 180px 180px;
      grid-template-areas:
        "large medium"
        "large medium"
        "small1 small2"
        "small3 small4";
    }
  }
  @media (max-width: 768px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    #heroVideoDesktop { display: none; }
    #heroVideoMobile { display: block; }
    .hero-content { padding: 0 32px 40px; }
    .hero-cues {
      display: grid;
      align-content: center;
      position: absolute; z-index: 3;
      top: 0; bottom: 0; left: 32px; right: 32px;
    }
    .hero-cue {
      grid-area: 1 / 1;
      opacity: 0; visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
      font-family: 'Fraunces', serif; font-weight: 600;
      font-size: clamp(24px, 7.5vw, 34px); line-height: 1.22;
      color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.5);
      text-align: center;
    }
    .hero-cue.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .intro { padding: 60px 0 70px; }
    .intro-photos { grid-template-columns: 1fr 1fr; margin-bottom: 40px; }
    .intro-content { padding: 0 24px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .services { padding: 70px 24px; }
    .cta-band { padding: 70px 24px; }
    .values-row { padding: 60px 24px; }
    .values-row-inner { gap: 40px; }
    .projects-header, .projects-scroll { padding-left: 24px; padding-right: 24px; }
    .projects-arrow { display: none; }
    .gallery { padding: 60px 24px; }
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: 240px 160px 160px 160px 160px 160px;
      grid-template-areas:
        "large"
        "medium"
        "small1"
        "small2"
        "small3"
        "small4";
    }
    footer { padding: 48px 24px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .final-cta { padding: 60px 24px; }
    .contact-section { padding: 70px 24px; }
  }

  /* ===== MESSAGES ===== */
  .site-messages { position: fixed; top: 96px; right: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
  .site-message { padding: 14px 20px; font-size: 14px; font-weight: 600; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.25); animation: slideUp 0.4s ease both; }
  .site-message.success { background: var(--green); }
  .site-message.error { background: #b3261e; }

  /* ===== FORMS ===== */
  .form-field { margin-bottom: 20px; text-align: left; }
  .form-field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
  .site-form input[type="text"], .site-form input[type="email"], .site-form input[type="tel"], .site-form textarea, .site-form input[type="file"] {
    width: 100%; padding: 14px 16px; border: 1px solid var(--warm-gray); background: #fff; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--body-text);
  }
  .site-form textarea { resize: vertical; }
  .form-help { font-size: 12px; color: #8a9baa; margin-top: 6px; }
  .form-error { color: #b3261e; font-size: 13px; margin-top: 6px; }

  /* ===== CONTACT SECTION ===== */
  .contact-section { padding: 100px 80px; background: var(--off-white); }
  .contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
  .site-form { margin-top: 40px; text-align: left; }
