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

  :root {
    --cream: #F5F0E8;
    --dark: #1A1A14;
    --charcoal: #2D2D24;
    --gold: #B8923A;
    --gold-light: #D4AA5A;
    --stone: #8C8678;
    --light-stone: #C8C2B8;
    --white: #FDFCFA;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--cream);
    font-weight: 300;
    overflow-x: hidden;
  }

  /* NAV */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(26,26,20,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,146,58,0.2);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
  }

  .logo-image {
    display: block;
    width: clamp(150px, 13vw, 180px);
    height: auto;
    object-fit: contain;
  }

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

  .nav-links a {
    position: relative;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light-stone);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 28px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    color: var(--gold-light);
  }

  .nav-links a:hover::after,
  .nav-links a.is-active::after {
    transform: scaleX(1);
  }

  .nav-cta {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--gold-light); }

  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184,146,58,0.35);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .nav-toggle span {
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
  }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex; align-items: flex-end;
    padding: 0 3rem 6rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--dark);
  }

  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom, rgba(26,26,20,0.25) 0%, rgba(26,26,20,0.68) 62%, rgba(26,26,20,0.96) 100%),
      linear-gradient(to right, rgba(26,26,20,0.78) 0%, rgba(26,26,20,0.4) 45%, rgba(26,26,20,0.18) 100%);
    pointer-events: none;
  }

  .hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.12);
    filter: saturate(0.92) contrast(1.04);
    animation: heroZoomFade 30s infinite ease-in-out;
    will-change: opacity, transform;
  }

  .hero-slide:nth-child(2) { animation-delay: 6s; }
  .hero-slide:nth-child(3) { animation-delay: 12s; }
  .hero-slide:nth-child(4) { animation-delay: 18s; }
  .hero-slide:nth-child(5) { animation-delay: 24s; }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 1rem;
  }

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

  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-desc {
    font-size: 1rem;
    color: var(--light-stone);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex; gap: 1.25rem; align-items: center;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--dark);
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
    border: none; cursor: pointer;
  }

  .btn-primary:hover { background: var(--gold-light); }

  .btn-ghost {
    color: var(--cream);
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 1px solid rgba(245,240,232,0.3);
    transition: border-color 0.2s;
    display: inline-block;
  }

  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

  .hero-stats {
    position: absolute;
    z-index: 2;
    right: 3rem; bottom: 6rem;
    display: flex; flex-direction: column; gap: 2rem;
    text-align: right;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 2px;
  }

  /* SERVICES */
  #services {
    background: var(--charcoal);
    padding: 7rem 3rem;
  }

  .section-header {
    display: flex; align-items: baseline; gap: 2rem;
    margin-bottom: 4rem;
  }

  .section-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
  }

  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: rgba(184,146,58,0.15);
    border: 1px solid rgba(184,146,58,0.15);
  }

  .service-card {
    background: var(--charcoal);
    padding: 2.5rem 2rem;
    transition: background 0.2s;
    cursor: default;
  }

  .service-card:hover {
    background: #343428;
  }

  .service-icon {
    width: 48px; height: 48px;
    margin-bottom: 1.5rem;
    color: var(--gold);
  }

  .service-icon svg { width: 100%; height: 100%; }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
  }

  .service-desc {
    font-size: 0.875rem;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ABOUT STRIP */
  #about {
    padding: 7rem 3rem;
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-body {
    font-size: 0.95rem;
    color: var(--light-stone);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .about-list li {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    display: flex; align-items: center; gap: 1rem;
  }

  .about-list li::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .about-visual {
    position: relative;
  }

  .about-box {
    background: var(--charcoal);
    border: 1px solid rgba(184,146,58,0.2);
    padding: 3rem;
    position: relative;
  }

  .about-box::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    width: 100%; height: 100%;
    border: 1px solid rgba(184,146,58,0.1);
  }

  .about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .about-cite {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* AREAS */
  #areas {
    padding: 7rem 3rem;
    background: #24241c;
  }

  .areas-intro {
    max-width: 760px;
    color: var(--light-stone);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 3rem;
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(184,146,58,0.15);
    border: 1px solid rgba(184,146,58,0.15);
  }

  .area-card {
    background: #24241c;
    padding: 2rem;
  }

  .area-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .area-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .area-list li {
    border: 1px solid rgba(184,146,58,0.25);
    color: var(--light-stone);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 0.75rem;
  }

  /* PROJECTS */
  #projects {
    padding: 7rem 3rem;
    background: var(--charcoal);
  }

  .projects-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1px;
    background: rgba(184,146,58,0.1);
    margin-top: 3rem;
  }

  .project-tile {
    background: var(--dark);
    aspect-ratio: 4/3;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
  }

  .project-tile:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
  }

  .project-tile.tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .project-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(to top, rgba(26,26,20,0.92) 0%, rgba(26,26,20,0.5) 48%, rgba(26,26,20,0.18) 100%),
      linear-gradient(135deg, rgba(184,146,58,0.26), transparent 42%);
  }

  .tile-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
    transform: scale(1.02);
    transition: transform 0.45s ease, filter 0.45s ease;
  }

  .project-tile:hover .tile-image {
    filter: saturate(1) contrast(1.08);
    transform: scale(1.07);
  }

  .tile-content {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  }

  .tile-tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
  }

  .tile-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
  }

  .projects-cta {
    margin-top: 3rem;
    text-align: center;
  }

  .image-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(26,26,20,0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .image-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .image-modal img {
    max-width: 100%;
    max-height: 92vh;
    object-fit: contain;
  }

  .image-modal-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--white);
    font: 300 2.5rem/1 'Barlow', sans-serif;
    cursor: pointer;
  }

  .image-modal-close:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
  }

  body.modal-open {
    overflow: hidden;
  }

  /* CONTACT */
  #contact {
    padding: 7rem 3rem;
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-info h2 { margin-bottom: 1.5rem; }

  .contact-body {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    width: 80px;
    flex-shrink: 0;
    padding-top: 2px;
  }

  .contact-value {
    font-size: 0.9rem;
    color: var(--light-stone);
    font-weight: 300;
    line-height: 1.6;
  }

  .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

  .contact-form.is-submitted > :not(#form-success) {
    display: none;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

  .form-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
  }

  .form-input {
    background: var(--charcoal);
    border: 1px solid rgba(140,134,120,0.3);
    color: var(--cream);
    padding: 0.875rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: var(--stone); opacity: 0.5; }

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

  .form-select {
    background: var(--charcoal);
    border: 1px solid rgba(140,134,120,0.3);
    color: var(--cream);
    padding: 0.875rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    width: 100%;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  /* FOOTER */
  footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(184,146,58,0.3);
    padding: 4rem 3rem 2rem;
  }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 1fr; gap: 3rem; }
  .footer-logo { display: inline-block; }
  .footer-logo-image { display: block; width: 190px; max-width: 100%; height: auto; }
  .footer-heading { font-size: 1.4rem; margin-bottom: 1.25rem; }
  .footer-summary { color: var(--light-stone); font-size: 0.875rem; line-height: 1.8; margin: 1rem 0 1.5rem; max-width: 360px; }
  .footer-links { list-style: none; display: grid; gap: 0.85rem; }
  footer a { color: var(--light-stone); text-decoration: none; font-size: 0.875rem; line-height: 1.6; }
  footer a:hover { color: var(--gold-light); }
  footer a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
  footer .btn-primary { color: var(--dark); }
  .footer-social { color: var(--gold-light); }
  .footer-coverage { margin-top: 3rem; padding: 1.5rem 0; border-top: 1px solid rgba(184,146,58,0.2); border-bottom: 1px solid rgba(184,146,58,0.2); display: flex; align-items: baseline; gap: 2rem; }
  .footer-coverage p { font-size: 0.85rem; line-height: 1.8; color: var(--light-stone); max-width: 850px; }
  .footer-coverage a { text-decoration: underline; text-underline-offset: 3px; }
  .footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
  .footer-copy, .footer-bottom a { font-size: 0.75rem; color: var(--light-stone); }
  section[id], .service-card[id] { scroll-margin-top: 110px; }

  .mobile-cta { display: none; }

  /* GOLD LINE DIVIDER */
  .gold-line {
    width: 40px; height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
  }

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

  @keyframes heroZoomFade {
    0% {
      opacity: 0;
      transform: scale(1.12);
    }
    1.5% {
      opacity: 1;
    }
    19.5% {
      opacity: 1;
    }
    21.5% {
      opacity: 0;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(1);
    }
  }

  .hero-content > * {
    animation: fadeUp 0.8s ease both;
  }

  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.25s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.55s; }

  @media (max-width: 900px) {
    .site-nav {
      padding: 1rem 1.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .nav-links {
      order: 3;
      width: 100%;
      justify-content: center;
      gap: 1.25rem;
    }

    .nav-cta {
      padding: 0.55rem 1rem;
    }

    #hero {
      min-height: auto;
      padding: 11rem 1.5rem 4rem;
      align-items: flex-start;
      flex-direction: column;
      gap: 3rem;
    }

    .hero-stats {
      position: static;
      width: 100%;
      flex-direction: row;
      justify-content: space-between;
      gap: 1rem;
      text-align: left;
      padding-top: 2rem;
      border-top: 1px solid rgba(184,146,58,0.2);
    }

    #services,
    #areas,
    #projects {
      padding: 5rem 1.5rem;
    }

    #about,
    #contact {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 5rem 1.5rem;
    }

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

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

    footer {
      padding: 2rem 1.5rem;
      text-align: left;
    }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-coverage { flex-direction: column; gap: 0.75rem; }
  }

  @media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    body { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }

    .mobile-cta {
      display: block;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 90;
      padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
      background: var(--dark);
      border-top: 1px solid rgba(184,146,58,0.25);
      box-shadow: 0 -6px 24px rgba(0,0,0,0.2);
      visibility: hidden;
      transform: translateY(100%);
      transition: transform 0.25s ease, visibility 0.25s;
    }

    .mobile-cta.is-visible {
      visibility: visible;
      transform: translateY(0);
    }

    .mobile-cta .btn-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      width: 100%;
    }

    .mobile-cta .btn-primary:focus-visible {
      outline: 2px solid var(--cream);
      outline-offset: 3px;
    }

    .site-nav {
      position: sticky;
      top: 0;
      padding: 0.85rem 1rem;
      justify-content: space-between;
      text-align: left;
      gap: 0.75rem;
    }

    .nav-logo {
      width: auto;
      flex: 1;
      min-width: 0;
      justify-content: flex-start;
    }

    .logo-image {
      width: min(46vw, 155px);
    }

    .nav-toggle {
      display: flex;
      flex-shrink: 0;
    }

    .nav-links {
      display: none;
      order: 3;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(184,146,58,0.18);
    }

    .site-nav.is-open .nav-links {
      display: flex;
    }

    .nav-links li {
      width: 100%;
    }

    .nav-links a {
      display: block;
      padding: 0.85rem 0;
    }

    .nav-links a::after {
      bottom: 0.55rem;
    }

    .nav-links a,
    .nav-cta,
    .btn-primary,
    .btn-ghost {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
    }

    .nav-cta {
      display: none;
      order: 4;
      width: 100%;
      max-width: none;
      text-align: center;
      padding: 0.85rem 1rem;
    }

    .site-nav.is-open .nav-cta {
      display: block;
    }

    #hero {
      padding: 4rem 1rem;
    }

    .hero-slide {
      object-position: center;
    }

    .hero-slide-level {
      object-position: left center;
    }

    .hero-eyebrow {
      align-items: flex-start;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      line-height: 1.5;
    }

    .hero-eyebrow::before {
      width: 24px;
      margin-top: 0.45rem;
      flex-shrink: 0;
    }

    h1 {
      font-size: clamp(2.7rem, 15vw, 3.7rem);
    }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
      width: 100%;
      text-align: center;
      padding: 0.95rem 1.25rem;
    }

    .hero-stats {
      flex-direction: column;
      text-align: center;
    }

    .stat-num {
      font-size: 2.4rem;
    }

    #services,
    #areas,
    #projects {
      padding: 4rem 1rem;
    }

    #about,
    #contact {
      padding: 4rem 1rem;
      gap: 2.5rem;
    }

    .section-header {
      display: block;
      margin-bottom: 2.5rem;
    }

    .section-eyebrow {
      display: block;
      margin-bottom: 0.85rem;
      white-space: normal;
      line-height: 1.5;
    }

    .services-grid,
    .areas-grid,
    .projects-mosaic,
    .form-row {
      grid-template-columns: 1fr;
    }

    .service-card,
    .area-card,
    .project-tile {
      padding: 1.75rem 1.25rem;
    }

    .project-tile,
    .project-tile.tall {
      aspect-ratio: 4/3;
    }

    .about-box {
      padding: 2rem 1.25rem;
    }

    .about-box::before {
      top: -5px;
      left: -5px;
    }

    .about-quote {
      font-size: 1.35rem;
    }

    .contact-detail {
      flex-direction: column;
      gap: 0.35rem;
    }

    .contact-label {
      width: auto;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-cta { transition: none; }

    .hero-slide {
      animation: none;
      transform: scale(1.03);
    }

    .hero-slide:first-child {
      opacity: 1;
    }
  }

/* Service and local guides */
.text-link { display: inline-block; margin-top: 1.25rem; color: var(--gold-light); font-size: 0.85rem; line-height: 1.6; text-decoration: underline; text-underline-offset: 4px; }
.area-list a { color: inherit; text-underline-offset: 3px; }
.location-guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 0 0 3rem; }
.location-guides > a { display: block; padding: 1.5rem 0; border-top: 1px solid var(--gold); text-decoration: none; color: var(--cream); }
.location-guides h3 { font: 400 1.75rem/1.2 'Cormorant Garamond', serif; margin: 0.85rem 0; }
.location-guides p { font-size: 0.9rem; color: var(--light-stone); line-height: 1.7; }
.location-guides a:hover h3, .text-link:hover { color: var(--gold-light); }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 1100; padding: 1rem; background: var(--gold); color: var(--dark); }
.skip-link:focus { top: 1rem; }
a:focus-visible, summary:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.detail-page #hero { min-height: 85vh; min-height: 85svh; display: flex; align-items: center; padding: 10rem 3rem 5rem; }
.detail-page #hero::before { display: block; }
.detail-hero-copy { position: relative; z-index: 2; min-width: 0; width: 100%; max-width: 760px; }
.detail-hero h1 { font-size: clamp(2.8rem, 4.6vw, 5rem); line-height: 1.06; }
.detail-hero .hero-desc { max-width: 620px; }
.detail-hero .hero-actions { flex-wrap: wrap; }
.breadcrumbs { color: var(--light-stone); font-size: 0.75rem; line-height: 1.7; margin-bottom: 2.5rem; }
.breadcrumbs a { color: var(--light-stone); text-underline-offset: 3px; }
.detail-hero-image { position: absolute; inset: 0; z-index: 0; min-width: 0; margin: 0; }
.detail-hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.detail-hero-image figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.detail-layout { max-width: 1440px; margin: 0 auto; padding: 4rem 3rem 5rem; display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); gap: 6rem; border-top: 1px solid rgba(184,146,58,0.2); }
.detail-section { margin-bottom: 3rem; }
.detail-section h2 { margin-bottom: 1.25rem; font-size: clamp(2rem, 3vw, 2.75rem); }
.detail-section p, .project-brief p, .project-brief li { font-size: 1rem; line-height: 1.85; color: var(--light-stone); margin-bottom: 1rem; }
.project-brief { align-self: start; background: var(--charcoal); border-top: 2px solid var(--gold); padding: 2rem; }
.project-brief h2 { font-size: 2rem; margin: 0.8rem 0 1.25rem; }
.project-brief ul { padding-left: 1.1rem; margin: 1.5rem 0; }
.project-brief li { padding-left: 0.3rem; font-size: 0.9rem; }
.project-brief li::marker { color: var(--gold); }
.project-brief .btn-primary { width: 100%; text-align: center; padding: 1rem; }
.project-brief .brief-note { font-size: 0.8rem; margin-top: 1.25rem; }
.detail-section details { border-top: 1px solid rgba(184,146,58,0.3); padding: 1.25rem 0; }
.detail-section details:last-child { border-bottom: 1px solid rgba(184,146,58,0.3); }
.detail-section summary { cursor: pointer; color: var(--cream); font-weight: 500; font-size: 1rem; line-height: 1.6; }
.detail-section details p { margin: 1rem 0 0; }
.official-resource { margin: -1rem 0 3rem; font-size: 0.85rem; line-height: 1.7; }
.official-resource a { color: var(--gold-light); text-underline-offset: 4px; }
.related-section { padding: 4rem 3rem; background: var(--charcoal); }
.related-section h2 { margin: 1rem 0 2rem; }
.related-section h3 { margin: 2.5rem 0 1.25rem; font: 400 1.6rem 'Cormorant Garamond', serif; }
.related-links { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; }
.related-links a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 4px; line-height: 1.8; }
.detail-enquiry { padding: 5rem 3rem; }
.detail-enquiry h2 { margin: 1rem 0; }
.detail-enquiry p { color: var(--light-stone); max-width: 650px; line-height: 1.8; margin-bottom: 2rem; }
.detail-enquiry .hero-actions { flex-wrap: wrap; }
@media (max-width: 1100px) {
  .detail-layout { gap: 3rem; }
}
@media (max-width: 900px) {
  .detail-page #hero { padding: 12rem 1.5rem 3rem; }
  .detail-layout { padding: 3rem 1.5rem; grid-template-columns: 1fr; gap: 1rem; }
  .project-brief { max-width: 650px; }
  .related-section, .detail-enquiry { padding: 3rem 1.5rem; }
}
@media (max-width: 600px) {
  .location-guides { grid-template-columns: 1fr; gap: 0.5rem; }
  .detail-page #hero { padding: 4rem 1rem; }
  .detail-hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .breadcrumbs { margin-bottom: 2rem; }
  .detail-layout { padding: 3rem 1rem; }
  .project-brief { padding: 1.5rem; }
  .related-section, .detail-enquiry { padding: 3rem 1rem; }
  .related-links { flex-direction: column; gap: 0.85rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content > * { animation: none; }
}

/* Direct contact links */
.contact-email { display: block; overflow-wrap: anywhere; text-underline-offset: 4px; }
footer .contact-email { margin-top: 1rem; }
.footer-phone { padding: 0.85rem 1rem; }
.contact-detail .contact-email { min-width: 0; }

/* Optional project photographs */
.photo-field { position: relative; }
.photo-input { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.photo-picker { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1rem; padding: 1rem; border: 1px dashed var(--stone); cursor: pointer; color: var(--light-stone); font-size: 0.85rem; line-height: 1.6; }
.photo-picker-action { color: var(--gold-light); font-weight: 500; }
.photo-picker:hover { border-color: var(--gold-light); }
.photo-input:focus-visible + .photo-picker { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.photo-input:disabled + .photo-picker { opacity: 0.5; cursor: wait; }
.photo-help, .photo-status { font-size: 0.8rem; line-height: 1.7; color: var(--light-stone); }
.photo-status { color: var(--gold-light); }
.photo-list { list-style: none; margin: 0.5rem 0; }
.photo-item { display: flex; align-items: center; gap: 1rem; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(184,146,58,0.2); }
.photo-file { min-width: 0; }
.photo-name, .photo-size { display: block; overflow-wrap: anywhere; font-size: 0.85rem; line-height: 1.6; }
.photo-size { font-size: 0.75rem; color: var(--light-stone); }
.photo-remove { flex-shrink: 0; min-height: 44px; padding: 0.5rem; font: inherit; font-size: 0.8rem; color: var(--gold-light); background: transparent; border: 1px solid var(--stone); cursor: pointer; }
.photo-remove:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.photo-remove:disabled { opacity: 0.5; cursor: wait; }
