:root {
  --paper: #f7f5f0;
  --paper-2: #ebe7de;
  --ink: #101010;
  --muted: #66625b;
  --line: rgba(16, 16, 16, .12);
  --black: #090b0b;
  --white: #fffaf2;
  --accent: #6d7654;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a,
button {
  color: inherit;
}

button {
  font-family: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 150px minmax(420px, 1fr) minmax(420px, 1fr);
  align-items: center;
  height: 88px;
  padding: 0;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.site-header .mark {
  grid-column: 1;
  justify-self: start;
  margin-left: 2.2rem;
}

.site-header .menu-toggle {
  grid-column: 2;
  justify-self: end;
  margin-right: 4rem;
}

.mark {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1;
  text-decoration: none;
  letter-spacing: -.04em;
}

.menu-toggle {
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 0;
  background: transparent;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle i {
  position: relative;
  width: 28px;
  height: 10px;
  display: inline-block;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  right: 0;
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-toggle i::before {
  top: 0;
}

.menu-toggle i::after {
  bottom: 0;
}

.menu-toggle[aria-expanded="true"] i::before {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::after {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-links {
  position: fixed;
  top: 88px;
  right: 1rem;
  display: grid;
  gap: .5rem;
  min-width: 220px;
  padding: 1rem;
  background: rgba(247, 245, 240, .92);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.nav-links.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links a {
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .8rem;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, .05);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 150px minmax(420px, 1fr) minmax(420px, 1fr);
  background: var(--paper);
}

.hero-index {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: 150px 0 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.6rem, 5vh, 3rem);
  border-right: 1px solid var(--line);
}

.index-item {
  position: relative;
  display: grid;
  gap: .3rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: rgba(16, 16, 16, .35);
  padding: 0;
}

.index-item strong {
  font-size: 1rem;
  letter-spacing: .05em;
}

.index-item span {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.index-item.active {
  color: var(--ink);
}

.index-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.9rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ink);
}

.hero-copy {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem clamp(2.5rem, 5vw, 6rem) 4rem;
}

.eyebrow {
  margin: 0 0 1.7rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 670px;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 600;
}

.hero-text {
  position: relative;
  max-width: 390px;
  margin-bottom: 2.4rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #222;
}

.hero-text::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 0 2.2rem;
  background: var(--ink);
}

.location-note::before {
  content: "";
  grid-column: 1 / -1;
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 0 .9rem;
  background: var(--ink);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: clamp(4rem, 12vh, 9rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.8rem;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.button.outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 250, 242, .55);
}

.text-link,
.button-reset {
  border: 0;
  background: transparent;
  padding: 0;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.location-note {
  display: grid;
  grid-template-columns: 28px minmax(220px, 1fr);
  column-gap: 1rem;
  row-gap: .2rem;
  max-width: 360px;
  min-width: 280px;
}

.location-note strong {
  display: block;
  margin-bottom: .5rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.25;
  text-transform: uppercase;
  max-width: 260px;
}

.location-note p {
  margin: 0;
  color: #333;
  font-size: .92rem;
  line-height: 1.55;
  max-width: 300px;
}

.pin {
  font-size: 1.2rem;
  line-height: 1;
}

.hero-reel {
  min-height: 100svh;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  background: #111;
}

.reel-card {
  position: relative;
  min-height: 25svh;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  color: var(--white);
}

.reel-card img {
  position: absolute;
  inset: 0;
  transition: transform .6s ease, filter .6s ease;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.05));
}

.reel-card span {
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.5rem);
  bottom: clamp(1.2rem, 3vw, 2.3rem);
  z-index: 1;
  display: grid;
  gap: .2rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: left;
}

.reel-card span b {
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: .03em;
}

.reel-card:hover img {
  transform: scale(1.04);
  filter: contrast(1.06);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 1.15fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.8rem) clamp(1.25rem, 5vw, 5.5rem);
  background: var(--black);
  color: var(--white);
}

.booking-band blockquote {
  margin: 0;
}

.booking-band blockquote span {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: .5;
}

.booking-band blockquote p {
  max-width: 430px;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.booking-band cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.band-cta h2,
.final-cta h2,
.gallery-index h2,
.experience h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.band-cta p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 250, 242, .78);
  margin-bottom: 2rem;
}

.selected-work,
.experience,
.gallery-index {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.thumb-row button {
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #ddd;
}

.thumb-row img {
  transition: transform .45s ease;
}

.thumb-row button:hover img {
  transform: scale(1.05);
}

.experience {
  border-top: 1px solid var(--line);
}

.experience {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 3rem;
}

.experience-copy {
  max-width: 520px;
  align-self: end;
  color: var(--muted);
}

.steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}

.steps article {
  padding: 2.5rem 2rem 0 0;
  border-right: 1px solid var(--line);
  min-height: 200px;
}

.steps article:last-child {
  border-right: 0;
}

.icon {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  color: var(--accent);
}

.steps h3 {
  margin-bottom: .7rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steps p {
  margin: 0;
  max-width: 250px;
  color: var(--muted);
  font-size: .92rem;
}

.gallery-index {
  background: var(--paper-2);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 3rem;
}

.gallery-list {
  display: grid;
}

.gallery-list button {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, .14);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.gallery-list span {
  color: var(--muted);
}

.gallery-list strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
}

.gallery-list em {
  font-style: normal;
  color: var(--muted);
  max-width: 340px;
}

.gallery-list button:hover strong {
  color: var(--accent);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 540px);
  gap: 4rem;
  align-items: center;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
  background: var(--black);
  color: var(--white);
}

.final-cta p {
  max-width: 470px;
  color: rgba(255, 250, 242, .76);
  margin-bottom: 2rem;
}

/* final CTA image styling moved to .cta-copy img */

.site-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem clamp(1.25rem, 5vw, 5.5rem);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.16);
}

.site-footer span {
  margin-right: auto;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 1.4rem;
}

.site-footer a:not(.mark) {
  text-decoration: none;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, .78);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
  background: rgba(0, 0, 0, .92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  margin: 0;
  width: min(1100px, 82vw);
  max-height: 82svh;
  display: grid;
  gap: 1rem;
}

.lightbox-image {
  max-height: 75svh;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.04);
  color: var(--white);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255,255,255,.16);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 72px;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
}

.lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.lightbox-arrow.prev {
  left: 1.2rem;
}

.lightbox-arrow.next {
  right: 1.2rem;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 88px 1fr;
  }

  .site-header .mark {
    margin-left: 1.5rem;
  }

  .site-header .menu-toggle {
    grid-column: 2;
    margin-right: 1.5rem;
  }

  .hero {
    grid-template-columns: 88px 1fr;
  }

  .hero-reel {
    grid-column: 1 / -1;
    min-height: auto;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: none;
  }

  .reel-card {
    min-height: 260px;
  }

  .booking-band {
    grid-template-columns: 1fr 1fr;
  }

  .band-cta {
    grid-column: auto;
  }

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

  .experience,
  .gallery-index,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .gallery-list button {
    grid-template-columns: 55px 1fr;
  }

  .gallery-list em {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 72px;
    padding: 0 1.1rem;
  }

  .site-header .mark {
    margin-left: 0;
  }

  .site-header .menu-toggle {
    grid-column: 2;
    margin-right: 0;
  }

  .nav-links {
    top: 72px;
    left: 1rem;
    right: 1rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-index {
    display: none;
  }

  .hero-copy {
    min-height: auto;
    padding: 7rem 1.25rem 3rem;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.5rem;
  }

  .location-note {
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .button,
  .text-link {
    width: fit-content;
  }

  .hero-reel {
    grid-template-columns: 1fr;
  }

  .reel-card {
    min-height: 230px;
  }

  .booking-band {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .thumb-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }

  .thumb-row button {
    min-width: 72vw;
    scroll-snap-align: start;
  }

  .selected-work,
  .experience,
  .gallery-index {
    padding: 4rem 1.25rem;
  }

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

  .steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
    min-height: 0;
  }

  .gallery-list button {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .gallery-list em {
    grid-column: auto;
  }

  .final-cta {
    padding: 4rem 1.25rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox figure {
    width: 100%;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 1rem;
    transform: none;
    width: 52px;
    height: 52px;
    font-size: 2.4rem;
  }

  .lightbox-arrow:hover {
    transform: scale(1.04);
  }

  .lightbox-arrow.prev {
    left: 1rem;
  }

  .lightbox-arrow.next {
    right: 1rem;
  }
}


/* Updates: scroll-aware navigation, expanded portfolio, cleaner process spacing, booking form */
.site-header {
  color: var(--white);
  transition: background .22s ease, color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .45);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 245, 240, .88);
  box-shadow: 0 1px 0 rgba(16, 16, 16, .10);
  backdrop-filter: blur(18px);
  text-shadow: none;
}

.site-header.is-scrolled .nav-links {
  background: rgba(247, 245, 240, .94);
}

.selected-work.expanded .thumb-row {
  grid-template-columns: repeat(10, 1fr);
}

.extra-work {
  display: none;
}

.selected-work.expanded .extra-work {
  display: block;
}

.steps article {
  padding: 2.7rem clamp(1.6rem, 2.4vw, 3rem) 0;
}

.steps article:first-child {
  padding-left: 0;
}

.steps article:last-child {
  padding-right: 0;
}

.final-cta {
  grid-template-columns: minmax(280px, .85fr) minmax(340px, 1fr);
  align-items: start;
}

.cta-copy img {
  margin-top: 2.5rem;
  aspect-ratio: 16 / 10;
  opacity: .78;
  filter: grayscale(1);
}

.booking-form {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid rgba(255, 250, 242, .18);
  background: rgba(255, 255, 255, .035);
}

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

.booking-form label {
  display: grid;
  gap: .45rem;
  color: rgba(255, 250, 242, .78);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, .22);
  border-radius: 0;
  background: rgba(255, 250, 242, .08);
  color: var(--white);
  font: inherit;
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  padding: .95rem 1rem;
  outline: none;
}

.booking-form select option {
  color: var(--ink);
}

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

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 250, 242, .42);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(255, 250, 242, .72);
  background: rgba(255, 250, 242, .12);
}

.form-submit {
  justify-self: start;
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 250, 242, .48);
  font-size: .82rem;
}

@media (max-width: 1200px) {
  .selected-work.expanded .thumb-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1050px) {
  .site-header {
    color: var(--ink);
    background: rgba(247, 245, 240, .88);
    backdrop-filter: blur(18px);
    text-shadow: none;
  }

  .steps article {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .selected-work.expanded .thumb-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
  }

  .selected-work.expanded .thumb-row button {
    min-width: 0;
  }

  .steps article {
    padding: 2rem 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 1.1rem;
  }

  .cta-copy img {
    margin-top: 2rem;
  }
}


/* Correction: logo stays black. Only menu text and menu lines change color. */
.site-header .mark {
  color: var(--ink);
  text-shadow: none;
}

.site-header .menu-toggle {
  color: var(--white);
}

.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
}


/* Correction: restore menu position. Do not move menu text. */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.site-header .mark {
  margin-left: 0;
}

.site-header .menu-toggle {
  grid-column: auto;
  justify-self: auto;
  margin-right: 0;
}

@media (max-width: 1050px) {
  .site-header {
    display: flex;
    padding: 0 1.5rem;
  }

  .site-header .mark {
    margin-left: 0;
  }

  .site-header .menu-toggle {
    margin-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: flex;
    padding: 0 1.1rem;
  }

  .site-header .mark {
    margin-left: 0;
  }

  .site-header .menu-toggle {
    margin-right: 0;
  }
}


/* Correction: opened menu options stay readable on the light dropdown panel. */
.nav-links {
  color: var(--ink);
  text-shadow: none;
}

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

.site-header.is-scrolled .nav-links,
.site-header.is-scrolled .nav-links a {
  color: var(--ink);
}


/* Pricing section */
.pricing-section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(300px, .95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.pricing-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 500;
  margin: 0;
}

.pricing-intro p:not(.eyebrow) {
  color: var(--muted);
  max-width: 560px;
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, .22);
}

.price-card:last-child {
  border-right: 0;
}

.featured-price {
  background: var(--black);
  color: var(--white);
}

.price-label {
  margin: 0 0 2.5rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.featured-price .price-label {
  color: rgba(255, 250, 242, .66);
}

.price-card h3 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .82;
  letter-spacing: -.07em;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.price-summary {
  max-width: 330px;
  color: var(--muted);
  margin: 0 0 2rem;
}

.featured-price .price-summary {
  color: rgba(255, 250, 242, .72);
}

.price-card ul {
  display: grid;
  gap: .8rem;
  padding: 0;
  margin: 0 0 2.4rem;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.featured-price li {
  color: rgba(255, 250, 242, .76);
}

.price-button {
  margin-top: auto;
  width: fit-content;
  background: transparent;
  color: var(--ink);
}

.featured-price .price-button {
  color: var(--white);
  border-color: rgba(255, 250, 242, .55);
}

.pricing-note {
  max-width: 740px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 1050px) {
  .pricing-intro {
    grid-template-columns: 1fr;
  }

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

  .price-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .pricing-section {
    padding: 4rem 1.25rem;
  }

  .price-card h3 {
    font-size: 4.5rem;
  }
}


/* Category-based pricing update */
.category-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.category-price-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .22);
}

.category-price-card:nth-child(3n) {
  border-right: 0;
}

.category-price-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.category-price-card h3 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 500;
  margin: 0 0 1.35rem;
}

.category-price-card p:not(.price-label) {
  max-width: 340px;
  color: var(--muted);
  margin: 0 0 2rem;
}

.category-price-card ul {
  display: grid;
  gap: .75rem;
  padding: 0;
  margin: auto 0 2.2rem;
  list-style: none;
}

.category-price-card li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.category-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.featured-category {
  background: var(--black);
  color: var(--white);
}

.featured-category .price-label,
.featured-category p:not(.price-label),
.featured-category li {
  color: rgba(255, 250, 242, .74);
}

.featured-category .price-button {
  color: var(--white);
  border-color: rgba(255, 250, 242, .55);
}

@media (max-width: 1150px) {
  .category-pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-price-card,
  .category-price-card:nth-child(3n),
  .category-price-card:nth-last-child(-n + 3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .category-price-card:nth-child(2n) {
    border-right: 0;
  }

  .category-price-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .category-pricing {
    grid-template-columns: 1fr;
  }

  .category-price-card,
  .category-price-card:nth-child(2n),
  .category-price-card:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-price-card:last-child {
    border-bottom: 0;
  }
}


/* v8 corrections: portfolio expands downward, main-page images are display-only, seasonal price fixed, pricing drives form */
.reel-card {
  display: block;
  cursor: default;
}

.reel-card:hover img {
  transform: none;
  filter: none;
}

.thumb-row {
  grid-template-columns: repeat(5, 1fr);
}

.thumb-row figure {
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.thumb-row figure img {
  transition: none;
}

.selected-work.expanded .thumb-row {
  grid-template-columns: repeat(5, 1fr);
}

.selected-work.expanded .extra-work {
  display: block;
}

.thumb-row button {
  pointer-events: none;
}

.price-button[data-session-choice] {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .selected-work.expanded .thumb-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .thumb-row,
  .selected-work.expanded .thumb-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .thumb-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
    scroll-snap-type: none;
  }

  .thumb-row figure {
    min-width: 0;
    scroll-snap-align: unset;
  }

  .selected-work.expanded .thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* v9 corrections: align booking form bottom with image bottom + price hover states */
.final-cta {
  align-items: stretch;
}

.cta-copy {
  display: flex;
  flex-direction: column;
}

.cta-copy img {
  flex: 1;
  min-height: 0;
  object-fit: cover;
}

.booking-form {
  height: 100%;
  align-self: stretch;
}

/* Pricing cards now have a rollover, not just one static black card */
.category-price-card {
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.category-price-card .price-label,
.category-price-card p:not(.price-label),
.category-price-card li,
.category-price-card .price-button {
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

.category-price-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.category-price-card:hover .price-label,
.category-price-card:hover p:not(.price-label),
.category-price-card:hover li {
  color: rgba(255, 250, 242, .76);
}

.category-price-card:hover .price-button {
  color: var(--white);
  border-color: rgba(255, 250, 242, .58);
}

/* Keep the featured Families card feeling intentional, but let the others match it on hover */
.featured-category:hover {
  transform: translateY(-4px);
}

@media (max-width: 1050px) {
  .final-cta {
    align-items: start;
  }

  .booking-form {
    height: auto;
  }

  .cta-copy img {
    flex: none;
  }
}

@media (max-width: 720px) {
  .category-price-card:hover {
    transform: none;
    box-shadow: none;
  }
}


/* v10 corrections: no desktop pop-up menu, left rail becomes permanent nav */
.desktop-left-nav {
  justify-content: flex-start;
  padding-top: 170px;
}

.left-nav-link {
  position: relative;
  display: grid;
  gap: .3rem;
  text-decoration: none;
  color: rgba(16, 16, 16, .48);
  transition: color .2s ease, transform .2s ease;
}

.left-nav-link strong {
  font-size: 1rem;
  letter-spacing: .05em;
}

.left-nav-link span {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.left-nav-link:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.left-nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.9rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ink);
}

/* Desktop: no top-right menu button and no dropdown/flyout */
@media (min-width: 1051px) {
  .site-header .menu-toggle,
  .site-header .nav-links {
    display: none;
  }

  .site-header {
    justify-content: flex-start;
    width: 150px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
}

/* In-page booking confirmation */
.form-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(9, 11, 11, .72);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.form-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.form-popup-card {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.form-popup-card h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
}

.form-popup-message {
  margin: 0 auto 2rem;
  max-width: 36ch;
  color: var(--muted);
}

.form-popup-close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.form-popup-button {
  background: var(--ink);
  color: var(--white);
}

.form-submit:disabled {
  cursor: wait;
  opacity: .65;
}

body.form-popup-open {
  overflow: hidden;
}

/* Gallery category cards are hover-only display cards now, not popup triggers */
.gallery-list .gallery-hover-card {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(16, 16, 16, .14);
  background: transparent;
  text-align: left;
  transition: color .2s ease, transform .2s ease;
}

.gallery-list .gallery-hover-card span {
  color: var(--muted);
}

.gallery-list .gallery-hover-card strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
}

.gallery-list .gallery-hover-card em {
  font-style: normal;
  color: var(--muted);
  max-width: 340px;
}

.gallery-list .gallery-hover-card:hover {
  transform: translateX(6px);
}

.gallery-list .gallery-hover-card:hover strong {
  color: var(--accent);
}

@media (max-width: 1050px) {
  .desktop-left-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .gallery-list .gallery-hover-card {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .gallery-list .gallery-hover-card em {
    grid-column: auto;
  }
}


/* v11: sticky desktop side panel with active-section highlight */
@media (min-width: 1051px) {
  .hero-index.desktop-left-nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 45;
    width: 150px;
    height: 100svh;
    padding: 170px 0 3rem 2.2rem;
    background: rgba(247, 245, 240, .78);
    border-right: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .hero {
    grid-template-columns: 150px minmax(420px, 1fr) minmax(420px, 1fr);
  }

  .hero-copy {
    grid-column: 2;
  }

  .hero-reel {
    grid-column: 3;
  }

  .left-nav-link {
    color: rgba(16, 16, 16, .40);
  }

  .left-nav-link.is-active {
    color: var(--ink);
    transform: translateX(3px);
  }

  .left-nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.9rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--ink);
  }

  .left-nav-link.is-active strong,
  .left-nav-link.is-active span {
    color: var(--ink);
  }

  .left-nav-link:hover::after {
    display: none;
  }

  .left-nav-link:hover,
  .left-nav-link.is-active:hover {
    color: var(--ink);
  }
}


/* v12 correction: fixed side rail gets its own desktop space instead of covering content */
@media (min-width: 1051px) {
  main,
  .site-footer {
    margin-left: 150px;
    width: calc(100% - 150px);
  }

  .hero {
    grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  }

  .hero-copy {
    grid-column: 1;
  }

  .hero-reel {
    grid-column: 2;
  }

  .hero-index.desktop-left-nav {
    grid-column: auto;
  }

  .site-header {
    width: 150px;
  }
}

@media (max-width: 1050px) {
  main,
  .site-footer {
    margin-left: 0;
    width: 100%;
  }
}


/* v13 correction: pricing hover changes color only, no jumping/movement */
.category-price-card:hover,
.featured-category:hover {
  transform: none;
  box-shadow: none;
}

.category-price-card {
  transform: none;
}


/* v14 correction: no pricing card is permanently black. All cards start light and only turn dark on hover. */
.category-price-card.featured-category,
.featured-category {
  background: rgba(255, 255, 255, .22);
  color: var(--ink);
}

.featured-category .price-label {
  color: var(--accent);
}

.featured-category p:not(.price-label),
.featured-category li {
  color: var(--muted);
}

.featured-category .price-button {
  color: var(--ink);
  border-color: var(--ink);
}

.category-price-card:hover,
.category-price-card.featured-category:hover,
.featured-category:hover {
  background: var(--black);
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.category-price-card:hover .price-label,
.category-price-card:hover p:not(.price-label),
.category-price-card:hover li,
.category-price-card.featured-category:hover .price-label,
.category-price-card.featured-category:hover p:not(.price-label),
.category-price-card.featured-category:hover li {
  color: rgba(255, 250, 242, .76);
}

.category-price-card:hover .price-button,
.category-price-card.featured-category:hover .price-button {
  color: var(--white);
  border-color: rgba(255, 250, 242, .58);
}


/* v15 hard correction: no hover movement anywhere on the site.
   Hover may change color/background only. No jumping, lifting, sliding, scaling, or image zoom. */

*:hover,
*:focus,
*:active {
  transform: none !important;
}

.button:hover,
.text-link:hover,
.menu-toggle:hover,
.nav-links a:hover,
.left-nav-link:hover,
.left-nav-link.is-active,
.left-nav-link.is-active:hover,
.reel-card:hover,
.reel-card:hover img,
.thumb-row button:hover,
.thumb-row button:hover img,
.thumb-row figure:hover,
.thumb-row figure:hover img,
.gallery-list button:hover,
.gallery-list .gallery-hover-card:hover,
.category-price-card:hover,
.featured-category:hover,
.lightbox-close:hover,
.lightbox-arrow:hover {
  transform: none !important;
}

.reel-card img,
.thumb-row img,
.category-price-card,
.gallery-list .gallery-hover-card,
.left-nav-link,
.button,
.lightbox-close,
.lightbox-arrow {
  transition-property: background, color, border-color, filter, opacity, box-shadow !important;
}

.reel-card:hover img,
.thumb-row button:hover img,
.thumb-row figure:hover img {
  filter: none !important;
}

/* Keep active nav highlight without physically moving the item */
.left-nav-link.is-active {
  transform: none !important;
}

.left-nav-link:hover::after {
  display: none !important;
}


/* v17 correction: booking form select arrow gets proper right-side breathing room */
.booking-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 3.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23fffaf2' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}


/* v18: custom animated dropdown, no browser blue/white native menu */
.custom-select-label {
  position: relative;
  overflow: visible;
}

.custom-select {
  position: relative;
  width: 100%;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.custom-select-trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1rem;
  border: 1px solid rgba(255, 250, 242, .22);
  background: rgba(255, 250, 242, .08);
  color: var(--white);
  font: inherit;
  font-size: .95rem;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transform: none !important;
  box-shadow: none !important;
}

.custom-select-trigger:hover {
  background: rgba(255, 250, 242, .12);
  border-color: rgba(255, 250, 242, .46);
  transform: none !important;
}

.custom-select.is-open .custom-select-trigger {
  border-color: rgba(255, 250, 242, .72);
  background: rgba(255, 250, 242, .12);
}

.custom-select-arrow {
  flex: 0 0 auto;
  margin-right: .15rem;
  transition: transform .24s cubic-bezier(.16, 1, .3, 1);
}

.custom-select-arrow path {
  fill: none;
  stroke: var(--white);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(180deg) !important;
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + .45rem);
  z-index: 80;
  display: grid;
  padding: .35rem;
  border: 1px solid rgba(255, 250, 242, .20);
  background: #121413;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .34);
  opacity: 0;
  transform: translateY(-6px) !important;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity .22s cubic-bezier(.16, 1, .3, 1),
    transform .22s cubic-bezier(.16, 1, .3, 1),
    max-height .28s cubic-bezier(.16, 1, .3, 1);
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  transform: translateY(0) !important;
  pointer-events: auto;
  max-height: 340px;
}

.custom-select-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 242, .78);
  padding: .95rem .9rem;
  font: inherit;
  font-size: .92rem;
  text-align: left;
  cursor: pointer;
  transform: none !important;
}

.custom-select-menu button:hover,
.custom-select-menu button.is-selected {
  background: rgba(255, 250, 242, .09);
  color: var(--white);
  transform: none !important;
}

.custom-select-menu button.is-selected::after {
  content: "•";
  float: right;
  color: var(--accent);
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(255, 250, 242, .72);
  background: rgba(255, 250, 242, .12);
}

/* Native select styling left in file is now irrelevant, but keep any accidental select from showing browser color. */
.booking-form select {
  display: none;
}

@media (max-width: 720px) {
  .custom-select-menu {
    max-height: 0;
  }

  .custom-select.is-open .custom-select-menu {
    max-height: 320px;
  }
}


/* v19: hidden Web3Forms botcheck field */
.hidden-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}


/* v20: one real gallery section. No selected-work fake split. */
.gallery-accordion-section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.gallery-accordion-intro {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.gallery-accordion-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 500;
  margin: 0;
}

.gallery-accordion-intro p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  margin: 0;
}

.gallery-accordion {
  border-top: 1px solid rgba(16, 16, 16, .16);
}

.gallery-panel {
  border-bottom: 1px solid rgba(16, 16, 16, .16);
}

.gallery-panel-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 72px minmax(180px, .7fr) minmax(260px, 1fr) 28px;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.35rem, 2.7vw, 2.4rem) 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transform: none !important;
}

.gallery-panel-trigger::after {
  content: "+";
  justify-self: end;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}

.gallery-panel.is-open .gallery-panel-trigger::after {
  content: "−";
}

.gallery-panel-trigger span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.gallery-panel-trigger strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 500;
}

.gallery-panel-trigger em {
  max-width: 520px;
  color: var(--muted);
  font-style: normal;
}

.gallery-panel-trigger:hover strong {
  color: var(--accent);
}

.gallery-panel-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .42s cubic-bezier(.16, 1, .3, 1),
    opacity .24s cubic-bezier(.16, 1, .3, 1);
}

.gallery-panel.is-open .gallery-panel-content {
  max-height: 2200px;
  opacity: 1;
}

.gallery-image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(.65rem, 1.2vw, 1rem);
  padding: 0 0 clamp(1.6rem, 3vw, 2.5rem) 72px;
}

.gallery-image-grid figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8d3c9;
}

.gallery-image-grid figure:nth-child(4n + 2) {
  aspect-ratio: 1 / 1;
}

.gallery-image-grid figure:nth-child(5n + 3) {
  aspect-ratio: 5 / 4;
}

.gallery-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
  transition: none !important;
}

/* Kill older fake gallery hover-card behavior if any remains in cascade */
.gallery-index,
.selected-work {
  display: none !important;
}

@media (max-width: 1100px) {
  .gallery-image-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
  }

  .gallery-panel-trigger {
    grid-template-columns: 48px 1fr 1fr 24px;
  }
}

@media (max-width: 720px) {
  .gallery-accordion-section {
    padding: 4rem 1.25rem;
  }

  .gallery-accordion-intro {
    grid-template-columns: 1fr;
  }

  .gallery-panel-trigger {
    grid-template-columns: 44px 1fr 24px;
    gap: 1rem;
  }

  .gallery-panel-trigger em {
    grid-column: 2 / 3;
  }

  .gallery-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  .gallery-panel.is-open .gallery-panel-content {
    max-height: 4200px;
  }
}


/* v21: gallery navigation/order/color/grid fixes */

/* Gallery hover should read as gray, not green. */
.gallery-panel-trigger:hover strong,
.gallery-list .gallery-hover-card:hover strong {
  color: #4f4c47 !important;
}

/* Make gallery accordion rows clearly clickable again. */
.gallery-panel-trigger {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.gallery-panel-trigger * {
  pointer-events: none;
}

/* Side nav order and active highlight stay clean and clickable. */
.left-nav-link {
  pointer-events: auto !important;
}

/* Replace ugly masonry-style mixed gaps with a controlled photography grid.
   Uses clean 3:4 verticals and 4:3 horizontals, no random hole-looking layout. */
.gallery-image-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-auto-flow: dense;
  gap: clamp(.7rem, 1vw, 1rem) !important;
  padding: 0 0 clamp(1.6rem, 3vw, 2.5rem) 72px !important;
  align-items: stretch;
}

.gallery-image-grid figure {
  margin: 0 !important;
  overflow: hidden;
  background: #d8d3c9;
  aspect-ratio: 3 / 4 !important;
}

.gallery-image-grid figure:nth-child(3n) {
  grid-column: span 2;
  aspect-ratio: 4 / 3 !important;
}

.gallery-image-grid figure:nth-child(7n) {
  grid-column: span 2;
  aspect-ratio: 4 / 3 !important;
}

.gallery-image-grid figure:nth-child(10n) {
  grid-column: span 2;
  aspect-ratio: 4 / 3 !important;
}

.gallery-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Prevent prior global hover cleanup from disabling accordion plus/minus usability. */
.gallery-panel-trigger:hover {
  background: transparent !important;
}

/* Keep section scroll targets clear under the sticky rail/nav. */
#experience,
#pricing,
#galleries,
#contact {
  scroll-margin-top: 40px;
}

@media (max-width: 1100px) {
  .gallery-image-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    padding-left: 0 !important;
  }

  .gallery-image-grid figure:nth-child(3n),
  .gallery-image-grid figure:nth-child(7n),
  .gallery-image-grid figure:nth-child(10n) {
    grid-column: span 1;
    aspect-ratio: 3 / 4 !important;
  }

  .gallery-image-grid figure:nth-child(4n) {
    grid-column: span 2;
    aspect-ratio: 4 / 3 !important;
  }
}

@media (max-width: 720px) {
  .gallery-image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .75rem !important;
  }

  .gallery-image-grid figure,
  .gallery-image-grid figure:nth-child(3n),
  .gallery-image-grid figure:nth-child(4n),
  .gallery-image-grid figure:nth-child(7n),
  .gallery-image-grid figure:nth-child(10n) {
    grid-column: span 1 !important;
    aspect-ratio: 3 / 4 !important;
  }
}


/* v22: gallery section layout cleanup */
.gallery-accordion-section {
  padding-left: clamp(2rem, 5vw, 5.5rem) !important;
  padding-right: clamp(2rem, 5vw, 5.5rem) !important;
}

.gallery-accordion-intro {
  grid-template-columns: minmax(280px, .75fr) minmax(320px, 1fr) !important;
  align-items: start !important;
}

.gallery-accordion-intro > div {
  grid-column: 1;
}

.gallery-accordion-intro > p:not(.eyebrow) {
  grid-column: 2;
  justify-self: start;
  max-width: 560px;
}

/* Give every accordion row and opened grid real side padding.
   Images no longer touch the divider lines or outer section edges. */
.gallery-accordion {
  border-top: 1px solid rgba(16, 16, 16, .16);
}

.gallery-panel {
  border-bottom: 1px solid rgba(16, 16, 16, .16);
}

.gallery-panel-trigger {
  padding: clamp(1.35rem, 2.7vw, 2.4rem) clamp(1.2rem, 2vw, 1.8rem) !important;
}

.gallery-panel-content {
  padding-left: clamp(1.2rem, 2vw, 1.8rem) !important;
  padding-right: clamp(1.2rem, 2vw, 1.8rem) !important;
}

/* Clean, deliberate portfolio grid:
   no masonry holes, no edge touching, consistent spacing, photo ratios only. */
.gallery-image-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  gap: clamp(1rem, 1.6vw, 1.35rem) !important;
  padding: 0 0 clamp(2rem, 3vw, 2.8rem) 0 !important;
  align-items: start !important;
}

/* Reset all weird prior span/aspect rules first */
.gallery-image-grid figure,
.gallery-image-grid figure:nth-child(3n),
.gallery-image-grid figure:nth-child(4n),
.gallery-image-grid figure:nth-child(5n),
.gallery-image-grid figure:nth-child(7n),
.gallery-image-grid figure:nth-child(10n) {
  grid-column: span 1 !important;
  aspect-ratio: 3 / 4 !important;
  margin: 0 !important;
}

/* Larger horizontals placed deliberately. */
.gallery-image-grid figure:nth-child(4),
.gallery-image-grid figure:nth-child(9) {
  grid-column: span 2 !important;
  aspect-ratio: 4 / 3 !important;
}

/* Avoid an orphan gap at the end by keeping the final image vertical if needed */
.gallery-image-grid figure:nth-child(10) {
  grid-column: span 1 !important;
  aspect-ratio: 3 / 4 !important;
}

.gallery-image-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery text hover should be neutral gray only. */
.gallery-panel-trigger:hover strong,
.gallery-panel-trigger:hover em,
.gallery-panel-trigger:hover span {
  color: #4f4c47 !important;
}

/* Active/open gallery should remain readable, not green. */
.gallery-panel.is-open .gallery-panel-trigger strong {
  color: var(--ink) !important;
}

@media (max-width: 1100px) {
  .gallery-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .gallery-image-grid figure:nth-child(4),
  .gallery-image-grid figure:nth-child(9) {
    grid-column: span 1 !important;
    aspect-ratio: 3 / 4 !important;
  }

  .gallery-image-grid figure:nth-child(5),
  .gallery-image-grid figure:nth-child(10) {
    grid-column: span 2 !important;
    aspect-ratio: 4 / 3 !important;
  }
}

@media (max-width: 720px) {
  .gallery-accordion-section {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .gallery-accordion-intro {
    grid-template-columns: 1fr !important;
  }

  .gallery-accordion-intro > p:not(.eyebrow) {
    grid-column: 1;
  }

  .gallery-panel-trigger {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .gallery-panel-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .gallery-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .85rem !important;
  }

  .gallery-image-grid figure,
  .gallery-image-grid figure:nth-child(4),
  .gallery-image-grid figure:nth-child(5),
  .gallery-image-grid figure:nth-child(9),
  .gallery-image-grid figure:nth-child(10) {
    grid-column: span 1 !important;
    aspect-ratio: 3 / 4 !important;
  }
}


/* v23: real Masonry plugin layout and reliable accordion spacing */
.gallery-panel-content {
  overflow: hidden;
  max-height: 0;
  opacity: 1 !important;
  transition: max-height .36s cubic-bezier(.16, 1, .3, 1);
}

.gallery-panel.is-open .gallery-panel-content {
  opacity: 1 !important;
}

.gallery-image-grid {
  position: relative !important;
  display: block !important;
  padding: 0 clamp(1rem, 1.8vw, 1.6rem) clamp(2rem, 3vw, 2.8rem) !important;
  margin: 0 !important;
}

.gallery-sizer,
.gallery-grid-item {
  width: calc((100% - 3rem) / 4);
}

.gallery-gutter {
  width: 1rem;
}

.gallery-grid-item {
  margin: 0 0 1rem !important;
  aspect-ratio: 3 / 4 !important;
  overflow: hidden;
  background: #d8d3c9;
}

.gallery-grid-item.is-wide {
  width: calc(((100% - 3rem) / 4) * 2 + 1rem);
  aspect-ratio: 4 / 3 !important;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Keep images away from the row lines */
.gallery-panel-trigger {
  margin-bottom: 0 !important;
}

.gallery-panel.is-open .gallery-panel-trigger {
  border-bottom: 0 !important;
}

@media (max-width: 1100px) {
  .gallery-sizer,
  .gallery-grid-item {
    width: calc((100% - 2rem) / 3);
  }

  .gallery-grid-item.is-wide {
    width: calc(((100% - 2rem) / 3) * 2 + 1rem);
  }
}

@media (max-width: 720px) {
  .gallery-image-grid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .gallery-sizer,
  .gallery-grid-item {
    width: calc((100% - .85rem) / 2);
  }

  .gallery-gutter {
    width: .85rem;
  }

  .gallery-grid-item {
    margin-bottom: .85rem !important;
  }

  .gallery-grid-item.is-wide {
    width: 100%;
  }
}


/* Gallery reset from scratch: no slingshot, no height animation. */
.gallery-panel {
  scroll-margin-top: 0 !important;
}

.gallery-panel-content {
  display: none !important;
  overflow: visible !important;
  max-height: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.gallery-panel.is-open .gallery-panel-content {
  display: block !important;
}

.gallery-panel-trigger {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.gallery-panel-trigger * {
  pointer-events: none !important;
}

/* Screenshot-style image-driven masonry. No blank filler. */
.gallery-image-grid {
  display: block !important;
  columns: 3 260px !important;
  column-gap: 1.5rem !important;
  padding: 0 1.5rem 2.5rem !important;
  margin: 0 !important;
}

.gallery-image-grid figure,
.gallery-image-grid figure:nth-child(n) {
  display: inline-block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
  break-inside: avoid !important;
  page-break-inside: avoid !important;
  overflow: hidden !important;
  background: transparent !important;
  line-height: 0 !important;
  cursor: pointer !important;
  transform: none !important;
}

.gallery-image-grid img,
.gallery-image-grid figure img,
.gallery-image-grid figure:nth-child(n) img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  transition: opacity .18s ease !important;
}

.gallery-image-grid figure:hover img {
  opacity: .5 !important;
}

.gallery-panel-trigger:hover strong,
.gallery-panel-trigger:hover em,
.gallery-panel-trigger:hover span {
  color: #4f4c47 !important;
}

/* Lightbox restored and isolated. */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
  background: rgba(0, 0, 0, .92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  margin: 0;
  width: min(1100px, 82vw);
  max-height: 82svh;
  display: grid;
  gap: 1rem;
}

.lightbox-image {
  width: 100%;
  max-height: 75svh;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.04);
  color: var(--white);
  cursor: pointer;
  transform: none !important;
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 72px;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%) !important;
}

.lightbox-arrow.prev {
  left: 1.2rem;
}

.lightbox-arrow.next {
  right: 1.2rem;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255,255,255,.16);
}

@media (max-width: 1050px) {
  .gallery-panel {
    scroll-margin-top: 76px !important;
  }

  .gallery-image-grid {
    columns: 2 240px !important;
    column-gap: 1rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .gallery-image-grid figure {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 620px) {
  .gallery-image-grid {
    columns: 1 !important;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 1rem;
    width: 52px;
    height: 52px;
    font-size: 2.4rem;
    transform: none !important;
  }
}


/* Live-now cleanup: one gallery only for launch */
.gallery-panel:not(:first-child) {
  display: none !important;
}

.gallery-panel:first-child .gallery-panel-trigger strong {
  visibility: hidden;
  position: relative;
}

.gallery-panel:first-child .gallery-panel-trigger strong::after {
  content: "Portfolio";
  visibility: visible;
  position: absolute;
  left: 0;
  top: 0;
}

.gallery-panel:first-child .gallery-panel-trigger em {
  visibility: hidden;
  position: relative;
}

.gallery-panel:first-child .gallery-panel-trigger em::after {
  content: "A single gallery for current work. More categories can be added later.";
  visibility: visible;
  position: absolute;
  left: 0;
  top: 0;
}


/* Live-now pricing: three options only */
.category-pricing-three {
  grid-template-columns: repeat(3, 1fr) !important;
}

.category-pricing-three .category-price-card {
  min-height: 500px;
  border-bottom: 0 !important;
}

.category-pricing-three .category-price-card:nth-child(n) {
  border-right: 1px solid var(--line) !important;
}

.category-pricing-three .category-price-card:last-child {
  border-right: 0 !important;
}

@media (max-width: 1050px) {
  .category-pricing-three {
    grid-template-columns: 1fr !important;
  }

  .category-pricing-three .category-price-card:nth-child(n) {
    min-height: auto;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .category-pricing-three .category-price-card:last-child {
    border-bottom: 0 !important;
  }
}


/* Service Area + How It Works */
.service-area-section,
.how-section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.service-area-intro,
.how-intro {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(300px, .95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.service-area-intro h2,
.how-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 500;
  margin: 0;
}

.service-area-intro p:not(.eyebrow),
.how-intro p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}

.travel-grid,
.how-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.how-list {
  grid-template-columns: repeat(4, 1fr);
}

.travel-grid article,
.how-list article {
  padding: clamp(1.5rem, 3vw, 2.35rem);
  min-height: 260px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, .18);
}

.travel-grid article:last-child,
.how-list article:last-child {
  border-right: 0;
}

.travel-grid span {
  display: block;
  margin-bottom: 2rem;
  color: var(--accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.travel-grid h3,
.how-list h3 {
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.travel-grid p,
.how-list p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 1100px) {
  .service-area-intro,
  .how-intro {
    grid-template-columns: 1fr;
  }

  .travel-grid,
  .how-list {
    grid-template-columns: 1fr;
  }

  .travel-grid article,
  .how-list article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .travel-grid article:last-child,
  .how-list article:last-child {
    border-bottom: 0;
  }
}

/* Live-now pricing: three options only */
.category-pricing-three {
  grid-template-columns: repeat(3, 1fr) !important;
}

.category-pricing-three .category-price-card {
  min-height: 500px;
  border-bottom: 0 !important;
}

.category-pricing-three .category-price-card:nth-child(n) {
  border-right: 1px solid var(--line) !important;
}

.category-pricing-three .category-price-card:last-child {
  border-right: 0 !important;
}

@media (max-width: 1050px) {
  .category-pricing-three {
    grid-template-columns: 1fr !important;
  }

  .category-pricing-three .category-price-card:nth-child(n) {
    min-height: auto;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .category-pricing-three .category-price-card:last-child {
    border-bottom: 0 !important;
  }
}


/* Final launch cleanup: big headings on the left, no fake gallery accordion header */
.pricing-intro,
.service-area-intro,
.how-intro,
.gallery-accordion-intro,
.single-gallery-intro {
  display: grid !important;
  grid-template-columns: minmax(320px, .9fr) minmax(320px, 1fr) !important;
  gap: clamp(2rem, 6vw, 6rem) !important;
  align-items: end !important;
  text-align: left !important;
}

.pricing-intro > div,
.service-area-intro > div,
.how-intro > div,
.gallery-accordion-intro > div,
.single-gallery-intro > div {
  grid-column: 1 !important;
  text-align: left !important;
}

.pricing-intro > p,
.service-area-intro > p,
.gallery-accordion-intro > p,
.single-gallery-intro > p {
  grid-column: 2 !important;
  text-align: left !important;
  justify-self: start !important;
  max-width: 620px !important;
}

.how-intro {
  grid-template-columns: 1fr !important;
}

.how-intro > div {
  grid-column: 1 !important;
}

.pricing-intro h2,
.service-area-intro h2,
.how-intro h2,
.gallery-accordion-intro h2,
.single-gallery-intro h2 {
  text-align: left !important;
  margin-left: 0 !important;
}

/* Single gallery for launch: remove visible accordion/title row. */
.single-gallery-section .gallery-accordion {
  border-top: 1px solid var(--line);
}

.single-gallery-section .gallery-panel:not(:first-child) {
  display: none !important;
}

.single-gallery-section .gallery-panel-trigger {
  display: none !important;
}

.single-gallery-section .gallery-panel-content {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  padding-top: clamp(2rem, 4vw, 3rem) !important;
}

.single-gallery-section .gallery-panel {
  border: 0 !important;
}

/* Keep the one-gallery layout clean and image driven. */
.single-gallery-section .gallery-image-grid {
  display: block !important;
  columns: 3 260px !important;
  column-gap: 1.5rem !important;
  padding: 0 0 clamp(2.5rem, 4vw, 4rem) !important;
  margin: 0 !important;
}

.single-gallery-section .gallery-image-grid figure,
.single-gallery-section .gallery-image-grid figure:nth-child(n) {
  display: inline-block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
  break-inside: avoid !important;
  overflow: hidden !important;
  background: transparent !important;
  line-height: 0 !important;
}

.single-gallery-section .gallery-image-grid img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.single-gallery-section .gallery-image-grid figure:hover img {
  opacity: .5 !important;
}

@media (max-width: 1050px) {
  .pricing-intro,
  .service-area-intro,
  .gallery-accordion-intro,
  .single-gallery-intro {
    grid-template-columns: 1fr !important;
  }

  .pricing-intro > p,
  .service-area-intro > p,
  .gallery-accordion-intro > p,
  .single-gallery-intro > p {
    grid-column: 1 !important;
  }

  .single-gallery-section .gallery-image-grid {
    columns: 2 240px !important;
    column-gap: 1rem !important;
  }

  .single-gallery-section .gallery-image-grid figure {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 620px) {
  .single-gallery-section .gallery-image-grid {
    columns: 1 !important;
  }
}


/* Gallery title cleanup: one term, left side only, no right/bottom text */
.clean-gallery-title,
.single-gallery-intro.clean-gallery-title {
  display: block !important;
  text-align: left !important;
  margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.clean-gallery-title > div,
.single-gallery-intro.clean-gallery-title > div {
  display: block !important;
  grid-column: auto !important;
  text-align: left !important;
}

.clean-gallery-title h2,
.single-gallery-intro.clean-gallery-title h2 {
  text-align: left !important;
  margin: 0 !important;
}

.clean-gallery-title p:not(.eyebrow),
.single-gallery-intro.clean-gallery-title p:not(.eyebrow) {
  display: none !important;
}

.single-gallery-section .gallery-accordion > p,
.single-gallery-section > p {
  display: none !important;
}


/* Gallery heading final: same pattern as other sections, no duplicate wording */
.clean-gallery-title,
.single-gallery-intro.clean-gallery-title {
  display: block !important;
  text-align: left !important;
  margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.clean-gallery-title > div,
.single-gallery-intro.clean-gallery-title > div {
  display: block !important;
  text-align: left !important;
}

.clean-gallery-title .eyebrow,
.single-gallery-intro.clean-gallery-title .eyebrow {
  display: block !important;
  visibility: visible !important;
}

.clean-gallery-title h2,
.single-gallery-intro.clean-gallery-title h2 {
  text-align: left !important;
  margin: 0 !important;
}

.clean-gallery-title p:not(.eyebrow),
.single-gallery-intro.clean-gallery-title p:not(.eyebrow),
.single-gallery-section > p,
.single-gallery-section .gallery-accordion > p {
  display: none !important;
}


/* Clean contact form: no giant inputs, no huge submit block */
.clean-contact {
  grid-template-columns: minmax(280px, .75fr) minmax(420px, .95fr) !important;
  gap: clamp(2.5rem, 6vw, 5rem) !important;
  align-items: start !important;
}

.clean-contact .cta-copy img {
  display: none !important;
}

.clean-contact .cta-copy p:not(.eyebrow) {
  max-width: 520px !important;
}

.clean-contact .contact-policy {
  margin-top: 1.5rem !important;
  color: rgba(255, 250, 242, .62) !important;
  font-size: .92rem !important;
}

.clean-booking-form {
  height: auto !important;
  padding: clamp(1.35rem, 2.4vw, 2rem) !important;
  gap: 1rem !important;
  border: 1px solid rgba(255, 250, 242, .16) !important;
  background: rgba(255, 255, 255, .025) !important;
}

.clean-booking-form .form-row {
  gap: 1rem !important;
}

.clean-booking-form label {
  gap: .4rem !important;
}

.clean-booking-form input,
.clean-booking-form textarea,
.clean-booking-form .custom-select-trigger {
  min-height: 46px !important;
  padding: .75rem .85rem !important;
  font-size: .9rem !important;
  background: rgba(255, 250, 242, .07) !important;
}

.clean-booking-form textarea {
  min-height: 108px !important;
}

.clean-booking-form .form-submit {
  width: auto !important;
  min-height: 44px !important;
  padding: 0 1.25rem !important;
  justify-self: start !important;
  font-size: .66rem !important;
}

.clean-booking-form .form-note {
  display: none !important;
}

@media (max-width: 1050px) {
  .clean-contact {
    grid-template-columns: 1fr !important;
  }

  .clean-booking-form .form-row {
    grid-template-columns: 1fr !important;
  }
}


/* Remove numeric labels from hero photo cards */
.reel-card span b {
  display: none !important;
}


/* Hero rebuild: one single vertical image panel, Morris County above the fold, exact 1080px */
.hero-section-clean {
  display: grid !important;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, .92fr) !important;
  min-height: 1080px !important;
  height: 1080px !important;
  align-items: stretch !important;
  background: var(--paper) !important;
  border-bottom: 1px solid var(--line) !important;
}

.hero-section-clean .hero-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 7rem 5rem 4.5rem 5rem !important;
  min-height: 1080px !important;
  box-sizing: border-box !important;
}

.hero-section-clean .hero-kicker {
  margin: 0 0 2rem 0 !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

.hero-section-clean h1 {
  margin: 0 !important;
  font-family: var(--serif) !important;
  font-size: clamp(5rem, 6.2vw, 7.2rem) !important;
  line-height: .92 !important;
  letter-spacing: -.06em !important;
  max-width: 8.3ch !important;
}

.hero-section-clean .hero-rule {
  width: 34px !important;
  height: 2px !important;
  background: currentColor !important;
  margin: 1.75rem 0 1.75rem !important;
  flex: 0 0 auto !important;
}

.hero-section-clean .hero-subcopy {
  max-width: 26rem !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  margin: 0 0 2rem 0 !important;
}

.hero-section-clean .hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 1.2rem !important;
  margin-bottom: 2.5rem !important;
  flex-wrap: wrap !important;
}

.hero-section-clean .text-link {
  font-size: .72rem !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  text-decoration: underline !important;
  text-underline-offset: .24rem !important;
}

.hero-section-clean .hero-location-top {
  display: grid !important;
  grid-template-columns: 22px 1fr !important;
  gap: .85rem !important;
  margin-top: auto !important;
  padding-top: 2rem !important;
  align-items: start !important;
}

.hero-section-clean .hero-location-icon {
  font-size: 1.05rem !important;
  line-height: 1 !important;
  margin-top: .18rem !important;
}

.hero-section-clean .hero-location-title {
  margin: 0 0 .45rem 0 !important;
  font-size: .74rem !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

.hero-section-clean .hero-location-text {
  margin: 0 !important;
  max-width: 24rem !important;
  line-height: 1.5 !important;
  color: var(--muted) !important;
}

.hero-section-clean .hero-visual-single {
  position: relative !important;
  height: 1080px !important;
  min-height: 1080px !important;
  overflow: hidden !important;
  border-left: 1px solid var(--line) !important;
  background: #111 !important;
}

.hero-section-clean .hero-visual-single img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

.hero-section-clean .hero-visual-label {
  position: absolute !important;
  left: 2rem !important;
  bottom: 2rem !important;
  color: #fff !important;
  font-size: .8rem !important;
  font-weight: 800 !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1280px) {
  .hero-section-clean {
    grid-template-columns: minmax(420px, 1fr) minmax(360px, .9fr) !important;
  }
  .hero-section-clean .hero-copy {
    padding: 5.5rem 3rem 3rem 3rem !important;
  }
}

@media (max-width: 980px) {
  .hero-section-clean {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .hero-section-clean .hero-copy,
  .hero-section-clean .hero-visual-single {
    min-height: 0 !important;
    height: auto !important;
  }

  .hero-section-clean .hero-copy {
    padding: 4rem 1.5rem 2rem 1.5rem !important;
  }

  .hero-section-clean .hero-visual-single {
    aspect-ratio: 4 / 5 !important;
    border-left: 0 !important;
    border-top: 1px solid var(--line) !important;
  }

  .hero-section-clean h1 {
    font-size: clamp(3.2rem, 14vw, 5rem) !important;
    max-width: 8ch !important;
  }
}


/* Final hero headline: direct site copy, readable line breaks */
.hero-section-clean h1,
.hero-copy h1 {
  max-width: 11.5ch !important;
  font-size: clamp(4.8rem, 5.8vw, 6.9rem) !important;
  line-height: .94 !important;
}

.hero-section-clean .hero-subcopy,
.hero-copy .hero-subcopy {
  max-width: 34rem !important;
}


/* Remove all text overlays from the main hero photo */
.hero-visual-label,
.hero-visual-single .hero-visual-label,
.hero-section-clean .hero-visual-label {
  display: none !important;
}

.hero-visual-single::before,
.hero-visual-single::after {
  content: none !important;
}


/* Final hero cleanup: no location block here, service area covers it later */
.hero-section-clean .hero-location,
.hero-section-clean .hero-location-top,
.location-note {
  display: none !important;
}

/* Pull hero copy left. It was sitting too far toward the middle. */
.hero-section-clean .hero-copy {
  padding-left: clamp(2.75rem, 4vw, 4rem) !important;
  padding-right: clamp(2.5rem, 4vw, 4rem) !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.hero-section-clean h1,
.hero-copy h1 {
  text-align: left !important;
  margin-left: 0 !important;
  max-width: 10.8ch !important;
}

.hero-section-clean .hero-subcopy,
.hero-copy .hero-subcopy,
.hero-section-clean .hero-actions {
  margin-left: 0 !important;
  align-self: flex-start !important;
}

@media (max-width: 980px) {
  .hero-section-clean .hero-copy {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}


/* Final button + intro layout fix */
.hero-kicker {
  display: none !important;
}

/* All buttons same physical size */
.button,
.form-submit,
.price-button,
.hero-actions .button,
.band-cta .button,
.clean-booking-form .form-submit {
  min-width: 164px !important;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 1.35rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
}

/* Top hero book button: white by default, black rollover */
.hero-actions .button,
.hero-actions .button.dark {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
}

.hero-actions .button:hover,
.hero-actions .button.dark:hover {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-color: var(--ink) !important;
  transform: none !important;
}

/* No button movement anywhere */
.button:hover,
.price-button:hover,
.form-submit:hover {
  transform: none !important;
}

/* Force intro text on the LEFT, not floating on the right */
.pricing-intro,
.experience,
.experience-intro {
  text-align: left !important;
}

.pricing-intro {
  grid-template-columns: 1fr !important;
  justify-items: start !important;
}

.pricing-intro > div,
.pricing-intro > p,
.pricing-intro .left-intro-copy {
  grid-column: 1 !important;
  justify-self: start !important;
  text-align: left !important;
  max-width: 620px !important;
}

.pricing-intro .left-intro-copy p {
  margin: 1.25rem 0 0 !important;
  color: var(--muted) !important;
  max-width: 620px !important;
}

.experience {
  grid-template-columns: 1fr !important;
}

.experience-intro {
  max-width: 720px !important;
}

.experience-copy,
.experience-copy.left-copy {
  grid-column: 1 !important;
  justify-self: start !important;
  margin: 1.25rem 0 0 !important;
  max-width: 620px !important;
  text-align: left !important;
  color: var(--muted) !important;
}


/* Form field character/phone cleanup */
.booking-form input:invalid:not(:placeholder-shown),
.booking-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 120, 100, .65) !important;
}

.booking-form input,
.booking-form textarea {
  box-sizing: border-box !important;
}


/* Final section intro rule: label, big heading, and description all stay on the left */
.pricing-intro,
.service-area-intro,
.gallery-accordion-intro,
.single-gallery-intro,
.how-intro,
.experience-intro {
  display: block !important;
  text-align: left !important;
  max-width: 760px !important;
}

.pricing-intro > div,
.service-area-intro > div,
.gallery-accordion-intro > div,
.single-gallery-intro > div,
.how-intro > div,
.experience-intro {
  display: block !important;
  text-align: left !important;
  max-width: 760px !important;
}

.pricing-intro h2,
.service-area-intro h2,
.gallery-accordion-intro h2,
.single-gallery-intro h2,
.how-intro h2,
.experience-intro h2 {
  text-align: left !important;
  margin-left: 0 !important;
}

.pricing-intro .intro-copy,
.service-area-intro .intro-copy,
.gallery-accordion-intro .intro-copy,
.single-gallery-intro .intro-copy,
.how-intro .intro-copy,
.experience-intro .intro-copy {
  margin: 1.5rem 0 0 !important;
  color: var(--muted) !important;
  max-width: 640px !important;
  text-align: left !important;
}

/* Kill old right-column intro text if any old structure survives */
.pricing-intro > p:not(.eyebrow):not(.intro-copy),
.service-area-intro > p:not(.eyebrow):not(.intro-copy),
.gallery-accordion-intro > p:not(.eyebrow):not(.intro-copy),
.single-gallery-intro > p:not(.eyebrow):not(.intro-copy) {
  display: none !important;
}


/* Tighten section intro spacing after moving copy left */
.pricing-section,
.service-area-section,
.gallery-accordion-section,
.how-section,
.experience {
  padding-top: clamp(3.5rem, 7vw, 6rem) !important;
  padding-bottom: clamp(3.5rem, 7vw, 6rem) !important;
}

.pricing-intro,
.service-area-intro,
.gallery-accordion-intro,
.single-gallery-intro,
.how-intro,
.experience-intro {
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem) !important;
}

.pricing-intro .intro-copy,
.service-area-intro .intro-copy,
.experience-copy,
.experience-copy.left-copy {
  margin-top: 1rem !important;
}

/* Keep the content immediately after the intro from drifting down */
.pricing-intro + .category-pricing,
.service-area-intro + .travel-grid,
.how-intro + .how-list,
.gallery-accordion-intro + .gallery-accordion,
.single-gallery-intro + .gallery-accordion,
.experience-intro + .steps {
  margin-top: 0 !important;
}

/* Service area looked especially loose */
.service-area-section .travel-grid {
  margin-top: 0 !important;
}


/* Center the Service Area intro vertically in its opening band */
.service-area-section {
  padding-top: clamp(6rem, 11vw, 9rem) !important;
}

.service-area-section .service-area-intro {
  margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}


/* Center the hero content vertically inside the 1080px hero */
.hero,
.hero-section-clean {
  min-height: 1080px !important;
  height: 1080px !important;
  align-items: stretch !important;
}

.hero .hero-copy,
.hero-section-clean .hero-copy {
  min-height: 1080px !important;
  height: 1080px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hero .hero-reel,
.hero-section-clean .hero-visual-single {
  min-height: 1080px !important;
  height: 1080px !important;
}

.hero .location-note,
.hero-section-clean .hero-location,
.hero-section-clean .hero-location-top {
  display: none !important;
}

@media (max-width: 980px) {
  .hero,
  .hero-section-clean,
  .hero .hero-copy,
  .hero-section-clean .hero-copy,
  .hero .hero-reel,
  .hero-section-clean .hero-visual-single {
    min-height: auto !important;
    height: auto !important;
  }

  .hero .hero-copy,
  .hero-section-clean .hero-copy {
    padding-top: 4rem !important;
    padding-bottom: 3rem !important;
  }
}


/* Message field higher limit + counter */
.field-count {
  display: block;
  margin-top: .35rem;
  color: rgba(255, 250, 242, .55);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* Final button sizing: same width and height across the site */
.button,
.price-button,
.form-submit,
.hero-actions .button,
.band-cta .button,
.clean-booking-form .form-submit,
.booking-form .form-submit,
a.button,
button.button {
  width: 190px !important;
  min-width: 190px !important;
  max-width: 190px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

/* Text links are not buttons */
.text-link {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
}

/* Mobile still keeps exact button width unless the screen is too narrow */
@media (max-width: 430px) {
  .button,
  .price-button,
  .form-submit,
  .hero-actions .button,
  .band-cta .button,
  .clean-booking-form .form-submit,
  .booking-form .form-submit,
  a.button,
  button.button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}


/* Restore fixed left navigation */
.desktop-left-nav,
.hero-index.desktop-left-nav {
  display: flex !important;
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 150px !important;
  z-index: 50 !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 2rem !important;
  padding: 7rem 1.8rem 2rem !important;
  background: var(--paper) !important;
  border-right: 1px solid var(--line) !important;
}

.site-logo,
.logo,
.brand-mark {
  z-index: 60 !important;
}

.left-nav-link {
  display: grid !important;
  gap: .35rem !important;
  color: var(--muted) !important;
  text-decoration: none !important;
}

.left-nav-link strong {
  font-size: .78rem !important;
  letter-spacing: .12em !important;
}

.left-nav-link span {
  font-size: .62rem !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

.left-nav-link.is-active {
  color: var(--ink) !important;
}

/* keep page clear of fixed nav */
@media (min-width: 1051px) {
  main,
  .site-footer {
    margin-left: 150px !important;
    width: calc(100% - 150px) !important;
  }
}

/* Real height limit on the message box. No endless drag resize. */
.booking-form textarea,
.clean-booking-form textarea,
#messageInput {
  min-height: 110px !important;
  resize: vertical !important;
  overflow-y: auto !important;
}

.field-count {
  display: block !important;
  margin-top: .35rem !important;
  color: rgba(255, 250, 242, .55) !important;
  font-size: .68rem !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1050px) {
  .desktop-left-nav,
  .hero-index.desktop-left-nav {
    display: none !important;
  }

  main,
  .site-footer {
    margin-left: 0 !important;
    width: 100% !important;
  }
}


/* Restore logo in fixed left rail */
.site-header {
  display: block !important;
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 150px !important;
  height: 90px !important;
  z-index: 80 !important;
  pointer-events: none !important;
  background: transparent !important;
}

.site-header .mark {
  display: block !important;
  position: fixed !important;
  left: 2rem !important;
  top: 2rem !important;
  z-index: 90 !important;
  color: var(--ink) !important;
  text-decoration: none !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-header .menu-toggle,
.site-header .nav-links {
  pointer-events: auto !important;
}

/* Message box: expandable, but capped */
.booking-form textarea,
.clean-booking-form textarea,
#messageInput {
  min-height: 130px !important;
  max-height: 320px !important;
  resize: vertical !important;
  overflow-y: auto !important;
}

/* Browser drag handle stays usable */
#messageInput {
  display: block !important;
}


/* Final textarea behavior: can expand manually, capped at a real max height */
.booking-form textarea,
.clean-booking-form textarea,
textarea#messageInput {
  min-height: 130px !important;
  max-height: 360px !important;
  resize: vertical !important;
  overflow-y: auto !important;
  height: auto;
}

/* Preserve the logo */
.site-header .mark {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}


/* View portfolio link: keep only one underline */
.text-link,
a.text-link,
.hero-actions .text-link {
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.text-link::before,
.text-link::after,
a.text-link::before,
a.text-link::after,
.hero-actions .text-link::before,
.hero-actions .text-link::after {
  content: none !important;
  display: none !important;
}

.text-link span,
a.text-link span,
.hero-actions .text-link span {
  text-decoration: none !important;
  border-bottom: 1px solid currentColor !important;
  box-shadow: none !important;
}


/* Mobile repair pass */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

img,
video {
  max-width: 100% !important;
  height: auto;
}

/* Desktop rail stays desktop only */
@media (max-width: 1050px) {
  .desktop-left-nav,
  .hero-index.desktop-left-nav,
  aside.hero-index {
    display: none !important;
  }

  main,
  .site-footer {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .site-header {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 72px !important;
    z-index: 100 !important;
    background: rgba(255, 250, 242, .94) !important;
    border-bottom: 1px solid var(--line) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 1.1rem !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
  }

  .site-header .mark {
    position: static !important;
    display: block !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: var(--ink) !important;
    pointer-events: auto !important;
    z-index: 101 !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 76px !important;
    height: 42px !important;
    padding: 0 .9rem !important;
    border: 1px solid var(--ink) !important;
    background: transparent !important;
    color: var(--ink) !important;
    font: inherit !important;
    font-size: .72rem !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
  }

  .site-header .nav-links {
    display: none !important;
  }

  .site-header.is-open .nav-links,
  .site-header.nav-open .nav-links {
    display: grid !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 72px !important;
    background: var(--paper) !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 1rem 1.1rem 1.2rem !important;
    gap: .9rem !important;
  }

  .hero,
  .hero-section-clean {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: 72px !important;
  }

  .hero .hero-copy,
  .hero-section-clean .hero-copy {
    min-height: auto !important;
    height: auto !important;
    padding: 3.5rem 1.2rem 2rem !important;
    justify-content: start !important;
  }

  .hero h1,
  .hero-section-clean h1 {
    font-size: clamp(2.5rem, 15vw, 4.5rem) !important;
    line-height: .92 !important;
    letter-spacing: -.08em !important;
    max-width: 100% !important;
  }

  .hero p,
  .hero-section-clean p {
    max-width: 100% !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .9rem !important;
    width: 100% !important;
    margin-top: 1.6rem !important;
  }

  .hero-actions .button,
  .button,
  .price-button,
  .form-submit,
  a.button,
  button.button,
  .clean-booking-form .form-submit,
  .booking-form .form-submit {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hero-actions .text-link {
    width: max-content !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    justify-self: start !important;
  }

  .hero-reel,
  .hero .hero-reel,
  .hero-section-clean .hero-visual-single {
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    padding: 0 1.2rem 2.4rem !important;
    box-sizing: border-box !important;
  }

  .hero-visual-single img,
  .hero-reel img,
  .reel-card img {
    width: 100% !important;
    height: auto !important;
    max-height: 62vh !important;
    object-fit: cover !important;
    display: block !important;
  }

  section,
  .section,
  .experience,
  .pricing-section,
  .service-area-section,
  .gallery-accordion-section,
  .how-section,
  .contact-section {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .pricing-intro,
  .service-area-intro,
  .gallery-accordion-intro,
  .single-gallery-intro,
  .how-intro,
  .experience-intro,
  .contact-intro {
    max-width: 100% !important;
    margin-bottom: 1.6rem !important;
  }

  .pricing-intro h2,
  .service-area-intro h2,
  .gallery-accordion-intro h2,
  .single-gallery-intro h2,
  .how-intro h2,
  .experience-intro h2,
  .contact-intro h2 {
    font-size: clamp(2.1rem, 12vw, 3.5rem) !important;
    line-height: .95 !important;
    max-width: 100% !important;
  }

  .category-pricing,
  .price-grid,
  .pricing-grid,
  .travel-grid,
  .how-list,
  .steps,
  .experience-grid,
  .contact-grid,
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .price-card,
  .travel-card,
  .step-card,
  .experience-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .gallery-masonry,
  .masonry-gallery,
  .gallery-grid,
  .gallery-accordion-panel,
  .gallery-track {
    columns: 1 !important;
    column-count: 1 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .8rem !important;
  }

  .gallery-masonry img,
  .masonry-gallery img,
  .gallery-grid img,
  .gallery-accordion-panel img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .booking-form,
  .clean-booking-form {
    width: 100% !important;
    max-width: 100% !important;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea,
  .clean-booking-form input,
  .clean-booking-form select,
  .clean-booking-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  #messageInput {
    min-height: 130px !important;
    max-height: 320px !important;
    resize: vertical !important;
    overflow-y: auto !important;
  }
}

@media (max-width: 520px) {
  .hero .hero-copy,
  .hero-section-clean .hero-copy {
    padding-top: 2.75rem !important;
  }

  .hero h1,
  .hero-section-clean h1 {
    font-size: clamp(2.25rem, 16vw, 3.6rem) !important;
  }

  .eyebrow {
    font-size: .68rem !important;
  }
}


/* Mobile menu repair: no box around Menu, clean dropdown */
@media (max-width: 1050px) {
  .site-header .menu-toggle,
  button.menu-toggle {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: .5rem 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: .85rem !important;
    color: var(--ink) !important;
  }

  .site-header .menu-toggle span,
  button.menu-toggle span {
    display: inline-block !important;
    font-size: .72rem !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .site-header .menu-toggle i,
  button.menu-toggle i {
    width: 28px !important;
    height: 14px !important;
    display: inline-block !important;
    position: relative !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .site-header .menu-toggle i::before,
  .site-header .menu-toggle i::after,
  button.menu-toggle i::before,
  button.menu-toggle i::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    width: 28px !important;
    height: 2px !important;
    background: var(--ink) !important;
    transform: none !important;
    transition: none !important;
  }

  .site-header .menu-toggle i::before,
  button.menu-toggle i::before {
    top: 2px !important;
  }

  .site-header .menu-toggle i::after,
  button.menu-toggle i::after {
    bottom: 2px !important;
  }

  .site-header.is-open .menu-toggle i::before,
  .site-header.nav-open .menu-toggle i::before {
    top: 6px !important;
    transform: rotate(45deg) !important;
  }

  .site-header.is-open .menu-toggle i::after,
  .site-header.nav-open .menu-toggle i::after {
    bottom: 6px !important;
    transform: rotate(-45deg) !important;
  }

  .site-header .nav-links {
    display: grid !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 72px !important;
    z-index: 99 !important;
    gap: 1rem !important;
    max-height: 0 !important;
    padding: 0 1.2rem !important;
    overflow: hidden !important;
    background: rgba(255, 250, 242, .98) !important;
    border-top: 1px solid transparent !important;
    border-bottom: 1px solid transparent !important;
    opacity: 0 !important;
    transform: translateY(-14px) !important;
    pointer-events: none !important;
    transition:
      max-height .38s ease,
      padding .38s ease,
      opacity .22s ease,
      transform .32s ease,
      border-color .22s ease !important;
  }

  .site-header.is-open .nav-links,
  .site-header.nav-open .nav-links,
  .site-header .nav-links.open {
    max-height: 340px !important;
    padding: 1.2rem !important;
    border-top-color: var(--line) !important;
    border-bottom-color: var(--line) !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .site-header.is-open .nav-links a,
  .site-header.nav-open .nav-links a,
  .site-header .nav-links.open a {
    display: block !important;
    padding: .65rem 0 !important;
    color: var(--ink) !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
  }

  .site-header .nav-links a {
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    transition: opacity .22s ease, transform .28s ease !important;
  }

  .site-header.is-open .nav-links a,
  .site-header.nav-open .nav-links a,
  .site-header .nav-links.open a {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .site-header .nav-links a:nth-child(1) {
    transition-delay: .04s !important;
  }

  .site-header .nav-links a:nth-child(2) {
    transition-delay: .08s !important;
  }

  .site-header .nav-links a:nth-child(3) {
    transition-delay: .12s !important;
  }

  .site-header .nav-links a:nth-child(4) {
    transition-delay: .16s !important;
  }

  .site-header .nav-links a:nth-child(5) {
    transition-delay: .20s !important;
  }

  @media (prefers-reduced-motion: reduce) {
    .site-header .nav-links,
    .site-header .nav-links a {
      transition: none !important;
    }
  }
}

/* Lightbox: remove boxed controls and stop page scrolling while open */
html.lightbox-open,
body.lightbox-open {
  overflow: hidden !important;
  touch-action: none !important;
}

.lightbox,
.image-lightbox,
[data-lightbox] {
  overscroll-behavior: contain !important;
}

.lightbox button,
.image-lightbox button,
.lightbox .lightbox-prev,
.lightbox .lightbox-next,
.lightbox .lightbox-close,
.image-lightbox .lightbox-prev,
.image-lightbox .lightbox-next,
.image-lightbox .lightbox-close,
.lightbox [class*="prev"],
.lightbox [class*="next"],
.lightbox [class*="close"],
.image-lightbox [class*="prev"],
.image-lightbox [class*="next"],
.image-lightbox [class*="close"] {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: .55rem !important;
}

.lightbox [class*="prev"],
.lightbox [class*="next"],
.image-lightbox [class*="prev"],
.image-lightbox [class*="next"] {
  font-size: clamp(2rem, 11vw, 4rem) !important;
  line-height: 1 !important;
}

.lightbox [class*="close"],
.image-lightbox [class*="close"] {
  font-size: clamp(1.7rem, 8vw, 3rem) !important;
  line-height: 1 !important;
}

/* Kill lightbox counter box styling if present */
.lightbox-counter,
.image-count,
.lightbox .counter,
.image-lightbox .counter {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* Mobile: put the inquiry form near the top and remove the main hero image */
@media (max-width: 1050px) {
  .hero-reel,
  .hero .hero-reel,
  .hero-section-clean .hero-visual-single,
  .hero-visual-single,
  .hero-image,
  .hero-photo {
    display: none !important;
  }

  .hero,
  .hero-section-clean {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: 72px !important;
  }

  .hero .hero-copy,
  .hero-section-clean .hero-copy {
    min-height: auto !important;
    height: auto !important;
    padding: 2.75rem 1.2rem 2.25rem !important;
  }

  /* Pull contact/form section up directly after the hero on mobile */
  .contact-section,
  #contact {
    padding-top: 2.5rem !important;
    order: -1;
  }

  body main {
    display: flex !important;
    flex-direction: column !important;
  }

  body main .hero,
  body main .hero-section-clean {
    order: 1 !important;
  }

  body main #contact,
  body main .contact-section {
    order: 2 !important;
  }

  body main #experience,
  body main .experience {
    order: 3 !important;
  }

  body main #pricing,
  body main .pricing-section {
    order: 4 !important;
  }

  body main #galleries,
  body main .gallery-accordion-section {
    order: 5 !important;
  }

  body main #service-area,
  body main .service-area-section {
    order: 6 !important;
  }

  body main .how-section {
    order: 7 !important;
  }

  .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .contact-intro,
  .contact-copy {
    max-width: 100% !important;
  }
}


/* Mobile-only repair: top inquiry form, lighter surface, and tighter vertical rhythm */
@media (max-width: 1050px) {
  .mobile-top-contact {
    display: block !important;
    background: var(--white) !important;
    color: var(--ink) !important;
    padding: calc(72px + 1.6rem) 1.2rem 2.6rem !important;
    border-top: 1px solid rgba(16, 16, 16, .08) !important;
    border-bottom: 1px solid rgba(16, 16, 16, .08) !important;
  }

  .mobile-top-contact .final-cta,
  .mobile-top-contact .clean-contact,
  .mobile-top-contact .mobile-contact-clone {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    color: var(--ink) !important;
  }

  .mobile-top-contact .mobile-form-heading {
    margin: 0 0 calc(1.15rem + 15px) !important;
    max-width: 100% !important;
    color: var(--ink) !important;
    font-family: var(--serif) !important;
    font-size: clamp(2.45rem, 14vw, 4.1rem) !important;
    line-height: .94 !important;
    letter-spacing: -.055em !important;
    font-weight: 600 !important;
    text-align: left !important;
  }

  .mobile-top-contact .cta-copy p {
    margin-bottom: 1rem !important;
    color: rgba(16, 16, 16, .68) !important;
  }

  .mobile-top-contact .contact-policy {
    display: none !important;
  }

  .mobile-top-contact .booking-form,
  .mobile-top-contact .clean-booking-form {
    gap: .9rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .mobile-top-contact .form-row {
    grid-template-columns: 1fr !important;
    gap: .9rem !important;
  }

  .mobile-top-contact input,
  .mobile-top-contact textarea,
  .mobile-top-contact .custom-select-trigger {
    min-height: 48px !important;
    background: #fff !important;
    border-color: rgba(16, 16, 16, .18) !important;
    color: var(--ink) !important;
  }

  .mobile-top-contact textarea {
    min-height: 116px !important;
  }

  .mobile-top-contact .form-submit,
  .mobile-top-contact button[type="submit"] {
    background: var(--ink) !important;
    border-color: var(--ink) !important;
    color: var(--white) !important;
  }

  .mobile-top-contact + .booking-band,
  .booking-band {
    gap: 1rem !important;
    padding-top: 2.35rem !important;
    padding-bottom: 2.35rem !important;
  }

  .booking-band blockquote p {
    margin-bottom: 1.15rem !important;
  }

  .booking-band cite {
    margin-top: .9rem !important;
  }

  .band-cta {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .band-cta .eyebrow {
    margin-bottom: 1rem !important;
  }

  .band-cta h2 {
    margin-bottom: 1rem !important;
  }

  .band-cta p:not(.eyebrow) {
    margin-bottom: 1.5rem !important;
  }

  .experience {
    gap: 0 !important;
    padding-top: 2.6rem !important;
    padding-bottom: 2.6rem !important;
  }

  .experience-intro {
    margin-bottom: 1.2rem !important;
  }

  .experience-intro .eyebrow {
    margin-bottom: 1.25rem !important;
  }

  .experience h2 {
    margin-bottom: 1rem !important;
  }

  .experience-copy,
  .experience-copy.left-copy {
    margin: 0 !important;
  }

  .steps {
    margin-top: 1.1rem !important;
    gap: 0 !important;
  }

  .steps article {
    min-height: 0 !important;
    padding: 1.35rem 0 !important;
  }

  .steps article:first-child {
    padding-top: 1.1rem !important;
  }

  .steps .icon {
    margin-bottom: .85rem !important;
    font-size: 1.4rem !important;
  }
}


/* Mobile menu animation */
@media (max-width: 1050px) {
  .site-header .menu-toggle i::before,
  .site-header .menu-toggle i::after,
  button.menu-toggle i::before,
  button.menu-toggle i::after {
    transition: top .22s ease, bottom .22s ease, transform .24s ease !important;
  }

  .site-header .nav-links {
    display: grid !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 72px !important;
    z-index: 99 !important;
    gap: 1rem !important;
    max-height: 0 !important;
    padding: 0 1.2rem !important;
    overflow: hidden !important;
    background: rgba(255, 250, 242, .98) !important;
    border-top: 1px solid transparent !important;
    border-bottom: 1px solid transparent !important;
    opacity: 0 !important;
    transform: translateY(-14px) !important;
    pointer-events: none !important;
    transition: max-height .38s ease, padding .38s ease, opacity .24s ease, transform .32s ease, border-color .22s ease !important;
  }

  .site-header.is-open .nav-links,
  .site-header.nav-open .nav-links,
  .site-header .nav-links.open {
    max-height: 340px !important;
    padding: 1.2rem !important;
    border-top-color: var(--line) !important;
    border-bottom-color: var(--line) !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .site-header .nav-links a {
    display: block !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    transition: opacity .22s ease, transform .28s ease !important;
  }

  .site-header.is-open .nav-links a,
  .site-header.nav-open .nav-links a,
  .site-header .nav-links.open a {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .site-header .nav-links a:nth-child(1) {
    transition-delay: .04s !important;
  }

  .site-header .nav-links a:nth-child(2) {
    transition-delay: .08s !important;
  }

  .site-header .nav-links a:nth-child(3) {
    transition-delay: .12s !important;
  }

  .site-header .nav-links a:nth-child(4) {
    transition-delay: .16s !important;
  }

  .site-header .nav-links a:nth-child(5) {
    transition-delay: .20s !important;
  }

  @media (prefers-reduced-motion: reduce) {
    .site-header .menu-toggle i::before,
    .site-header .menu-toggle i::after,
    button.menu-toggle i::before,
    button.menu-toggle i::after,
    .site-header .nav-links,
    .site-header .nav-links a {
      transition: none !important;
    }
  }
}


/* Final mobile-only override: hide redundant hero after the top form */
@media (max-width: 1050px) {
  .hero-section-clean {
    display: none !important;
  }
}


/* Final mobile booking band spacing after image removal */
@media (max-width: 720px) {
  .booking-band {
    gap: 2.4rem !important;
    padding-top: 3rem !important;
    padding-bottom: 3.25rem !important;
  }

  .booking-band blockquote {
    margin-bottom: .35rem !important;
  }

  .booking-band cite {
    margin-top: 1.35rem !important;
  }

  .band-cta .eyebrow {
    margin-bottom: 1.45rem !important;
  }

  .band-cta h2 {
    margin-bottom: 1.25rem !important;
  }

  .band-cta p:not(.eyebrow) {
    margin-bottom: 2rem !important;
  }
}


/* Client review stack in booking band */
.booking-band blockquote {
  grid-column: 1;
}

.booking-band .band-cta {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
}

.booking-band blockquote + blockquote {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 250, 242, .16);
}

.booking-band blockquote span {
  display: inline-block;
  font-size: 2.4rem;
}

.booking-band blockquote p {
  margin-bottom: 1rem;
}

.booking-band blockquote cite {
  margin-top: 0;
}

@media (max-width: 720px) {
  .booking-band blockquote,
  .booking-band .band-cta {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .booking-band blockquote + blockquote {
    padding-top: 1.25rem !important;
  }
}


/* Lightbox arrows: keep hover from changing vertical position */
.lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.04) !important;
}

@media (max-width: 720px) {
  .lightbox-arrow:hover {
    transform: scale(1.04) !important;
  }
}

/* Regular button hover states */
.button,
.price-button,
.form-submit,
.contact-button {
  transform: none !important;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease !important;
}

.button::before,
.price-button::before,
.form-submit::before,
.contact-button::before {
  content: none !important;
  display: none !important;
}

.button:hover,
.button:focus-visible,
.hero-actions .button:hover,
.hero-actions .button:focus-visible,
.price-button:hover,
.price-button:focus-visible,
.form-submit:hover,
.form-submit:focus-visible {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
  transform: none !important;
  box-shadow: none !important;
}

.button.outline:hover,
.button.outline:focus-visible,
.contact-button:hover,
.contact-button:focus-visible {
  background: var(--white) !important;
  color: var(--ink) !important;
  border-color: var(--white) !important;
  transform: none !important;
  box-shadow: none !important;
}

.category-price-card .price-button:hover,
.category-price-card .price-button:focus-visible,
.category-price-card:hover .price-button:hover,
.category-price-card:hover .price-button:focus-visible {
  background: var(--white) !important;
  color: var(--ink) !important;
  border-color: var(--white) !important;
}

.mobile-top-contact .form-submit:hover,
.mobile-top-contact .form-submit:focus-visible {
  background: var(--white) !important;
  color: var(--ink) !important;
  border-color: var(--white) !important;
}

.form-submit:hover,
.form-submit:focus-visible,
.clean-booking-form .form-submit:hover,
.clean-booking-form .form-submit:focus-visible,
.booking-form .form-submit:hover,
.booking-form .form-submit:focus-visible {
  border-color: var(--white) !important;
}

.gallery-load-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .price-button,
  .form-submit,
  .contact-button {
    transition: none !important;
  }
}

/* Stacked brand wordmark */
.site-header .brand-wordmark {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: max-content;
  font-family: var(--serif);
  font-size: 2rem !important;
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.035em;
}

.site-header .brand-wordmark span {
  display: block;
}

@media (max-width: 1050px) {
  .site-header .brand-wordmark {
    display: flex !important;
    flex-direction: row;
    gap: .24em;
    white-space: nowrap;
    font-size: 1.25rem !important;
    line-height: 1;
  }
}

@media (min-width: 1051px) {
  .site-header,
  .desktop-left-nav,
  .hero-index.desktop-left-nav {
    width: 200px !important;
  }

  main,
  .site-footer {
    margin-left: 200px !important;
    width: calc(100% - 200px) !important;
  }

  .left-nav-link {
    transition: color .16s ease !important;
  }

  .left-nav-link:hover,
  .left-nav-link:focus-visible {
    color: #000 !important;
    outline: none;
  }

  .left-nav-link:hover strong,
  .left-nav-link:hover span,
  .left-nav-link:focus-visible strong,
  .left-nav-link:focus-visible span {
    font-weight: 900 !important;
  }
}
