/* ============================================================
   Cecille Artistry — global design system + shared chrome
   Loads after tokens.css. Page-specific overrides (Shade
   Symphonies pink accent) live in shade-symphonies.css.
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* safety net against 375px overflow from fixed-position chrome */
}

body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  min-height: 100vh;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  font-family: inherit;
  cursor: pointer;
  touch-action: manipulation;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.003em;
  text-wrap: balance;
  margin: 0 0 0.5em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  margin: 0 0 1em;
}

em {
  font-style: italic;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
  background: var(--color-bg);
}

.section--alt {
  background: var(--color-bg-alt);
}

:target {
  scroll-margin-top: var(--header-h);
}

.prose-center {
  max-width: var(--measure);
  margin: 0 auto;
}

.measure {
  max-width: 62ch;
}

.section__head {
  max-width: 940px;
  margin: 0 0 48px;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: 12px;
}

.hairline {
  border: none;
  border-top: 1px solid var(--color-gold);
  opacity: 0.5;
  margin: 40px 0;
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  .container {
    padding: 0 20px;
  }
}

/* Placed after the mobile section-padding override so this padding-top always
   wins regardless of viewport (the mobile rule above only changes padding-bottom
   for flush-header sections; this keeps content clear of the fixed header). */
.section--flush-header {
  padding-top: calc(var(--header-h) + 60px);
}

/* ---------- Intro band (framed pull-quote style intro after the hero) ---------- */
.intro-band {
  padding: 64px 0;
}

.intro-band__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 0;
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.55);
  border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.55);
}

.intro-band__heading em {
  padding-bottom: 0.06em;
}

.intro-band__text {
  margin: 0;
  color: var(--color-fg-muted);
}

/* ---------- Dark color-block section ---------- */
.section--deep {
  background: var(--color-bg-deep);
  color: var(--color-on-deep);
}

.section--deep .eyebrow {
  color: var(--color-on-deep-muted);
}

/* ---------- Accessibility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0;
  top: -100px;
  background: var(--color-fg);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn--gold {
  background: var(--color-accent);
  color: var(--color-fg);
  border-color: var(--color-accent);
}

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

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--outline {
  background: transparent;
  color: var(--color-fg);
  border-color: var(--color-fg);
}

.btn--outline:hover {
  background: var(--color-fg);
  color: var(--color-bg);
}

/* ---------- Social icons ---------- */
.socials {
  display: flex;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-fg);
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--color-gold);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  color: #fff;
  background: transparent;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-solid {
  background: var(--color-bg);
  color: var(--color-fg);
  box-shadow: 0 1px 0 var(--color-gold);
}

.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  position: relative;
}

.nav__link:not(.nav__link--pill)[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.nav__link--pill::after {
  display: none;
}

.nav__link--pill {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-fg);
}

.site-header:not(.is-solid) .nav__link--pill {
  background: var(--color-accent);
  color: var(--color-fg);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: inherit; /* buttons don't inherit color from the UA stylesheet by
    default, which breaks the currentColor chain from .site-header and lets
    the browser's own control color (e.g. system blue) show through instead */
  -webkit-tap-highlight-color: transparent;
  z-index: 510;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  background: var(--color-bg);
  color: var(--color-fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 505;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-overlay__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-overlay__link {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.nav-overlay__link--pill {
  min-height: 44px;
  padding: 10px 28px;
  border-radius: 999px;
  background: var(--color-accent);
  font-family: var(--font-body);
  font-size: 1rem;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-fg);
  color: var(--color-bg);
  padding: 64px 0 32px;
}

.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer keeps its own compact scale; nothing here inherits the body's fluid clamp. */
.site-footer__col p {
  margin: 0 0 6px;
}

.site-footer__col p:last-child {
  margin-bottom: 0;
}

.site-footer .wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.site-footer__heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.site-footer__subbrand {
  color: var(--color-gold);
  font-size: 0.85em;
}

.site-footer__tagline,
.site-footer__coverage {
  color: rgba(255, 249, 221, 0.7);
  font-size: 0.9rem;
}

.site-footer__contact {
  font-size: 0.9rem;
  overflow-wrap: break-word;
}

.site-footer .social-link {
  color: var(--color-bg);
}

.site-footer .social-link:hover {
  color: var(--color-gold);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav a {
  font-size: 0.9rem;
  opacity: 0.85;
}

.site-footer__nav a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.site-footer__copy {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 40px 0 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-color: var(--color-fg); /* charcoal fallback while image loads */
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.35) 45%, rgba(10, 10, 10, 0.65) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero__heading {
  font-size: var(--fs-hero);
  line-height: 1.15;
  padding-bottom: 0.08em; /* clearance for the italic accent word's descender */
  color: #fff;
  margin-bottom: 0.3em;
}

.hero__subtext {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  /* The scroll hint's own footprint (28px offset + ~55px of text/line) is
     fixed regardless of viewport height. Anchoring hero content to the
     bottom and reserving exactly that footprint plus a 10px gap guarantees
     the CTA row never crowds it, on any phone -- centering the content
     instead would shift the CTA row and the scroll hint together and can't
     reliably hold a fixed gap between them. */
  .hero {
    align-items: flex-end;
  }

  .hero__content {
    padding-bottom: 93px;
  }
}

.hero__scroll-hint::after {
  content: "";
  width: 1px;
  height: 28px;
  background: currentColor;
  opacity: 0.6;
  animation: scrollhint 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-hint::after {
    animation: none;
  }
}

@keyframes scrollhint {
  0%, 100% { transform: scaleY(0.6); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 0.8; }
}

[data-hero-sentinel] {
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 1px;
}

/* ---------- Reveal motion system ---------- */
[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  [data-reveal="left"] {
    transform: translateX(-28px);
  }
  [data-reveal="right"] {
    transform: translateX(28px);
  }
  [data-reveal="fade"] {
    transform: none;
  }
  [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border-radius: 4px;
  overflow: hidden;
}

.card__media {
  aspect-ratio: var(--ar-portrait);
  overflow: hidden;
  background: var(--color-accent);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 20px;
}

.card__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 4px 0 0;
}

/* ---------- Portfolio preview (home) ---------- */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 16px;
}

@media (min-width: 700px) {
  .preview-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ---------- Services overview (home) ---------- */
.services-preview {
  display: grid;
  gap: 24px;
}

@media (min-width: 800px) {
  .services-preview {
    grid-template-columns: 1fr 1fr;
  }
}

.services-preview__card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.services-preview__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services-preview__card:hover img {
  transform: scale(1.04);
}

.services-preview__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 12%, rgba(10, 10, 10, 0.5) 55%, rgba(10, 10, 10, 0.88) 100%);
}

.services-preview__body {
  position: relative;
  padding: 28px;
}

.services-preview__body h3 {
  color: #fff;
}

.services-preview__body p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Approach / numbered list ---------- */
.approach-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 700px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.approach-item__number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 8px;
}

.approach-item__media {
  aspect-ratio: var(--ar-landscape);
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

/* ---------- Testimonial carousel ---------- */
.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__slide {
  scroll-snap-align: start;
  flex: 0 0 100%;
  padding: 0 24px;
  text-align: center;
}

.carousel__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.35rem);
  line-height: 1.4;
  padding-bottom: 0.1em;
  max-width: 42ch;
  margin: 0 auto 20px;
}

.carousel__cite {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: inherit;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel__arrow:hover {
  background: rgba(var(--color-gold-rgb), 0.14);
  transform: translateY(-1px);
}

.carousel__dots {
  display: flex;
  gap: 0;
}

.carousel__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel__dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-on-deep-muted);
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.carousel__dot.is-active::before {
  opacity: 1;
  background: var(--color-gold);
  transform: scale(1.2);
}

/* ---------- Booking CTA banner ---------- */
.cta-banner {
  background: var(--color-accent);
  text-align: center;
  padding: 72px 0;
}

.cta-banner h2 {
  margin-bottom: 20px;
}

/* ---------- Gallery (portfolio grid + filters) ---------- */
.gallery-toggle {
  display: inline-flex;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 24px;
}

.gallery-toggle__btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  color: var(--color-fg);
}

.gallery-toggle__btn.is-active {
  background: var(--color-accent);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filters__btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--color-fg-muted);
  background: transparent;
  font-size: 0.85rem;
  color: var(--color-fg-muted);
}

.gallery-filters__btn.is-active {
  border-color: var(--color-gold);
  color: var(--color-fg);
  background: var(--color-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-accent);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card__media {
  aspect-ratio: var(--ar-portrait);
  overflow: hidden;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card__media img {
  transform: scale(1.06);
}

.gallery-card__label {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--color-fg);
}

/* Before/after slider */
.compare {
  position: relative;
  aspect-ratio: var(--ar-portrait);
  overflow: hidden;
  user-select: none;
}

.compare__after,
.compare__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.compare__before-wrap img {
  width: 200%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
  touch-action: none;
}

.compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.compare__tag {
  position: absolute;
  bottom: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.6);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
}

.compare__tag--before {
  left: 10px;
}

.compare__tag--after {
  right: 10px;
}

/* Video facade */
.gallery-card--video .gallery-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card__play-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fg);
  transition: transform 0.2s ease;
}

.gallery-card--video:hover .gallery-card__play-badge {
  transform: scale(1.08);
}

.gallery-card__reel-tag {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.6);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Reel card thumbnails share the same 4:5 wrapper as photo cards (so mixed
   rows have no filler gaps under the shorter photo cards) — only the
   lightbox plays the reel at its true 9:16. The poster's crop is nudged
   toward the top so faces near the top of the original 9:16 frame survive
   the squarer 4:5 crop. */
.gallery-card--reel .gallery-card__media img {
  object-position: 50% 25%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(10, 10, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.lightbox__content {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 90vh;
}

.lightbox__content img,
.lightbox__content video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
}

.lightbox__content video {
  max-height: 85vh;
  object-fit: cover;
}

/* Instagram reel embed — sized for the vertical 9:16 embed, clamped to the
   viewport so it never overflows on short screens. */
.lightbox__embed {
  position: relative;
  width: min(90vw, 400px);
  aspect-ratio: 9 / 16;
  max-height: 90vh;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.lightbox__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(10, 10, 10, 0.5);
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  z-index: 1;
}

/* ---------- Services page ---------- */
.services-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card .card__body p {
  font-size: 0.95rem;
}

.service-card__price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-gold);
  font-size: 0.85rem;
  margin: 0;
}

.service-card__price span {
  transition: transform 0.2s ease;
}

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

.service-card__price:hover span {
  transform: translateX(3px);
}

.service-row {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
}

@media (min-width: 800px) {
  .service-row {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .service-row--reverse .service-row__media {
    order: 2;
  }
}

.service-row__media {
  aspect-ratio: var(--ar-portrait);
  overflow: hidden;
  border-radius: 4px;
}

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

.service-row__meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-fg-muted);
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact-row__media {
  aspect-ratio: var(--ar-portrait);
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 32px;
}

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

.contact-card {
  background: var(--color-surface);
  border-radius: 4px;
  padding: 32px;
}

.contact-card__group {
  margin-bottom: 24px;
}

.contact-card__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 4px;
}

.text-muted {
  color: var(--color-fg-muted);
}

.hairline--tight {
  margin: 24px 0;
}

.contact-portrait {
  border-radius: 4px;
  margin-bottom: 32px;
}

.contact-card__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card__step {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.contact-card__step-number {
  font-family: var(--font-display);
  color: var(--color-gold);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--color-fg-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--color-fg-muted);
  border-radius: 4px;
  background: var(--color-surface);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.form-status[data-state="error"] {
  background: #fdeaea;
  color: #7a1f1f;
}

.form-status[data-state="success"] {
  background: #eaf6ea;
  color: #1f5c2a;
}

.form-status:empty {
  display: none;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}
