:root {
  --bg: #07090e;
  --bg-elev: #0f141d;
  --ink: #e8edf5;
  --muted: #c5ced9b3;
  --accent: #d8af6f;
  --line: #ffffff1f;
  --card: #0b1018d9;
  --header-offset: 96px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 12px);
}

body {
  font-family: "Syne", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

html.intro-active,
html.intro-active body {
  overflow: hidden;
}

.site-shell {
  position: relative;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 24%, #ffffff0b 0, transparent 28%),
    linear-gradient(180deg, #090b0ef2 0%, #040507f6 52%, #000000fb 100%);
  isolation: isolate;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

.intro-overlay.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(84vw, 540px);
}

.intro-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff18 0, #ffffff08 38%, transparent 72%);
  filter: blur(20px);
  opacity: 0;
  transform: translate(-50%, -56%) scale(0.82);
}

.intro-logo-liquid {
  --intro-logo-size: clamp(280px, 42vw, 500px);
  position: relative;
  width: var(--intro-logo-size);
  aspect-ratio: 1;
}

.intro-logo-visual {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(18px) scale(0.9);
  will-change: opacity, transform;
}

.intro-logo-canvas,
.intro-logo-source {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-logo-canvas {
  image-rendering: auto;
}

.intro-logo-source {
  opacity: 0;
  pointer-events: none;
}

.intro-wordmark {
  margin: 0;
  color: #181d24b5;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  opacity: 0;
  transform: translateY(10px);
}

.intro-overlay.is-playing .intro-glow {
  animation: intro-glow-pulse 920ms cubic-bezier(0.2, 0.86, 0.2, 1) forwards;
}

.intro-overlay.is-playing .intro-logo-visual {
  animation: intro-logo-enter 760ms cubic-bezier(0.2, 0.86, 0.2, 1) forwards;
}

.intro-overlay.is-playing .intro-wordmark {
  animation: intro-wordmark-in 460ms ease forwards 180ms;
}

.intro-overlay.is-finishing .intro-wordmark {
  animation: intro-wordmark-out 420ms ease forwards;
}

.intro-overlay.is-finishing .intro-stage {
  animation: intro-stage-exit 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes intro-glow-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -56%) scale(0.82);
  }
  100% {
    opacity: 0.88;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes intro-logo-enter {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.9);
  }
  56% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-wordmark-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-wordmark-out {
  to {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes intro-stage-exit {
  to {
    opacity: 0;
    transform: translateY(-16px) scale(0.985);
  }
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at 15% 18%, #1a243433 0, transparent 42%),
    radial-gradient(circle at 85% 8%, #d8af6f26 0, transparent 36%),
    linear-gradient(150deg, #05070b 0%, #0c121b 48%, #06090f 100%);
}

.scroll-gallery {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.scroll-shot {
  position: absolute;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ffffff17;
  opacity: 0;
  transform: translate3d(var(--x), calc(var(--y) + var(--scroll, 0px)), 0);
  transition: opacity 380ms ease;
  box-shadow: 0 28px 70px #00000080;
  will-change: transform, opacity;
}

.scroll-shot.visible {
  opacity: 0.3;
}

.scroll-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.72) contrast(1.05) brightness(0.45);
}

.scroll-shot:nth-child(1) {
  width: min(34vw, 480px);
  height: min(23vw, 320px);
  --x: 5vw;
  --y: 12vh;
}

.scroll-shot:nth-child(2) {
  width: min(23vw, 340px);
  height: min(37vw, 520px);
  --x: 74vw;
  --y: 26vh;
}

.scroll-shot:nth-child(3) {
  width: min(29vw, 420px);
  height: min(20vw, 280px);
  --x: 8vw;
  --y: 62vh;
}

.scroll-shot:nth-child(4) {
  width: min(21vw, 300px);
  height: min(34vw, 480px);
  --x: 65vw;
  --y: 68vh;
}

.site-header,
.section,
.site-footer {
  width: min(1280px, 93vw);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: #07090ebf;
  border-bottom: 1px solid #ffffff14;
  border-radius: 0 0 14px 14px;
  backdrop-filter: blur(10px);
  transition: padding 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header nav {
  margin-right: 0.55rem;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo-crop {
  display: block;
  width: clamp(86px, 6.6vw, 112px);
  transition: width 180ms ease;
}

.header-brand {
  flex: 1;
  min-width: 0;
  text-align: center;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding-inline: 0.75rem;
  transition: font-size 180ms ease, letter-spacing 180ms ease;
}
.site-header.is-compact {
  padding: 0.56rem 0.74rem;
  background: #07090ee8;
  border-bottom-color: #ffffff24;
}

.site-header.is-compact .logo-crop {
  width: clamp(68px, 5.1vw, 88px);
}

.site-header.is-compact .header-brand {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.header-expand-toggle {
  display: none;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  opacity: 0.92;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links .btn {
  opacity: 1;
}

@media (max-width: 1120px) and (min-width: 901px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 0.8rem;
    row-gap: 0.6rem;
  }

  .site-header nav {
    grid-column: 1 / -1;
    width: 100%;
    margin-right: 0;
  }

  .header-brand {
    text-align: left;
    padding-inline: 0;
    font-size: 0.88rem;
  }

  .site-header.is-compact .header-brand {
    font-size: 0.8rem;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 0.85rem;
  }
}

.service-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.service-link:hover {
  text-decoration: underline;
}

.services-note {
  margin: 1rem 0 0.3rem;
  color: var(--muted);
}

.section {
  padding: 4.6rem 0;
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

.hero {
  padding-top: 5.5rem;
}

.hero .eyebrow {
  font-size: 1rem;
  margin-bottom: 1.15rem;
}

.hero h1 {
  font-size: clamp(1.95rem, 4.6vw, 4rem);
  max-width: 13ch;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin: 0 0 1rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 5.6vw, 5.3rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 3.3vw, 3.1rem);
  max-width: 19ch;
}

.hero-copy,
.about-copy p,
.cta p,
.services-grid p,
.packages-grid p,
.process-list p {
  max-width: 70ch;
  margin-top: 1rem;
}

.hero-copy,
.about-copy,
.services-grid p,
.cta p,
.site-footer,
.packages-grid p,
.process-list p,
.faq-grid p,
.stats p {
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  text-decoration: none;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  border: 1px solid var(--line);
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  border-color: #e2ba7d;
  color: #1a140a;
  font-weight: 600;
  font-size: 0.95em;
}

.btn-ghost {
  color: var(--ink);
}

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

.section-head {
  margin-bottom: 1.7rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 2rem;
}

.stats article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c1119b3;
  padding: 1rem;
}

.stats h3 {
  font-size: 1.7rem;
  color: var(--accent);
}

.stats p {
  margin: 0.35rem 0 0;
}

.proof-strip {
  padding-top: 1.4rem;
  padding-bottom: 1.2rem;
}

.proof-strip-grid,
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-strip-grid article,
.decision-grid article {
  padding: 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
}

.proof-strip-grid h3,
.decision-grid h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.proof-strip-grid p,
.decision-grid p {
  margin: 0;
  color: var(--muted);
}

.trusted-by {
  padding-top: 1.8rem;
  padding-bottom: 1.2rem;
}

.trusted-by-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.trusted-by-strip span {
  display: block;
  text-align: center;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0c1119b3;
  color: #dbe4f0;
  font-size: 0.84rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  grid-column: span 6;
  min-height: 250px;
  border: 1px solid var(--line);
  background: #05080f52;
}

.card.wide {
  grid-column: span 12;
  min-height: 330px;
}

#work .portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

#work .card {
  grid-column: auto;
  min-height: 180px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  opacity: 1;
  filter: none;
}

.card img.goalie-save {
  opacity: 1;
  filter: none;
}

.card img.detail-atmosphere-shot,
.mosaic-item img.detail-atmosphere-shot {
  object-position: 34% center;
}

.card-meta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  color: #f6f8fb;
  background: linear-gradient(transparent, #030405ed 82%);
}

.card-meta h3 {
  font-size: 1rem;
}

.card-meta p {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  opacity: 0.88;
}

.gallery-links {
  margin-bottom: 0.8rem;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.gallery-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--line);
  background: #0d141db3;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  cursor: pointer;
}

.chip.active {
  color: #1a140a;
  background: var(--accent);
  border-color: #e2ba7d;
  font-weight: 600;
  font-size: 0.95em;
}

.mosaic-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transition: opacity 260ms ease, transform 260ms ease;
}

.mosaic-grid.is-switching {
  opacity: 0.42;
  transform: translateY(6px);
}

.mosaic-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #05080f52;
  transition: transform 220ms ease, opacity 220ms ease;
  aspect-ratio: 3 / 2;
}

.mosaic-item.wide,
.mosaic-item.tall {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 3 / 2;
}

.mosaic-item.is-hidden {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
  display: none;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  opacity: 1;
  filter: none;
}

#gallery .mosaic-item img,
.full-gallery-grid .mosaic-item img {
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}

#gallery .mosaic-item,
#gallery .mosaic-item.wide,
#gallery .mosaic-item.tall,
.full-gallery-grid .mosaic-item,
.full-gallery-grid .mosaic-item.wide,
.full-gallery-grid .mosaic-item.tall {
  aspect-ratio: auto;
  border: 0;
  background: transparent;
}

#gallery .mosaic-grid,
.full-gallery-grid {
  display: block;
  column-gap: 0.85rem;
}

#gallery .mosaic-grid {
  column-count: 2;
}

.full-gallery-grid {
  column-count: 4;
}

#gallery .mosaic-item,
#gallery .mosaic-item.wide,
#gallery .mosaic-item.tall,
.full-gallery-grid .mosaic-item,
.full-gallery-grid .mosaic-item.wide,
.full-gallery-grid .mosaic-item.tall {
  display: inline-block;
  width: 100%;
  margin: 0 0 0.85rem;
  break-inside: avoid;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.service-area-grid,
.trusted-by-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-area-grid article {
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
}


.services-grid,
.packages-grid,
.process-list,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.services-grid,
.packages-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid article,
.packages-grid article,
.process-list li,
.faq-grid details {
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
}

.services-grid h3,
.packages-grid h3,
.process-list h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.package-rate {
  margin: 0 0 0.45rem;
  color: #f2cb8d;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.package-fit {
  margin: 0 0 0.9rem;
  color: #dfe7f1;
  font-size: 0.94rem;
  line-height: 1.45;
}

.packages-grid {
  margin-top: 1rem;
}

.packages-grid ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.packages-grid li + li {
  margin-top: 0.3rem;
}

.packages-grid article {
  display: grid;
  align-content: start;
}

.featured-package {
  outline: 1px solid #e2ba7d8c;
  background: #14191fd9;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.faq-grid details {
  overflow: hidden;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95em;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 420ms ease, opacity 360ms ease, transform 420ms ease, margin-top 420ms ease;
}

.faq-grid details[open] p {
  margin-top: 0.75rem;
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.cta {
  text-align: center;
}

.cta h2,
.cta p {
  margin-inline: auto;
}

.booking-method-highlight {
  margin-top: 0.75rem;
  padding: 0.7rem 0.95rem;
  max-width: 760px;
  color: #ffe7bf;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #d8af6f1f 0%, #d8af6f12 100%);
  border: 1px solid #d8af6f52;
  border-radius: 10px;
}

.booking-next-step {
  max-width: 780px;
  color: #ecf2fa;
  font-size: 1rem;
  line-height: 1.55;
}

.booking-urgency {
  margin-top: 0.65rem;
  max-width: 760px;
  font-size: 0.9rem;
  color: #d8dfeb;
}

.booking-response-time {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #b8c3d4;
  text-align: center;
}

.site-footer {
  padding: 2rem 0 3rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.questions-note {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #c7d2df;
}

.questions-note a {
  color: #d8af6f;
  text-decoration: none;
}

.questions-note a:hover {
  text-decoration: underline;
}

.questions-email-menu {
  position: fixed;
  z-index: 120;
  min-width: 172px;
  padding: 0.3rem;
  border: 1px solid #ffffff2b;
  border-radius: 10px;
  background: #0c111ef2;
  box-shadow: 0 12px 26px #0000008a;
  display: grid;
  gap: 0.24rem;
}

.questions-email-menu[hidden] {
  display: none;
}

.questions-email-menu button {
  appearance: none;
  border: 1px solid #ffffff1a;
  background: #131b2be6;
  color: #dfe7f1;
  border-radius: 7px;
  font: inherit;
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: left;
  padding: 0.42rem 0.55rem;
  cursor: pointer;
}

.questions-email-menu button:hover,
.questions-email-menu button:focus-visible {
  border-color: #d8af6f8f;
  background: #1a2538;
  color: #ffe3b3;
}

.questions-email-menu button:focus-visible {
  outline: 2px solid #d8af6f80;
  outline-offset: 1px;
}

.removal-note {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #ffffff14;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: #b4bfcc;
}

.removal-note a {
  color: #d8af6f;
  text-decoration: none;
}

.removal-note a:hover {
  text-decoration: underline;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: #020305eb;
  z-index: 80;
  padding: 2rem;
}

.lightbox.open {
  display: grid;
}

.lightbox-image {
  max-width: min(1200px, 95vw);
  max-height: 85vh;
  border-radius: 12px;
  border: 1px solid #ffffff36;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid #ffffff2a;
  border-radius: 999px;
  background: #0c111ad9;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav[hidden] {
  display: none;
}

.lightbox-nav-prev {
  left: 1.1rem;
}

.lightbox-nav-next {
  right: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  border: 1px solid var(--line);
  background: #0c111ad9;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 0.75rem;
  }

  .lightbox-image {
    width: auto;
    max-width: calc(100vw - 1.5rem);
    max-height: 82vh;
    margin-inline: auto;
  }

  .lightbox-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.7rem;
  }

  .lightbox-nav-prev {
    left: 0.55rem;
  }

  .lightbox-nav-next {
    right: 0.55rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 440ms ease, transform 440ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-grid,
  .packages-grid,
  .service-area-grid,
  .trusted-by-strip,
  .proof-strip-grid,
  .decision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 0.7rem;
    row-gap: 0.5rem;
    padding: 0.75rem 0.7rem 0.6rem;
    border-radius: 0;
  }

  .site-header.is-compact {
    padding: 0.48rem 0.55rem 0.42rem;
    column-gap: 0.55rem;
    row-gap: 0.35rem;
  }

  .site-header nav {
    margin-right: 0;
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .header-brand {
    text-align: left;
    padding-inline: 0;
    font-size: 0.88rem;
  }

  .site-header.is-compact .header-brand {
    font-size: 0.8rem;
  }

  .nav-links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
    gap: 0.65rem;
  }

  .nav-links a {
    white-space: nowrap;
  }
  .scroll-shot.visible {
    opacity: 0.21;
  }

  .scroll-shot:nth-child(1) {
    width: 48vw;
    height: 30vw;
    --x: 4vw;
    --y: 16vh;
  }

  .scroll-shot:nth-child(2) {
    width: 34vw;
    height: 50vw;
    --x: 62vw;
    --y: 33vh;
  }

  .scroll-shot:nth-child(3) {
    width: 45vw;
    height: 28vw;
    --x: 6vw;
    --y: 66vh;
  }

  .scroll-shot:nth-child(4) {
    display: none;
  }

  .portfolio-grid,
  .services-grid,
  .packages-grid,
  .service-area-grid,
  .trusted-by-strip,
  .proof-strip-grid,
  .decision-grid,
  .process-list,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .card,
  .card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .mosaic-item,
  .mosaic-item.wide,
  .mosaic-item.tall {
    aspect-ratio: 4 / 3;
  }

  .gallery-head,
  .split {
    grid-template-columns: 1fr;
    display: grid;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .mobile-priority-first {
    order: -1;
  }

  .site-header {
    grid-template-columns: auto;
    justify-content: stretch;
    justify-items: start;
    padding: 0.44rem 0.46rem 0.4rem;
    row-gap: 0;
  }

  .site-header.is-compact {
    justify-content: start;
    padding: 0.38rem 0.42rem 0.34rem;
    row-gap: 0;
  }

  .logo-crop {
    width: clamp(52px, 14vw, 64px);
  }

  .site-header.is-compact .logo-crop {
    width: clamp(42px, 11vw, 50px);
  }

  .header-brand {
    display: none;
  }

  .site-header nav {
    overflow: hidden;
    width: 100%;
    max-height: 0;
    opacity: 0;
    transform: translateY(-0.3rem);
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .header-expand-toggle {
    position: absolute;
    top: 0.42rem;
    right: 0.42rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    padding: 0;
    border: 1px solid #ffffff22;
    border-radius: 999px;
    background: #ffffff10;
    color: var(--ink);
    font: inherit;
    line-height: 1;
  }

  .header-expand-icon {
    display: block;
    width: 0.42rem;
    height: 0.42rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .site-header.is-mobile-expanded .header-expand-icon {
    transform: rotate(0deg);
  }

  .site-header.is-mobile-expanded {
    row-gap: 0.38rem;
  }

  .site-header.is-mobile-expanded nav {
    max-height: 18rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 0.32rem;
  }

  .nav-links li {
    min-width: 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.28rem;
    padding: 0.42rem 0.38rem;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
    font-size: 0.72rem;
    border: 1px solid #ffffff1a;
    border-radius: 10px;
    background: #ffffff08;
  }

  .nav-links .btn {
    min-height: 2.28rem;
    padding: 0.42rem 0.38rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .scroll-shot {
    display: none;
  }
}
























@media (min-width: 901px) {
  #gallery .mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  #gallery .mosaic-item,
  #gallery .mosaic-item.wide,
  #gallery .mosaic-item.tall {
    aspect-ratio: auto;
  }

  #work .card {
    min-height: 180px;
  }
}

/* Phone-specific density tuning: keeps desktop/tablet unchanged */
@media (max-width: 640px) {
  .site-header {
    padding: 0.58rem 0.55rem 0.46rem;
  }
  .nav-links {
    gap: 0.4rem;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .section {
    padding: 2.1rem 0;
    scroll-margin-top: calc(var(--header-offset) + 12px);
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(1.55rem, 8.8vw, 2.15rem);
    max-width: 16ch;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.8vw, 2rem);
    max-width: 15ch;
  }

  h2 {
    font-size: clamp(1.25rem, 6.2vw, 1.7rem);
    max-width: 100%;
  }

  .hero-copy,
  .about-copy p,
  .cta p,
  .services-grid p,
  .packages-grid p,
  .process-list p,
  .faq-grid p,
  .stats p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 1.1rem;
    gap: 0.55rem;
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    padding: 0.62rem 0.9rem;
    font-size: 0.82rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .stats {
    gap: 0.55rem;
    padding-block: 1.1rem;
  }

  .proof-strip {
    padding-top: 1rem;
  }

  .stats h3 {
    font-size: 1.25rem;
  }

  .portfolio-grid {
    gap: 0.7rem;
  }

  .card,
  .card.wide {
    min-height: 220px;
  }

  .card-meta {
    padding: 0.7rem;
  }

  .card-meta h3 {
    font-size: 0.92rem;
  }

  .card-meta p {
    font-size: 0.78rem;
  }

  .mosaic-grid {
    gap: 0.5rem;
  }

  .services-grid article,
  .packages-grid article,
  .proof-strip-grid article,
  .decision-grid article,
  .process-list li,
  .faq-grid details {
    padding: 0.9rem;
  }

  .site-footer {
    padding: 1.5rem 0 2rem;
    font-size: 0.8rem;
  }

  .removal-note {
    font-size: 0.7rem;
  }

  .gallery-only {
    width: min(1500px, 94vw);
    padding-top: 2.6rem;
  }
}

.gallery-only {
  padding-top: 3.5rem;
  width: min(1500px, 96vw);
}

.full-gallery-grid {
  column-count: 4;
}

.full-gallery-grid .mosaic-item,
.full-gallery-grid .mosaic-item.wide,
.full-gallery-grid .mosaic-item.tall {
  aspect-ratio: auto;
}

@media (max-width: 900px) {
  #gallery .mosaic-grid,
  .full-gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  #gallery .mosaic-grid,
  .full-gallery-grid {
    column-count: 1;
    column-gap: 0.6rem;
  }

  #gallery .mosaic-item,
  #gallery .mosaic-item.wide,
  #gallery .mosaic-item.tall,
  .full-gallery-grid .mosaic-item,
  .full-gallery-grid .mosaic-item.wide,
  .full-gallery-grid .mosaic-item.tall {
    margin-bottom: 0.6rem;
  }
}


.booking-email-inline:link,
.booking-email-inline:visited {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  font-size: inherit;
  border-bottom: 1px solid #d8af6f55;
  padding-bottom: 0px;
  transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.booking-email-inline:hover,
.booking-email-inline:focus-visible,
.booking-email-inline:active {
  color: #d8af6f;
  border-color: #f1c785;
  text-decoration: none;
}

/* Gallery page entrance animation */
.full-gallery-grid .mosaic-item {
  opacity: 0;
  transform: translateX(var(--gallery-enter-x, 24px));
  animation: gallery-slide-in 760ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.full-gallery-grid .mosaic-item:nth-child(odd) {
  --gallery-enter-x: -24px;
}

.full-gallery-grid .mosaic-item:nth-child(even) {
  --gallery-enter-x: 24px;
}

.full-gallery-grid .mosaic-item:nth-child(1) { animation-delay: 80ms; }
.full-gallery-grid .mosaic-item:nth-child(2) { animation-delay: 150ms; }
.full-gallery-grid .mosaic-item:nth-child(3) { animation-delay: 220ms; }
.full-gallery-grid .mosaic-item:nth-child(4) { animation-delay: 290ms; }
.full-gallery-grid .mosaic-item:nth-child(5) { animation-delay: 360ms; }
.full-gallery-grid .mosaic-item:nth-child(6) { animation-delay: 430ms; }
.full-gallery-grid .mosaic-item:nth-child(7) { animation-delay: 500ms; }

@keyframes gallery-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  html.perf-defer .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html.perf-defer .full-gallery-grid .mosaic-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html.perf-defer .scroll-shot {
    opacity: 0 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    transition-duration: 220ms;
  }

  .intro-glow,
  .intro-logo-visual,
  .intro-logo-canvas,
  .intro-wordmark,
  .intro-stage {
    animation: none !important;
  }

  .full-gallery-grid .mosaic-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.quick-booking-form {
  margin: 1.35rem auto 0;
  width: min(900px, 100%);
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0b1018c4;
}

.quick-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.quick-booking-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.quick-booking-form input,
.quick-booking-form select,
.quick-booking-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ffffff2a;
  background: #070d16;
  color: var(--ink);
  padding: 0.62rem 0.7rem;
  font: inherit;
}

.quick-booking-form textarea {
  min-height: 108px;
  resize: vertical;
}

.quick-booking-message {
  margin-top: 0.75rem;
}

.quick-booking-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}


.quick-booking-status {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: #d8af6f;
}

@media (max-width: 640px) {
  .quick-booking-form {
    padding: 0.8rem;
  }

  .quick-booking-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

#contact .hero-actions {
  justify-content: center;
}

#end-date-field.is-hidden {
  display: none !important;
}


@media (max-width: 640px) {
  .header-brand {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-brand {
    width: auto;
    white-space: nowrap;
    line-height: 1.15;
    padding-inline: 0;
  }
}










