@font-face { font-family: 'Manrope'; src: url('../fonts/manrope-400.ttf') format('truetype'); font-weight: 400; font-display: swap; }
  @font-face { font-family: 'Manrope'; src: url('../fonts/manrope-500.ttf') format('truetype'); font-weight: 500; font-display: swap; }
  @font-face { font-family: 'Manrope'; src: url('../fonts/manrope-600.ttf') format('truetype'); font-weight: 600; font-display: swap; }
  @font-face { font-family: 'Manrope'; src: url('../fonts/manrope-700.ttf') format('truetype'); font-weight: 700; font-display: swap; }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --sand: #dfe2dc;
    --parchment: #f0f1ed;
    --warm: #fafaf7;
    --sepia: #535650;
    --sepia-dark: #1f211f;
    --sepia-mid: #60655d;
    --sepia-light: #c9cdc5;
    --accent: #756248;
    --eucalyptus: #667066;
    --border: rgba(31,33,31,0.17);
    --focus: #55645a;
    --content-width: 1280px;
    --page-gutter: clamp(1.5rem, calc(12vw - 1.5rem), 12rem);
    --section-space: clamp(4.5rem, 7vw, 7rem);
    --nav-height: 60px;
  }

  html { scroll-behavior: smooth; color-scheme: light; }

  body {
    font-family: 'Manrope', Arial, sans-serif;
    background: var(--warm);
    color: var(--sepia-dark);
    font-weight: 400;
    line-height: 1.7;
  }

  h1,
  h2,
  h3,
  .feat-title,
  .svc-title {
    font-family: Charter, 'Bitstream Charter', Georgia, serif;
    font-weight: 400;
  }

  a { text-decoration: none; }
  button, input, select, textarea { font: inherit; }
  img { max-width: 100%; }

  .skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 1001;
    padding: 0.75rem 1rem;
    background: var(--sepia-dark);
    color: var(--warm);
    transform: translateY(-150%);
  }
  .skip-link:focus { transform: translateY(0); }
  :focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--warm);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: var(--nav-height);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    width: 138px;
    height: 56px;
    flex-shrink: 0;
  }
  .nav-logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  nav ul { display: flex; gap: 2.25rem; list-style: none; }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-actions ul { margin-right: 0.75rem; }
  .nav-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--border);
    color: var(--sepia);
    background: transparent;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
  }
  .nav-icon:hover {
    color: var(--accent);
    border-color: rgba(117,98,72,0.5);
    background: var(--parchment);
  }
  .nav-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  .nav-phone { display: none; }

  nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sepia);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--accent); }
  nav ul a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  nav ul a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
  }
  nav ul a:hover::after,
  nav ul a[aria-current="true"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  nav ul a[aria-current="true"] { color: var(--accent); }
  .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--sepia-dark);
    font-size: 22px;
    cursor: pointer;
  }

  /* ── HERO ── */
  .hero {
    display: block;
    height: calc(100dvh - var(--nav-height));
    padding: 0;
    overflow: hidden;
  }

  .hero-row { height: 100%; margin: 0; }

  .hero-img,
  .hero-text { min-height: 0; }

  .hero-img {
    position: relative;
    overflow: hidden;
  }
  .hero-picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .hero-img .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    transform-origin: center bottom;
    animation: venue-enter 1.8s cubic-bezier(.16,.72,.24,1) both;
  }
  .hero-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(240px, 26vw, 460px);
    max-width: calc(100% - 3rem);
    max-height: 44%;
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 1px 2px rgba(255,255,255,1)) drop-shadow(0 0 10px rgba(255,255,255,0.92)) drop-shadow(0 0 22px rgba(255,255,255,0.68));
    display: block;
    z-index: 1;
    animation: brand-enter 1.15s .32s cubic-bezier(.16,.72,.24,1) both;
  }

  .hero-text {
    background: var(--parchment);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
    border-left: 1px solid var(--border);
  }

  .hero-text > div:last-child { display: block; }
  .hero-text .eyebrow,
  .hero-text h1,
  .hero-text .rule,
  .hero-text .hero-body,
  .hero-text > div:last-child {
    animation: copy-enter 0.75s cubic-bezier(.16,.72,.24,1) both;
  }
  .hero-text h1 { animation-delay: 0.08s; }
  .hero-text .rule { animation-delay: 0.16s; }
  .hero-text .hero-body { animation-delay: 0.22s; }
  .hero-text > div:last-child { animation-delay: 0.28s; }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sepia-mid);
    margin-bottom: 1.5rem;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
    color: var(--sepia-dark);
    margin-bottom: 1.75rem;
    text-wrap: balance;
  }
  h1 span { display: block; }
  h1 em { display: block; font-style: normal; font-weight: 400; color: var(--accent); }

  .rule {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--sepia-mid);
    margin-bottom: 1.75rem;
  }

  .hero-body {
    font-size: 16px;
    color: var(--sepia);
    line-height: 1.85;
    max-width: 46ch;
    margin-bottom: 2.5rem;
  }

  .btn {
    display: inline-block;
    padding: 13px 32px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
  }
  .btn-dark { background: var(--sepia-dark); color: var(--warm); border: 1px solid var(--sepia-dark); }
  .btn-dark:hover { background: var(--accent); border-color: var(--accent); }
  .btn-outline {
    background: transparent;
    color: var(--sepia-dark);
    border: 1px solid var(--sepia-light);
    margin-left: 0.75rem;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  .btn:active, .gallery-control:active, .lightbox-control:active, .nav-toggle:active, .btn-directions:active { transform: translateY(1px); }

  section { padding: var(--section-space) var(--page-gutter); }
  section[id] { scroll-margin-top: calc(var(--nav-height) - 1px); }

  /* ── ABOUT ── */
  .about { background: #fafaf7; }

  .about-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .about-row { --bs-gutter-x: 5rem; --bs-gutter-y: 2.5rem; align-items: center; }

  .sec-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sepia-mid);
    margin-bottom: 1.25rem;
  }

  h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    color: var(--sepia-dark);
    margin-bottom: 1.25rem;
    text-wrap: balance;
  }
  h2 span, h2 em { font-style: normal; font-weight: 400; color: var(--accent); }

  .body-text { max-width: 60ch; font-size: 15px; color: var(--sepia); line-height: 1.85; }
  .body-text p + p { margin-top: 0.9rem; }

  .feat { display: flex; flex-direction: column; }
  .feat-item { padding: 1.25rem 0 1.5rem; border-top: 1px solid var(--border); }
  .feat-item:first-child { padding-top: 0; border-top: 0; }
  .feat-title { font-size: 16px; font-weight: 400; color: var(--sepia-dark); margin-bottom: 0.35rem; }
  .feat-desc { max-width: 48ch; font-size: 14px; color: var(--sepia); line-height: 1.7; }

  /* ── GALLERY ── */
  .gallery-section {
    background: var(--parchment);
    padding: var(--section-space) var(--page-gutter);
    overflow: hidden;
  }
  .gallery-head {
    max-width: var(--content-width);
    margin: 0 auto 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 2rem;
    text-align: center;
  }
  .gallery-head > div:first-child { grid-column: 2; }
  .gallery-head .gallery-controls { grid-column: 3; justify-self: end; }
  .gallery-head h2 { margin-bottom: 0; }
  .gallery-controls { display: flex; align-items: center; gap: 0.5rem; }
  .gallery-position {
    min-width: 5.5rem;
    margin-right: 0.35rem;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--sepia-mid);
    text-align: right;
  }
  .gallery-control,
  .lightbox-control {
    border: 1px solid var(--sepia-light);
    background: transparent;
    color: var(--sepia-dark);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .gallery-control {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .gallery-control:hover {
    background: var(--sepia-dark);
    border-color: var(--sepia-dark);
    color: var(--warm);
  }
  .gallery-control:disabled {
    opacity: 0.36;
    cursor: default;
  }
  .gallery-control:disabled:hover {
    background: transparent;
    border-color: var(--sepia-light);
    color: var(--sepia-dark);
  }
  .gallery-control:focus-visible,
  .gallery-item:focus-visible,
  .lightbox-control:focus-visible {
    outline: 2px solid var(--sepia-mid);
    outline-offset: 2px;
  }
  .gallery-shell {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0;
  }
  .gallery-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    padding-bottom: 0.9rem;
  }
  .gallery-track::-webkit-scrollbar { height: 5px; }
  .gallery-track::-webkit-scrollbar-track { background: transparent; }
  .gallery-track::-webkit-scrollbar-thumb { background: var(--accent); }
  .gallery-item {
    position: relative;
    flex: 0 0 310px;
    height: 235px;
    border: 0;
    padding: 0;
    background: var(--sand);
    overflow: hidden;
    cursor: zoom-in;
    scroll-snap-align: start;
  }
  .gallery-item:nth-child(4n + 1) { flex-basis: 390px; }
  .gallery-item:nth-child(4n + 3) { flex-basis: 260px; }
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
  }
  .gallery-item picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .gallery-item:hover img { transform: scale(1.035); }
  .gallery-zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(47,37,28,0.84);
    color: var(--warm);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .gallery-item:hover .gallery-zoom,
  .gallery-item:focus-visible .gallery-zoom { opacity: 1; }

  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
    gap: 1rem;
    padding: 4.5rem 2rem 2rem;
    background: rgba(25,22,20,0.96);
  }
  .lightbox.is-open { display: grid; }
  body.lightbox-open { overflow: hidden; }
  .lightbox-figure {
    min-width: 0;
    height: calc(100vh - 7rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .lightbox-picture {
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: calc(100% - 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .lightbox-count {
    color: var(--sepia-light);
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .lightbox-control {
    width: 52px;
    height: 52px;
    border-color: rgba(255,255,255,0.28);
    color: var(--warm);
    font-size: 28px;
  }
  .lightbox-control:hover { background: rgba(255,255,255,0.12); }
  .lightbox-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 26px;
  }

  /* ── SERVICES ── */
  .services { background: var(--warm); }

  .services-head { max-width: var(--content-width); margin: 0 auto 3rem; padding-left: 0; padding-right: 0; text-align: center; }
  .services-head h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
  }
  .services-head h2 span { display: block; }

  .svc-grid {
    max-width: var(--content-width);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .svc-row { margin: 0; counter-reset: service-item; }

  .svc-card {
    counter-increment: service-item;
    min-height: 0;
    padding: 2.7rem 1.75rem 2.5rem;
    background: transparent;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .svc-card::before {
    content: counter(service-item, decimal-leading-zero);
    display: block;
    margin-bottom: 0.8rem;
    font-family: Charter, 'Bitstream Charter', Georgia, serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    color: var(--sepia-light);
  }
  .svc-card:nth-child(3n) { border-right: 0; }
  .svc-card:nth-child(n + 4) { border-bottom: 0; }
  .svc-title { max-width: 22ch; font-family: Charter, 'Bitstream Charter', Georgia, serif; font-size: 14px; font-weight: 400; line-height: 1.4; color: var(--sepia-dark); margin-bottom: 0.5rem; }
  .svc-desc { max-width: 48ch; font-size: 13px; color: var(--sepia); line-height: 1.7; }

  /* ── MAP ── */
  .map-section { background: var(--sand); }

  .map-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0;
  }

  .map-row { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; align-items: flex-start; }

  .map-info { padding-top: 0.5rem; }

  .contact-list {
    list-style: none;
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .ci { font-size: 14px; color: var(--sepia); line-height: 1.65; }
  .ci a {
    color: inherit;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .ci a:hover { border-bottom-color: var(--sepia-mid); }
  .ci strong {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2px;
  }

  .map-embed {
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
  }
  .map-embed iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
  }
  .map-consent {
    min-height: 380px;
    padding: 2rem;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
    background: var(--parchment);
  }
  .map-consent[hidden],
  .map-embed iframe[hidden] { display: none; }
  .map-consent p { max-width: 48ch; font-size: 13px; color: var(--sepia); }
  .map-consent .btn-directions { margin-top: 1.25rem; }

  .btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding: 11px 24px;
    background: var(--sand);
    border: 1px solid var(--sepia-light);
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sepia-dark);
    cursor: pointer;
    border-radius: 0;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    text-decoration: none;
  }
  .btn-directions:hover { border-color: var(--accent); color: var(--accent); }

  /* ── FORM ── */
  .form-section { background: var(--parchment); }

  .form-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .form-intro {
    font-size: 14px;
    color: var(--sepia);
    margin-top: 0.5rem;
    max-width: 54ch;
    margin-left: auto;
    margin-right: auto;
  }

  .form-grid {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.9rem;
    margin-top: 2.5rem;
    text-align: left;
  }

  .fg { display: flex; flex-direction: column; gap: 5px; }

  .fg label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sepia);
  }

  .fg input,
  .fg textarea,
  .fg select {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    padding: 11px 14px;
    background: var(--warm);
    border: 1px solid var(--sepia-light);
    border-radius: 0;
    color: var(--sepia-dark);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }
  .fg select {
    -webkit-appearance: auto;
    appearance: auto;
  }

  .fg input:focus,
  .fg textarea:focus,
  .fg select:focus { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
  .fg input[aria-invalid="true"],
  .fg textarea[aria-invalid="true"],
  .fg select[aria-invalid="true"],
  .privacy-check input[aria-invalid="true"] { border-color: #a33f37; }
  .field-error { min-height: 1.1rem; color: #8c342e; font-size: 12px; line-height: 1.4; }

  .fg textarea { resize: vertical; min-height: 115px; }

  .form-required { margin-top: 1rem; font-size: 12px; color: var(--sepia-mid); }
  .privacy-summary { max-width: 920px; margin: 1.25rem auto 0; text-align: left; font-size: 12px; line-height: 1.65; color: var(--sepia); }
  .privacy-summary a { color: var(--accent); border-bottom: 1px solid currentColor; }
  .privacy-check-wrap { margin-top: 0.75rem; text-align: left; }
  .privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 920px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.6;
    color: var(--sepia);
  }
  .privacy-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 18px;
    accent-color: var(--accent);
  }
  .privacy-check a { color: var(--accent); border-bottom: 1px solid currentColor; }
  .privacy-check-wrap .field-error { display: block; max-width: 920px; margin: 0.25rem auto 0; padding-left: 1.85rem; }
  .form-trap { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
  .form-submit { margin-top: 1.5rem; text-align: center; }
  .form-submit .btn:disabled { cursor: wait; opacity: 0.62; }
  .form-legal-note { max-width: 720px; margin: 0.85rem auto 0; font-size: 12px; line-height: 1.6; color: var(--sepia-mid); }

  .success-msg {
    display: none;
    margin-top: 1rem;
    padding: 1.25rem;
    background: var(--warm);
    border: 1px solid var(--sepia-light);
    border-radius: 0;
    font-size: 14px;
    color: var(--sepia);
    font-style: italic;
  }
  .success-msg.is-error { color: #8c342e; border-color: rgba(140,52,46,0.42); }

  /* ── FOOTER ── */
  footer {
    background: var(--sepia-dark);
    color: var(--sepia-light);
    border-top: 1px solid var(--border);
    text-align: left;
    padding: 3.5rem var(--page-gutter) 0;
    font-size: 13px;
  }
  .footer-inner { max-width: var(--content-width); padding: 0; }
  .footer-row { --bs-gutter-x: clamp(2rem, 5vw, 5rem); --bs-gutter-y: 2.5rem; }
  .footer-col { min-width: 0; }
  footer .logo {
    display: block;
    width: min(220px, 100%);
    margin: 0 0 1.25rem;
  }
  footer .logo img {
    display: block;
    width: 100%;
    height: auto;
  }
  footer .copy {
    display: block;
    font-size: 11px;
    color: rgba(201,205,197,0.58);
  }
  footer a { color: inherit; }
  footer a:hover { color: var(--warm); }
  .footer-heading { margin-bottom: 1rem; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm); }
  .footer-company { color: var(--sepia-light); line-height: 1.65; }
  .footer-company > strong { display: block; margin-bottom: 0.2rem; font-weight: 500; color: var(--warm); }
  .footer-company-name { margin-bottom: 0.15rem; }
  .footer-company-meta { margin-bottom: 1rem; font-size: 12px; color: rgba(201,205,197,0.72); }
  .footer-address-label { display: block; font-weight: 500; color: var(--warm); }
  .footer-list { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-width: 0;
    color: var(--sepia-light);
    line-height: 1.55;
  }
  .footer-item svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 0.2rem; fill: currentColor; color: rgba(201,205,197,0.72); }
  a.footer-item { transition: color 0.2s; }
  .footer-legal { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(201,205,197,0.18); }
  .footer-bottom { margin-top: 2.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(201,205,197,0.18); text-align: center; }
  .footer-bottom a { color: var(--sepia-light); border-bottom: 1px solid rgba(201,205,197,0.45); }
  .footer-funding-band {
    margin: 2rem calc(-1 * var(--page-gutter)) 0;
    padding: 1rem var(--page-gutter);
    background: #fff;
  }
  .footer-funding-link {
    display: block;
    width: min(512px, 50%);
    margin: 0 auto;
    color: var(--sepia-dark);
  }
  .footer-funding-link:hover { color: var(--sepia-dark); }
  .footer-funding-link img {
    display: block;
    width: 100%;
    height: auto;
  }

  @keyframes venue-enter {
    0% { opacity: .72; transform: scale(1.055); }
    42% { opacity: 1; }
    100% { opacity: 1; transform: scale(1); }
  }

  @keyframes brand-enter {
    0% { opacity: 0; transform: translate(-50%, -44%) scale(.9); }
    68% { opacity: 1; transform: translate(-50%, -51%) scale(1.015); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  }

  @keyframes copy-enter {
    0% { opacity: 0; transform: translateY(14px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @media (min-width: 768px) and (max-width: 991.98px) {
    .svc-card:nth-child(3n) { border-right: 1px solid var(--border); }
    .svc-card:nth-child(2n) { border-right: 0; }
    .svc-card:nth-child(n + 4) { border-bottom: 1px solid var(--border); }
    .svc-card:nth-child(n + 5) { border-bottom: 0; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 767.98px) {
    nav { height: var(--nav-height); padding: 0 clamp(1rem, 4vw, 1.5rem); }
    .nav-logo { width: 120px; height: 54px; }
    .nav-actions { gap: 0.375rem; }
    .nav-actions ul { margin-right: 0; }
    .nav-phone { display: inline-grid; }
    .nav-toggle { display: grid; place-items: center; }
    nav ul {
      position: absolute;
      top: var(--nav-height);
      left: 0;
      right: 0;
      display: none;
      flex-direction: column;
      gap: 0;
      padding: 0.75rem 1.5rem 1.25rem;
      background: var(--warm);
      border-bottom: 1px solid var(--border);
    }
    nav ul.is-open { display: flex; }
    nav li + li { border-top: 1px solid var(--border); }
    nav ul a { display: block; padding: 0.8rem 0; }
    nav ul a::after { bottom: 7px; right: auto; width: 2.5rem; }

    .hero { height: auto; min-height: auto; }
    .hero-row { height: auto; }
    .hero-img { height: clamp(220px, min(62vw, 48svh), 420px); }
    .hero-brand {
      width: clamp(210px, 68vw, 360px);
      max-width: calc(100% - 2rem);
      max-height: 58%;
    }
    .hero-text { display: block; padding: 2.5rem 1.5rem; }
    .hero-text .eyebrow,
    .hero-text h1,
    .hero-text .hero-body,
    .hero-text > div:last-child { display: block; }
    h1 { font-size: clamp(38px, 12vw, 52px); }

    section { padding: 3.5rem 1.5rem; }

    .about-row { --bs-gutter-x: 0; }

    .gallery-section { padding: 3.5rem 1.5rem; }
    .gallery-head { grid-template-columns: 1fr; padding: 0; align-items: center; gap: 1.25rem; }
    .gallery-head > div:first-child,
    .gallery-head .gallery-controls { grid-column: 1; justify-self: center; }
    .gallery-position { min-width: auto; margin-right: 0.25rem; }
    .gallery-shell { padding: 0; }
    .gallery-item,
    .gallery-item:nth-child(4n + 1),
    .gallery-item:nth-child(4n + 3) { flex-basis: 82vw; height: 60vw; max-height: 320px; }
    .gallery-zoom { opacity: 1; }

    .lightbox {
      grid-template-columns: 1fr;
      padding: 4rem 1rem 1rem;
    }
    .lightbox-figure { height: calc(100vh - 5rem); }
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
      background: rgba(25,22,20,0.65);
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .svc-card { min-height: 0; border-right: 0; border-bottom: 0; }
    .svc-card + .svc-card { border-top: 1px solid var(--border); }

    .map-section { padding: 3.5rem 1.5rem; }
    .map-inner { padding: 0; }

    .btn-outline { margin-left: 0; margin-top: 0.75rem; display: inline-block; }
    .privacy-check-wrap .field-error { padding-left: 0; }
    footer { padding-left: 1.5rem; padding-right: 1.5rem; }
    .footer-brand { text-align: center; }
    footer .logo { margin-left: auto; margin-right: auto; }
    .footer-col + .footer-col { padding-top: 2rem; border-top: 1px solid rgba(201,205,197,0.18); }
    .footer-bottom { margin-top: 2.25rem; }
    .footer-funding-band {
      margin-right: -1.5rem;
      margin-left: -1.5rem;
      padding: 0.85rem 1rem;
    }
  }

  @media (max-width: 359.98px) {
    .nav-logo { width: 104px; }
    .nav-icon,
    .nav-toggle { width: 40px; height: 40px; flex-basis: 40px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0s !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  }
