/* Real Visual Media — cinematic editorial design system
   Palette: charcoal canvas, ivory editorial, brass accent. */

:root {
  --ink: #101317;          /* page canvas */
  --ink-2: #171b21;        /* raised panels */
  --ink-3: #1f242c;        /* borders on dark */
  --ivory: #f4f1ea;        /* light sections */
  --ivory-2: #ece7dc;
  --paper-ink: #1a1d22;    /* text on ivory */
  --cream: #efece4;        /* body text on dark */
  --muted: #a9a89f;        /* secondary text on dark */
  --muted-2: #6d6f66;      /* secondary text on ivory */
  --brass: #f86000;
  --brass-bright: #ff8534;
  --hairline: rgba(244, 241, 234, 0.14);
  --hairline-dark: rgba(26, 29, 34, 0.16);
  --serif: "Marcellus", "Times New Roman", serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--brass); color: var(--ink); }

/* ---------- typography ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: inherit;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 46ch; }

/* ---------- layout primitives ---------- */

.wrap { max-width: 1240px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }

.section-ivory {
  background: var(--ivory);
  color: var(--paper-ink);
}
.section-ivory .lede { color: var(--muted-2); }
.section-ivory .eyebrow { color: #d14f00; }
.section-ivory .eyebrow::before { background: #d14f00; }

.rule { border: 0; border-top: 1px solid var(--hairline); }
.section-ivory .rule { border-top-color: var(--hairline-dark); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--brass);
  border: 1px solid var(--brass);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248, 96, 0, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--hairline);
}
.btn-ghost:hover {
  background: transparent;
  border-color: var(--brass);
  color: var(--brass-bright);
  box-shadow: 0 8px 28px rgba(248, 96, 0, 0.18), inset 0 0 18px rgba(248, 96, 0, 0.06);
}

.section-ivory .btn-ghost { color: var(--paper-ink); border-color: var(--hairline-dark); }
.section-ivory .btn-ghost:hover { border-color: #d14f00; color: #d14f00; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(16, 19, 23, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem var(--pad);
  max-width: 1480px;
  margin: 0 auto;
}
.brand img { height: 54px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .brand img { height: 44px; }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding: 0.4rem 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav a.active { color: var(--brass-bright); }
.nav .btn { padding: 0.7rem 1.5rem; }

/* dropdown */
.nav-item { position: relative; }
.nav-item > .submenu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav-item:hover > .submenu, .nav-item:focus-within > .submenu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu a {
  display: block;
  padding: 0.55rem 1.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}
.submenu a::after { content: none; }
.submenu a:hover { color: var(--brass-bright); background: rgba(255,255,255,0.03); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  position: relative;
  z-index: 100;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -8px; left: 0; right: 0; }
.nav-toggle span::after { top: 8px; left: 0; right: 0; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(13, 15, 18, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  .nav a { font-size: 1rem; }
  .nav-item > .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: 0;
    text-align: center;
    display: none;
  }
  .nav-item.open > .submenu { display: block; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s var(--ease) both;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,19,23,0.55) 0%, rgba(16,19,23,0.15) 40%, rgba(16,19,23,0.88) 100%);
}
.hero-content {
  width: 100%;
  padding: 0 var(--pad) clamp(3.5rem, 8vw, 6.5rem);
  max-width: 1240px;
  margin: 0 auto;
}
.hero-content h1 { max-width: 17ch; text-wrap: balance; }
.hero-content .lede { margin-top: 1.4rem; color: rgba(244,241,234,0.85); }

.hero-inner {
  position: relative;
  min-height: 56vh;
}

/* subpage hero */
.page-hero {
  position: relative;
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
.page-hero .hero-media { z-index: -2; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,19,23,0.72), rgba(16,19,23,0.94));
}
.page-hero.plain { background: var(--ink); }
.page-hero.plain::after { content: none; }

/* ---------- galleries ---------- */

.masonry {
  columns: 3;
  column-gap: 1.1rem;
}
@media (max-width: 1000px) { .masonry { columns: 2; } }
@media (max-width: 620px) { .masonry { columns: 1; } }

.masonry .g-item { margin-bottom: 1.1rem; break-inside: avoid; }

.g-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-2);
  cursor: zoom-in;
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}
.g-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(248, 96, 0, 0.4);
}
.g-item img {
  width: 100%;
  transition: transform 0.8s var(--ease), opacity 0.5s;
}
.g-item:hover img { transform: scale(1.045); }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,19,23,0.55));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.g-item:hover::after { opacity: 1; }

/* ---------- home filmstrip marquee ---------- */

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: marquee-drift 46s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-drift {
  to { transform: translateX(calc(-50% - 0.55rem)); }
}
.marquee .g-item {
  width: clamp(280px, 30vw, 460px);
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.marquee .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.8s var(--ease), filter 0.6s;
}
.marquee .g-item:hover img { transform: scale(1.05); filter: saturate(1.08); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* ---------- portfolio mosaic ---------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 230px);
  grid-auto-flow: dense;
  gap: 1rem;
}
.mosaic .g-item { width: 100%; height: 100%; }
.mosaic .g-item img { width: 100%; height: 100%; object-fit: cover; }
.mosaic .g-item:first-child { grid-column: span 2; grid-row: span 2; }
.mosaic .g-item:nth-child(6n) { grid-column: span 2; }
.mosaic .g-item:nth-child(8n+5) { grid-row: span 2; }
@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(130px, 24vw, 200px); }
  .mosaic .g-item:nth-child(6n) { grid-column: span 1; }
  .mosaic .g-item:first-child { grid-column: span 2; }
}

.g-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(10, 12, 14, 0.78));
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  z-index: 1;
}
.g-item:hover .cap { opacity: 1; transform: none; }
.g-item .cap .zoom {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(244, 241, 234, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--brass-bright);
  background: rgba(16, 19, 23, 0.4);
  backdrop-filter: blur(4px);
}

/* tab-switch entrance */
[data-gallery-panel].panel-in { animation: panel-rise 0.55s var(--ease) both; }
@keyframes panel-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  [data-gallery-panel].panel-in { animation: none; }
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.8rem;
  margin: 2.5rem 0 2.8rem;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0;
}
.gallery-tabs .count {
  font-size: 0.62rem;
  color: var(--brass);
  vertical-align: super;
  margin-left: 0.35rem;
  letter-spacing: 0.05em;
}
.gallery-tabs button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0.7rem 0.15rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.gallery-tabs button:hover { color: var(--cream); }
.gallery-tabs button.active { color: var(--brass-bright); border-bottom-color: var(--brass); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(10, 12, 14, 0.92);
  backdrop-filter: blur(10px);
  padding: 3rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: lb-in 0.4s var(--ease) both;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: none; }
}
.lightbox .lb-meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lightbox .lb-meta .lb-count { color: var(--brass-bright); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--cream);
  font-size: 1.1rem;
  width: 52px; height: 52px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox button:hover { border-color: var(--brass); color: var(--brass-bright); }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) { .lightbox { padding: 1rem; } .lb-prev, .lb-next { display: none; } }

/* ---------- video facade ---------- */

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-2) center/cover no-repeat;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}
.video-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(248, 96, 0, 0.4);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(16,19,23,0.15), rgba(16,19,23,0.5));
  transition: background 0.4s;
}
.video-frame:hover .play { background: linear-gradient(180deg, rgba(16,19,23,0.05), rgba(16,19,23,0.35)); }
.play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,234,0.5);
  background: rgba(16,19,23,0.45);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.video-frame:hover .play-btn { transform: scale(1.08); border-color: var(--brass); }
.play-btn::after {
  content: "";
  margin-left: 5px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--cream);
}
.video-caption {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}

/* ---------- cards ---------- */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), rgba(248, 96, 0,0) 75%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 96, 0, 0.45);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(248, 96, 0, 0.18);
}

/* cards sitting on ivory sections flip to paper */
.section-ivory .card { background: #fff; border-color: var(--hairline-dark); }
.section-ivory .card:hover {
  border-color: rgba(209, 79, 0, 0.45);
  box-shadow: 0 22px 54px rgba(26, 29, 34, 0.14), 0 0 0 1px rgba(209, 79, 0, 0.22);
}
.section-ivory .card h3 { color: var(--paper-ink); }
.section-ivory .card p { color: var(--muted-2); }

/* feature card (services-we-offer, who-we-serve, boosts-listings blocks) */
.feature-card .card-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 96, 0, 0.75);
  margin-bottom: 1.1rem;
  transition: color 0.45s var(--ease), -webkit-text-stroke-color 0.45s;
}
.feature-card:hover .card-num { color: var(--brass); -webkit-text-stroke-color: var(--brass); }
.section-ivory .feature-card .card-num { -webkit-text-stroke-color: rgba(209, 79, 0, 0.8); }
.section-ivory .feature-card:hover .card-num { color: #d14f00; -webkit-text-stroke-color: #d14f00; }
.feature-card h3 { color: var(--cream); transition: color 0.35s; }
.feature-card p { color: var(--muted); margin-top: 0.6rem; font-size: 0.98rem; }
.feature-card .more { margin-top: auto; padding-top: 1.2rem; }

/* grids that balance by item count */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (max-width: 760px) { .cards-2 { grid-template-columns: 1fr; } }

.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.9rem, 1.6vw, 1.4rem); }
.grid-5 .step .num { font-size: 3.4rem; }
@media (max-width: 1100px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-5 { grid-template-columns: 1fr; } }

.service-card { display: flex; flex-direction: column; gap: 1rem; text-decoration: none; }
.service-card .icon img {
  height: 64px; width: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
  transition: transform 0.5s var(--ease), filter 0.5s;
}
.service-card:hover .icon img {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 8px 22px rgba(248, 96, 0, 0.35));
}
.service-card .more { transition: letter-spacing 0.35s var(--ease), color 0.35s; }
.service-card:hover .more { letter-spacing: 0.3em; color: var(--brass-bright); }
.section-ivory .service-card:hover .more { color: #d14f00; }
.service-card h3 { color: var(--cream); }
.service-card p { color: var(--muted); font-size: 0.98rem; }
.service-card .more {
  margin-top: auto;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

/* photo card (shop/portfolio previews) */
.photo-card { text-decoration: none; display: block; }
.photo-card .ph {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-2);
  position: relative;
  transition: box-shadow 0.45s var(--ease);
}
.photo-card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(248, 96, 0, 0);
  transition: border-color 0.45s;
  pointer-events: none;
}
.photo-card:hover .ph { box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(248, 96, 0, 0.35); }
.photo-card:hover .ph::after { border-color: rgba(248, 96, 0, 0.5); }
.photo-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.photo-card:hover .ph img { transform: scale(1.05); }
.photo-card h3 { margin-top: 1.1rem; font-size: 1.25rem; transition: color 0.3s; }
.photo-card:hover h3 { color: var(--brass-bright); }
.section-ivory .photo-card:hover h3 { color: #d14f00; }
.photo-card .price { color: var(--brass-bright); font-size: 0.95rem; margin-top: 0.25rem; }
.section-ivory .photo-card h3 { color: var(--paper-ink); }

/* ---------- pricing ---------- */

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; align-items: stretch; }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline-dark);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.price-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-bright), var(--brass));
  transform: scaleX(0);
  transition: transform 0.55s var(--ease);
}
.price-card:hover::before { transform: scaleX(1); }
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(209, 79, 0, 0.4);
  box-shadow: 0 24px 60px rgba(26, 29, 34, 0.14), 0 0 0 1px rgba(209, 79, 0, 0.2);
}
.price-card.featured { border-top: 3px solid var(--brass); }
.price-card .amount { transition: color 0.35s; }
.price-card:hover .amount { color: #d14f00; }
.price-card .flag {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.3rem; color: var(--paper-ink); }
.price-card .amount {
  font-family: var(--serif);
  font-size: 2.3rem;
  color: var(--paper-ink);
  margin: 0.8rem 0 0.2rem;
}
.price-card .amount small { font-size: 0.9rem; font-family: var(--sans); color: var(--muted-2); letter-spacing: 0.04em; }
.price-card .tagline { color: var(--muted-2); font-size: 0.92rem; min-height: 2.6em; }
.price-card ul { list-style: none; margin: 1.4rem 0 1.8rem; flex: 1; }
.price-card li {
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
  font-size: 0.94rem;
  color: #3a3d35;
  border-bottom: 1px solid rgba(26,29,34,0.07);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05rem;
  width: 0.7rem; height: 1px;
  background: var(--brass);
}

/* check-marked inclusion lists */
ul.includes { list-style: none; }
ul.includes li { padding-left: 1.7rem; }
ul.includes li::before {
  content: "✓";
  width: auto; height: auto;
  background: none;
  top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d14f00;
}
ul.includes.includes-dark { margin: 1rem 0 0; }
ul.includes.includes-dark li { color: var(--cream); border-bottom-color: var(--hairline); position: relative; padding: 0.5rem 0 0.5rem 1.7rem; }
ul.includes.includes-dark li::before { content: "✓"; position: absolute; left: 0; color: var(--brass-bright); }

/* menu-style price tiers with dotted leaders */
.tier-list { margin: 0.6rem 0 1.2rem; }
.tier-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.48rem 0;
  font-size: 0.93rem;
}
.tier-row .t-label { color: #3a3d35; }
.tier-row .t-dots { flex: 1; min-width: 1.2rem; border-bottom: 1px dotted rgba(26, 29, 34, 0.3); transform: translateY(-0.28em); }
.tier-row .t-price { font-weight: 700; color: #d14f00; white-space: nowrap; letter-spacing: 0.02em; }
.tier-solo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--paper-ink);
  padding: 0.3rem 0;
}
.tier-list.tier-dark .t-label { color: var(--muted); }
.tier-list.tier-dark .t-dots { border-bottom-color: rgba(244, 241, 234, 0.25); }
.tier-list.tier-dark .t-price { color: var(--brass-bright); }
.tier-list.tier-dark .tier-row { border-bottom: 0; font-size: 0.98rem; padding: 0.55rem 0; }

.amount-label { font-size: 0.82rem; color: var(--muted-2); letter-spacing: 0.04em; margin-top: 0.1rem; }

/* booking-interest pill above the contact form */
.interest-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(248, 96, 0, 0.5);
  background: rgba(248, 96, 0, 0.08);
  color: var(--cream);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.interest-pill strong { color: var(--brass-bright); }
.interest-pill a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, border-color 0.3s;
}
.interest-pill a:hover { color: var(--brass-bright); border-color: var(--brass); }
.section-ivory .interest-pill { color: var(--paper-ink); }
.section-ivory .interest-pill strong { color: #d14f00; }

/* ---------- steps / stats / faq ---------- */

.step {
  position: relative;
  padding: 1.6rem 1.4rem;
  border: 1px solid transparent;
  transition: border-color 0.45s, background 0.45s, transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.step:hover {
  border-color: rgba(248, 96, 0, 0.3);
  background: rgba(248, 96, 0, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.section-ivory .step:hover {
  background: rgba(209, 79, 0, 0.05);
  box-shadow: 0 16px 40px rgba(26, 29, 34, 0.1);
}
.step .num {
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass);
  opacity: 0.85;
  transition: color 0.45s var(--ease);
}
.step:hover .num { color: var(--brass); }
.step h3 { margin: 0.9rem 0 0.5rem; }
.step p { color: var(--muted); font-size: 0.98rem; }
.section-ivory .step p { color: var(--muted-2); }

.stat .n { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--brass-bright); }
.stat .l { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

details.faq {
  border-bottom: 1px solid var(--hairline);
}
.section-ivory details.faq { border-bottom-color: var(--hairline-dark); }
details.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  transition: color 0.3s, background 0.3s, padding-left 0.35s var(--ease);
}
details.faq summary:hover {
  color: var(--brass-bright);
  background: rgba(248, 96, 0, 0.04);
  padding-left: 0.9rem;
}
.section-ivory details.faq summary:hover { color: #d14f00; background: rgba(209, 79, 0, 0.05); }
details.faq[open] summary { color: var(--brass-bright); }
.section-ivory details.faq[open] summary { color: #d14f00; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--brass);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .a { padding: 0 0 1.5rem; color: var(--muted); max-width: 70ch; }
.section-ivory details.faq .a { color: var(--muted-2); }

/* ---------- forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--cream);
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brass);
}
.section-ivory .field input, .section-ivory .field textarea, .section-ivory .field select {
  background: #fff;
  color: var(--paper-ink);
  border-color: var(--hairline-dark);
}
.section-ivory .field label { color: var(--muted-2); }

.form-note { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; }
.form-success { padding: 1.2rem 1.4rem; border: 1px solid var(--brass); color: var(--brass-bright); margin-top: 1.4rem; display: none; }

/* ---------- footer ---------- */

.site-footer {
  background: #0c0e11;
  border-top: 1px solid var(--hairline);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.site-footer a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.site-footer a:hover { color: var(--brass-bright); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 0.28rem 0; }
.footer-logo img { height: 76px; width: auto; margin-bottom: 1.2rem; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #74766e;
}

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img, .hero-media video { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- misc ---------- */

.kicker-center { text-align: center; max-width: 720px; margin: 0 auto; }
.kicker-center .lede { margin: 1.2rem auto 0; }

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  overflow: hidden;
}
.cta-band .hero-media { z-index: -2; }
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(16, 19, 23, 0.82);
}
.cta-band h2 { max-width: 22ch; margin: 0 auto; text-wrap: balance; }

.checker { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.checker .txt { padding: clamp(2.5rem, 5vw, 4.5rem); display: flex; flex-direction: column; justify-content: center; }
.checker .pic { min-height: 380px; }
.checker .pic img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .checker { grid-template-columns: 1fr; }
  .checker .pic { order: -1; min-height: 260px; }
}

.breadcrumb { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brass-bright); }

.prose p { margin-bottom: 1.2em; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { margin: 0 0 1.2em 1.2em; }
.prose li { margin-bottom: 0.4em; }
