:root {
  --bg: #f7edf4;
  --bg-soft: #fff8fc;
  --bg-muted: #f1dce8;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-2: rgba(255, 255, 255, 0.78);
  --panel-3: rgba(255, 255, 255, 0.94);
  --text: #241821;
  --muted: #5b4b57;
  --muted-2: #836c7b;
  --line: rgba(80, 42, 65, 0.12);
  --pink: #e7038a;
  --pink-mid: #b54b86;
  --pink-dark: #8e426d;
  --pink-soft: rgba(231, 3, 138, 0.1);
  --pink-soft-2: rgba(231, 3, 138, 0.05);
  --shadow: 0 18px 52px rgba(111, 58, 88, 0.12);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { border: 0; background: none; padding: 0; }

*::-webkit-scrollbar {
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: #f2dde8;
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e7038a, #b54b86);
  border-radius: 999px;
  border: 3px solid #f2dde8;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section { position: relative; padding: 88px 0; overflow: clip; }
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section-kicker,
.small-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--muted-2);
}

h1, h2, h3, p, blockquote, ul { margin-top: 0; }
h1 {
  font-size: clamp(2.85rem, 6vw, 4.95rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.14rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
p { color: var(--muted); }

.site-header,
.subpage-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled,
.solid-header {
  background: rgba(255, 248, 252, 0.9);
  border-bottom: 1px solid rgba(94, 59, 79, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(122, 69, 97, 0.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
}
.brand img {
  width: clamp(78px, 7vw, 94px);
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.desktop-nav a,
.footer-pill-links a,
.call-link,
.footer-contact-list a,
.footer-contact-list span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(94, 59, 79, 0.1);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font-size: 0.94rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.desktop-nav a:hover,
.footer-pill-links a:hover,
.call-link:hover,
.desktop-nav a.active-link,
.footer-contact-list a:hover,
.footer-contact-list span:hover {
  transform: translateY(-2px);
  background: var(--pink-soft);
  border-color: rgba(231, 3, 138, 0.34);
  box-shadow: 0 10px 24px rgba(231, 3, 138, 0.12);
}
.call-link {
  background: linear-gradient(135deg, var(--pink), #ff3fab);
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(231, 3, 138, 0.18);
}
.call-link:hover {
  background: linear-gradient(135deg, #d40380, #f93aa7);
  color: white;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(94, 59, 79, 0.1);
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
  cursor: pointer;
}
.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}
.mobile-menu {
  display: none;
  background: rgba(255, 248, 252, 0.98);
  border-top: 1px solid rgba(94, 59, 79, 0.08);
}
.mobile-menu.active { display: block; }
.mobile-menu-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 8px 0 24px;
  display: grid;
  gap: 8px;
}
.mobile-menu-inner a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(94,59,79,.08);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(4, 3, 6, 0.22) 0%, rgba(4, 3, 6, 0.5) 44%, rgba(4, 3, 6, 0.88) 100%),
    linear-gradient(125deg, rgba(231, 3, 138, 0.14), transparent 38%, rgba(0, 0, 0, 0.14) 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 126px 0 62px;
  max-width: 760px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: #f7f2f6;
}

.hero-content p {
  max-width: 640px;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  color: #ddd7e2;
}
.hero-actions,
.work-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions { margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff3fab);
  color: white;
  box-shadow: 0 14px 28px rgba(231, 3, 138, 0.23);
}
.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}
.hero-notes {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: #ddd7e2;
  font-size: 0.92rem;
}

.intro-band {
  background:
    linear-gradient(180deg, #fff9fc, #f8edf4),
    radial-gradient(circle at top right, rgba(231, 3, 138, 0.08), transparent 36%);
}
.intro-band::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(231,3,138,.06), transparent 0 24%),
    radial-gradient(circle at 86% 72%, rgba(255, 58, 156, .08), transparent 0 18%);
}
.services-section {
  background:
    linear-gradient(180deg, #fff1f8, #fff8fc);
}
.services-section::before {
  background:
    radial-gradient(circle at 85% 18%, rgba(231,3,138,.07), transparent 0 20%),
    linear-gradient(0deg, rgba(231,3,138,.045), rgba(231,3,138,.045));
  opacity: .35;
}
.services-section,
.services-section p,
.services-section .section-kicker,
.services-section .small-label,
.services-section li,
.services-section .service-number,
.services-section h2,
.services-section h3 { color: #231720; }
.services-section .section-kicker,
.services-section .small-label,
.services-section .service-number { color: #6f5c69; }
.services-section .icon-wrap,
.work-section .icon-wrap,
.about-section .icon-wrap { color: var(--pink); }
.work-section {
  background:
    linear-gradient(180deg, #ffe4f1, #fff8fc);
}
.work-section::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(231,3,138,.09), transparent 0 26%),
    linear-gradient(135deg, rgba(255,255,255,.6), transparent 25% 100%);
}
.process-section {
  background:
    linear-gradient(180deg, #f9f0f6, #f4e6ef);
}
.process-section::before {
  background:
    linear-gradient(90deg, rgba(231,3,138,.045) 0, rgba(231,3,138,.045) 1px, transparent 1px, transparent 100%),
    linear-gradient(rgba(231,3,138,.045) 0, rgba(231,3,138,.045) 1px, transparent 1px, transparent 100%);
  background-size: 140px 140px;
  opacity: .35;
}
.process-section,
.process-section p,
.process-section .section-kicker,
.process-section h2,
.process-section h3,
.process-section .process-card span { color: #241821; }
.process-section .section-kicker,
.process-section .process-card span { color: #715c6b; }
.about-section {
  background:
    linear-gradient(180deg, #fff8fc, #ffeaf5);
}
.about-section::before {
  background:
    radial-gradient(circle at 12% 82%, rgba(231,3,138,.08), transparent 0 24%),
    radial-gradient(circle at 90% 15%, rgba(255, 58, 156,.09), transparent 0 18%);
}
.reviews-section {
  background:
    linear-gradient(180deg, #fffafd, #fff0f7);
}
.reviews-section::before {
  background:
    radial-gradient(circle at 20% 15%, rgba(231,3,138,.07), transparent 0 20%),
    linear-gradient(120deg, rgba(255,255,255,.8), transparent 30%);
}
.reviews-section,
.reviews-section p,
.reviews-section .section-kicker,
.reviews-section h2,
.reviews-section h3,
.reviews-section .review-bottom,
.reviews-section .review-person strong { color: #241821; }
.reviews-section .section-kicker,
.reviews-section .review-bottom { color: #6f5c69; }
.contact-section {
  background:
    linear-gradient(180deg, #fe6fbe, #f21991);
}
.contact-section::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 0 22%),
    linear-gradient(90deg, rgba(255,255,255,.045), transparent 20% 80%, rgba(255,255,255,.045));
}
.site-footer {
  background: linear-gradient(180deg, #fc279c, #2d292b);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 56px;
}

.intro-grid,
.split-head,
.about-grid,
.contact-grid,
.subpage-hero-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: end;
}
.highlight-grid,
.service-grid,
.process-grid,
.review-grid {
  display: grid;
  gap: 20px;
}
.highlight-grid {
  margin-top: 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.highlight-card,
.service-card,
.process-card,
.review-card,
.privacy-card,
.about-frame,
.contact-form-panel,
.contact-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.highlight-card,
.process-card,
.review-card,
.privacy-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px;
}
.service-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(35,23,32,0.08);
  padding: 24px;
}
.highlight-card,
.process-card,
.service-card,
.work-card,
.gallery-card,
.about-frame,
.about-photo,
.contact-card,
.contact-form-panel,
.footer-contact-list a,
.footer-contact-list span,
.social-row a {
  transition: transform 0.2s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.highlight-card:hover,
.process-card:hover,
.service-card:hover,
.work-card:hover,
.gallery-card:hover,
.about-frame:hover,
.contact-card:hover,
.footer-contact-list a:hover,
.footer-contact-list span:hover,
.social-row a:hover {
  transform: translateY(-4px);
}
.highlight-card:hover,
.process-card:hover,
.service-card:hover,
.contact-card:hover,
.footer-contact-list a:hover,
.footer-contact-list span:hover {
  border-color: rgba(231, 3, 138, 0.28);
  box-shadow: 0 18px 42px rgba(18, 10, 16, 0.14);
}
.icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-soft);
  border: 1px solid rgba(231, 3, 138, 0.28);
  margin-bottom: 14px;
}
.icon-wrap.large { width: 56px; height: 56px; }
.icon-wrap svg,
.social-row svg,
.footer-socials svg,
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-grid {
  margin-top: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -50% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(231, 3, 138, 0.09);
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.service-number,
.process-card span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}
.service-card ul,
.expect-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-card li,
.expect-list li {
  position: relative;
  padding-left: 17px;
}
.service-card li::before,
.expect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.work-showcase {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}
.work-column {
  display: grid;
  gap: 20px;
}
.work-card,
.gallery-card,
.about-photo {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}
.work-card {
  min-height: 280px;
}
.work-card.hero-card { min-height: 520px; }
.work-card img,
.gallery-card img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.work-card:hover img,
.gallery-card:hover img,
.about-photo:hover img { transform: scale(1.06); }
.work-card::after,
.gallery-card::after,
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(10, 8, 13, 0.82) 100%);
}
.work-meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}
.work-meta strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.03em;
}
.work-meta em {
  display: block;
  font-style: normal;
  color: #e8dce6;
}
.work-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.work-cta-row { margin-top: 26px; }

.process-grid {
  margin-top: 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.process-card {
  min-height: 210px;
  position: relative;
  padding-top: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(35,23,32,0.08);
}
.process-card span { display: block; margin-bottom: 16px; }
.process-card h3,
.process-card p { color: #241821; }

.about-grid {
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
}
.mission-card {
  margin: 24px 0;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
}
.about-copy blockquote {
  margin: 0 0 24px;
  padding-left: 18px;
  border-left: 2px solid rgba(231, 3, 138, 0.5);
  color: white;
  font-size: clamp(1.1rem, 2vw, 1.36rem);
  line-height: 1.35;
}
.about-collage {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  align-items: stretch;
}
.about-frame {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
}
.about-frame.tall { min-height: 520px; }
.about-frame.wide { min-height: 520px; }
.about-photo {
  height: 100%;
  min-height: 100%;
}
.about-photo img.dave-photo { object-position: center 18%; }
.about-photo img.team-photo { object-position: center center; }
.about-note {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
.about-note strong { color: #fff; font-weight: 600; }
.about-note span:last-child { text-align: right; }

.reviews-head { align-items: center; }
.review-grid {
  margin-top: 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.review-card {
  text-align: left;
  cursor: pointer;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(35,23,32,0.08);
}
.review-stars {
  letter-spacing: 0.22em;
  color: #ffcd4e;
  margin-bottom: 16px;
}
.review-card p {
  color: #241821;
  font-size: 1.02rem;
}
.review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}
.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-person img,
.modal-review-header img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(36,24,33,0.12);
}
.review-read { color: #6f5c69; font-size: 0.93rem; }

.contact-grid {
  align-items: start;
  gap: 34px;
}
.contact-copy h2 { max-width: 540px; }
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 22px;
}
.contact-card,
.contact-form-panel {
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}
.contact-card {
  padding: 22px;
  display: grid;
  gap: 10px;
}
.contact-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 3, 138, 0.1);
  border: 1px solid rgba(231, 3, 138, 0.22);
  color: #fff;
}
.contact-card strong {
  font-size: 1.36rem;
  letter-spacing: -0.04em;
  word-break: break-word;
}
.contact-card em { color: var(--muted); font-style: normal; }
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.social-row a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.social-row a:hover {
  background: var(--pink-soft);
  border-color: rgba(231, 3, 138, 0.34);
}
.service-area { max-width: 560px; }

.contact-form-panel {
  padding: 28px;
}
.form-grid {
  display: grid;
  gap: 22px;
}
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-form-panel label {
  display: grid;
  gap: 7px;
}
.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #f2eaf0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.required-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(231,3,138,.18);
  border: 1px solid rgba(231,3,138,.28);
  color: #ffd5ec;
  font-size: 0.72rem;
  line-height: 1;
}
.contact-form-panel input,
.contact-form-panel textarea,
.selectBtn {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  color: white;
  padding: 0 18px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-form-panel textarea {
  resize: vertical;
  min-height: 176px;
  padding: 18px;
}
.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder,
.selectBtn { color: #b8afbc; }
.contact-form-panel input:hover,
.contact-form-panel textarea:hover,
.selectBtn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(231,3,138,.22);
}
.contact-form-panel input:focus,
.contact-form-panel textarea:focus,
.select.open .selectBtn,
.selectBtn:focus {
  outline: none;
  border-color: rgba(231,3,138,.55);
  box-shadow: 0 0 0 4px rgba(231,3,138,.12);
  background: rgba(255,255,255,0.07);
}
.contact-form-panel input:invalid:focus,
.contact-form-panel textarea:invalid:focus,
.select.invalid .selectBtn {
  border-color: rgba(255,118,158,.7);
  box-shadow: 0 0 0 4px rgba(255,118,158,.12);
}
.select {
  position: relative;
  width: 100%;
}
.selectValue {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.selectBtn {
  text-align: left;
  padding: 0 48px 0 18px;
  position: relative;
  cursor: pointer;
}
.selectBtn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #f5f2f7;
  border-bottom: 2px solid #f5f2f7;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}
.select.open .selectBtn::after { transform: translateY(-35%) rotate(225deg); }
.selectList {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #15101a;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  padding: 8px;
  display: none;
  z-index: 24;
}
.select.open .selectList { display: block; }
.selectOpt {
  padding: 12px 14px;
  border-radius: 12px;
  color: #f5f2f7;
  cursor: pointer;
}
.selectOpt:hover { background: rgba(255,255,255,.07); }
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.form-actions p { margin: 0; font-size: 0.95rem; }

.footer-grid {
  grid-template-columns: 1.05fr 1fr 0.9fr;
  align-items: start;
  gap: 42px;
}
.footer-brand-block img { width: 112px; margin-bottom: 18px; }
.footer-brand-block p { max-width: 420px; }
.footer-pill-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-contact-list {
  display: grid;
  gap: 12px;
}
.footer-contact-list a,
.footer-contact-list span {
  display: inline-flex;
  padding: 13px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  width: fit-content;
  max-width: 100%;
  color: var(--muted);
}
.footer-bottom {
  margin-top: 50px;
  padding: 20px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { font-weight: 700; }

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}
.modal.active { display: grid; place-items: center; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 5, 8, 0.76);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  width: min(calc(100% - 40px), 1040px);
  max-height: calc(100svh - 48px);
  overflow: auto;
  border-radius: 30px;
  background: #151019;
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  padding: 28px;
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
}
.modal-review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-right: 58px;
}
.modal-review-text {
  color: #ede8f0;
  font-size: 1.05rem;
}
.modal-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.before-after-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.before-after-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.before-after-card span {
  display: block;
  padding: 12px 16px;
  color: #fff;
}
.lightbox-panel {
  width: min(calc(100% - 40px), 1180px);
  padding: 20px;
}
.lightbox-panel img {
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
  border-radius: 20px;
}
.lightbox-copy {
  padding: 16px 8px 4px;
}
.lightbox-copy h3 { margin-bottom: 6px; }

.subpage-body {
  background: linear-gradient(180deg, #09070c, #110b14);
}
.subpage-main { padding-top: 0; }
.subpage-hero {
  padding: 150px 0 36px;
}
.gallery-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(231,3,138,.13), transparent 0 28%),
    linear-gradient(180deg, #0e0a11, #161019);
}
.privacy-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(231,3,138,.12), transparent 0 28%),
    linear-gradient(180deg, #0d0911, #161019);
}
.subpage-hero-grid { align-items: center; }
.gallery-page-section,
.privacy-section { padding-top: 44px; }
.gallery-curated {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: start;
}
.gallery-sidecard {
  position: sticky;
  top: 104px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.gallery-sidecard p { margin-bottom: 0; }
.gallery-stack {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  min-height: 240px;
  background: rgba(255,255,255,.03);
}
.gallery-card.card-a { grid-column: span 3; min-height: 350px; }
.gallery-card.card-b { grid-column: span 2; min-height: 280px; transform: translateY(36px); }
.gallery-card.card-c { grid-column: span 1; min-height: 210px; }
.gallery-card.card-d { grid-column: span 2; min-height: 220px; }
.gallery-card.card-e { grid-column: span 2; min-height: 330px; transform: translateY(-24px); }
.gallery-card.card-f { grid-column: span 2; min-height: 260px; }
.gallery-card.card-g { grid-column: span 3; min-height: 260px; }
.gallery-card.card-h { grid-column: span 3; min-height: 360px; transform: translateY(-20px); }
.gallery-card .placeholder-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 0.88rem;
}
.gallery-card .placeholder-meta span:last-child { color: #dfd2da; }
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}
.privacy-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}
.privacy-card h2,
.privacy-rich h2,
.privacy-rich h3 { color: #fff; }
.privacy-rich {
  border-radius: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.privacy-rich h2 { font-size: 1.4rem; margin-bottom: 18px; }
.privacy-rich h3 { font-size: 1.08rem; margin: 24px 0 10px; }
.privacy-rich p,
.privacy-rich li { color: var(--muted); }
.privacy-rich ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}
.privacy-rich .policy-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.compact-footer { padding-top: 56px; margin-top: 64px; }
.single-line { margin-top: 0; }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }



/* v3 refinement overrides */
.services-section,
.services-section p,
.services-section .section-kicker,
.services-section .small-label,
.services-section li,
.services-section .service-number,
.services-section h2,
.services-section h3,
.work-section,
.work-section p,
.work-section .section-kicker,
.work-section h2,
.work-section h3,
.process-section,
.process-section p,
.process-section .section-kicker,
.process-section h2,
.process-section h3,
.process-section .process-card span,
.about-section,
.about-section p,
.about-section .section-kicker,
.about-section h2,
.about-section h3,
.about-section blockquote,
.about-section li,
.reviews-section,
.reviews-section p,
.reviews-section .section-kicker,
.reviews-section h2,
.reviews-section h3,
.reviews-section .review-bottom,
.reviews-section .review-person strong {
  color: #241821;
}
.services-section .section-kicker,
.services-section .small-label,
.services-section .service-number,
.work-section .section-kicker,
.process-section .section-kicker,
.process-section .process-card span,
.about-section .section-kicker,
.reviews-section .section-kicker {
  color: #836c7b;
}
.intro-grid,
.split-head,
.about-grid,
.contact-grid,
.subpage-hero-grid,
.footer-grid { align-items: start; }
.highlight-card,
.service-card,
.process-card,
.review-card,
.privacy-card,
.about-frame,
.contact-form-panel,
.contact-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(94, 59, 79, 0.08);
  box-shadow: var(--shadow);
}
.work-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.work-column { display: contents; }
.work-card,
.work-card.hero-card {
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.9);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-meta {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  color: white;
}
.work-meta strong,
.work-meta em,
.work-tag { color: white; }
.work-meta em { font-style: normal; opacity: 0.82; display: block; margin-top: 4px; }
.work-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}
.about-grid {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
}
.about-copy {
  display: grid;
  gap: 20px;
}
.mission-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(181, 75, 134, 0.14);
}
.about-copy blockquote {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(94, 59, 79, 0.08);
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.35;
}
.expect-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}
.about-collage {
  display: grid;
  gap: 20px;
}
.about-frame {
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.about-frame.tall { min-height: auto; }
.about-frame.wide { min-height: auto; }
.about-photo { min-height: unset; }
.about-frame:first-child .about-photo { aspect-ratio: 1.35 / 1; }
.about-frame:last-child .about-photo { aspect-ratio: 1.72 / 1; }
.about-photo img.dave-photo { object-position: center 18%; }
.about-photo img.team-photo { object-position: center 45%; }
.about-note {
  display: none;
}
.contact-section,
.contact-section p,
.contact-section .section-kicker,
.contact-section h2,
.contact-section h3,
.contact-section .small-label,
.contact-section .field-label,
.contact-section .form-actions p,
.contact-section .contact-card em,
.contact-section .service-area { color: #fff4fb; }
.contact-section .contact-card strong,
.contact-section .contact-card svg,
.contact-section .contact-icon { color: white; }
.contact-form-panel {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.16);
}
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.16);
}
.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 12px 30px rgba(94, 38, 68, 0.18);
}
.contact-icon {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
}
.social-row a {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
}
.social-row a:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.24);
}
.required-mark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  border: none;
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.contact-form-panel label { gap: 13px; }
.form-grid { gap: 24px; }
.contact-form-panel input,
.contact-form-panel textarea,
.selectBtn {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.1);
}
.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder,
.selectBtn { color: rgba(255,244,251,0.72); }
.contact-form-panel input:hover,
.contact-form-panel textarea:hover,
.selectBtn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
}
.contact-form-panel input:focus,
.contact-form-panel textarea:focus,
.select.open .selectBtn,
.selectBtn:focus {
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.16);
}
.selectList {
  background: #fff7fb;
  border-color: rgba(94,59,79,.12);
}
.selectOpt { color: #241821; }
.selectOpt:hover { background: rgba(231,3,138,.08); }
.selectBtn::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.site-footer,
.site-footer p,
.site-footer h3,
.site-footer a,
.site-footer span { color: #fff4fb; }
.footer-brand-block img { width: 112px; margin-bottom: 18px; }
.footer-contact-list a,
.footer-contact-list span {
  color: #fff4fb;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}
.footer-contact-list a:hover,
.footer-contact-list span:hover {
  color: #fff4fb;
}
.modal-panel {
  background: #fff9fc;
  border: 1px solid rgba(94,59,79,0.1);
  box-shadow: 0 24px 80px rgba(94,59,79,.18);
}
.modal-close {
  background: rgba(94,59,79,0.06);
  border: 1px solid rgba(94,59,79,0.1);
  color: #241821;
}
.modal-review-text,
.lightbox-copy p,
.lightbox-copy h3,
.modal-panel h3,
.modal-panel strong,
.before-after-card span { color: #241821; }
.before-after-card {
  border: 1px solid rgba(94,59,79,0.1);
  background: rgba(255,255,255,0.8);
}
.subpage-body {
  background: linear-gradient(180deg, #fff9fc, #f7edf4);
}
.gallery-hero,
.privacy-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(231,3,138,.1), transparent 0 28%),
    linear-gradient(180deg, #fff9fc, #f2dde8);
}
.subpage-hero {
  padding: 92px 0 42px;
}
.gallery-page-section,
.privacy-section { padding-top: 44px; }
.gallery-curated,
.privacy-layout {
  display: block;
}
.gallery-sidecard,
.privacy-side {
  position: static;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(94,59,79,0.08);
}
.gallery-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.gallery-card,
.gallery-card.card-a,
.gallery-card.card-b,
.gallery-card.card-c,
.gallery-card.card-d,
.gallery-card.card-e,
.gallery-card.card-f,
.gallery-card.card-g,
.gallery-card.card-h {
  grid-column: span 1;
  min-height: 260px;
  transform: none;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(94,59,79,0.08);
  border-radius: 24px;
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-card .placeholder-meta {
  color: #241821;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.92));
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 18px 14px;
}
.gallery-card .placeholder-meta span:last-child { color: #6f5c69; }
.privacy-rich,
.privacy-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(94,59,79,0.08);
}
.privacy-rich h2,
.privacy-rich h3,
.privacy-card h2 { color: #241821; }
.privacy-rich p,
.privacy-rich li,
.privacy-card p { color: var(--muted); }
.subpage-hero-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(94,59,79,0.08);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.82);
}
.subpage-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .call-link { display: none; }
  .menu-toggle { display: flex; }
  .intro-grid,
  .split-head,
  .about-grid,
  .contact-grid,
  .subpage-hero-grid,
  .footer-grid,
  .gallery-curated,
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .highlight-grid,
  .service-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-sidecard,
  .privacy-side { position: static; }
  .gallery-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero-section { min-height: 88svh; }
  .hero-content { padding: 118px 0 48px; max-width: 100%; }
  .highlight-grid,
  .service-grid,
  .process-grid,
  .review-grid,
  .contact-card-grid,
  .two-up,
  .three-up,
  .modal-before-after,
  .about-collage,
  .work-showcase {
    grid-template-columns: 1fr;
  }
  .about-frame.tall,
  .about-frame.wide,
  .work-card.hero-card { min-height: 340px; }
  .gallery-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-showcase { grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card.card-a,
  .gallery-card.card-b,
  .gallery-card.card-c,
  .gallery-card.card-d,
  .gallery-card.card-e,
  .gallery-card.card-f,
  .gallery-card.card-g,
  .gallery-card.card-h {
    grid-column: span 1;
    min-height: 220px;
    transform: none;
  }
}

@media (max-width: 680px) {
  h1 { font-size: clamp(2.3rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 8vw, 2.15rem); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 82px; }
  .hero-content { padding-top: 104px; }
  .eyebrow-pill { font-size: 0.78rem; padding: 9px 12px; }
  .hero-notes,
  .footer-bottom,
  .form-actions,
  .review-bottom,
  .about-note,
  .work-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .work-meta {
    align-items: flex-start;
  }
  .highlight-card,
  .service-card,
  .process-card,
  .review-card,
  .privacy-card,
  .privacy-rich,
  .contact-form-panel,
  .contact-card,
  .modal-panel,
  .gallery-sidecard,
  .about-frame { padding: 22px; }
  .about-note span:last-child { text-align: left; }
  .gallery-stack { grid-template-columns: 1fr; }
  .about-collage { gap: 16px; }
  .about-frame.about-frame-dave,
  .about-frame.about-frame-team {
    width: 100%;
    justify-self: stretch;
  }
  .about-frame.about-frame-dave .about-photo,
  .about-frame.about-frame-team .about-photo {
    aspect-ratio: 1.55 / 1;
  }
  .about-photo img.dave-photo,
  .about-photo img.team-photo {
    transform: scale(1.08);
  }
}


/* v4 refinement overrides */
.hero-content h1 {
  color: #fff8fc;
  text-shadow: 0 10px 30px rgba(8, 4, 9, 0.5);
}
.hero-content p,
.hero-notes span,
.eyebrow-pill { color: #fff7fb; }

/* add a couple more dark-pink sections while keeping reviews light */
.intro-band {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.14), transparent 0 24%),
    linear-gradient(180deg, #fc6fbc, #fe249f);
}
.intro-band::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 100%),
    linear-gradient(rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 100%);
  background-size: 150px 150px;
  opacity: .26;
}
.intro-band h2,
.intro-band p,
.intro-band .section-kicker,
.intro-band .highlight-card h3,
.intro-band .highlight-card p,
.intro-band .icon-wrap { color: #fff7fb; }
.intro-band .section-kicker,
.intro-band .highlight-card .icon-wrap { color: #ffe2f0; }
.intro-band .highlight-card {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 18px 38px rgba(108, 41, 76, 0.16);
}
.intro-band .highlight-card:hover {
  background: rgba(255,255,255,0.18);
}

.process-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(255,255,255,0.14), transparent 0 18%),
    linear-gradient(180deg, #fc6fbc, #fe249f);
}
.process-section::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 100%),
    linear-gradient(rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 100%);
  background-size: 130px 130px;
  opacity: .24;
}
.process-section,
.process-section p,
.process-section h2,
.process-section h3,
.process-section .section-kicker,
.process-section .process-card span { color: #fff7fb; }
.process-section .section-kicker,
.process-section .process-card span { color: #ffe1ef; }
.process-section .process-card {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 18px 38px rgba(108, 41, 76, 0.16);
}
.process-section .process-card:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.22);
}

/* about section image control */
.about-grid { grid-template-columns: 1.02fr 1fr; gap: 42px; }
.about-collage {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  align-content: start;
  padding-top: 18px;
}
.about-frame {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
}
.about-frame.about-frame-dave {
  width: min(100%, 470px);
  justify-self: end;
}
.about-frame.about-frame-team {
  width: min(100%, 560px);
  justify-self: end;
}
.about-frame.about-frame-dave .about-photo { aspect-ratio: 1.42 / 1; }
.about-frame.about-frame-team .about-photo { aspect-ratio: 1.95 / 1; }
.about-photo img.dave-photo {
  object-position: center 14%;
  transform: scale(1.16);
}
.about-photo img.team-photo {
  object-position: center 50%;
  transform: scale(1.07);
}
.about-photo img {
  transition: transform .35s ease;
}
.about-frame:hover .about-photo img {
  transform: scale(1.12);
}
.about-frame.about-frame-dave:hover .about-photo img.dave-photo {
  transform: scale(1.22);
}

.mission-card,
.quote-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.mission-card::before,
.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(231,3,138,.06), transparent 55%);
  pointer-events: none;
}
.mission-card:hover,
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(122, 69, 97, 0.12);
  border-color: rgba(231,3,138,.16);
}
.quote-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(181,75,134,.12);
  box-shadow: var(--shadow);
  font-size: 1.34rem;
  line-height: 1.35;
}

/* contact form label and dropdown alignment */
.contact-grid { grid-template-columns: 0.88fr 1.12fr; gap: 28px; }
.contact-copy { max-width: 490px; }
.field-label {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
}
.field-label .required-mark {
  flex: 0 0 auto;
  margin-top: 0.18em;
}
.dropdown-row > label {
  grid-template-rows: auto 1fr;
}
.dropdown-row .field-label {
  min-height: 2.8em;
}
.dropdown-row .select {
  align-self: start;
}
.required-mark {
  width: 8px;
  height: 8px;
}

/* footer hover matches pills */
.footer-contact-list a,
.footer-contact-list span {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.footer-contact-list a:hover,
.footer-contact-list span:hover {
  transform: translateY(-2px);
  background: var(--pink-soft);
  border-color: rgba(231, 3, 138, 0.34);
  box-shadow: 0 10px 24px rgba(231, 3, 138, 0.12);
  color: var(--text);
}
.site-footer .footer-contact-list a:hover,
.site-footer .footer-contact-list span:hover {
  color: #241821;
}

@media (max-width: 1100px) {
  .about-frame.about-frame-dave,
  .about-frame.about-frame-team {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    max-width: none;
  }
  .about-collage {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .dropdown-row .field-label {
    min-height: auto;
    flex-wrap: wrap;
  }
  .field-label .required-mark {
    margin-top: 0.28em;
  }
}


/* v5 polish overrides */
.desktop-nav a,
.footer-pill-links a {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: #fff4fb;
  backdrop-filter: blur(10px);
}
.site-header.scrolled .desktop-nav a {
  background: rgba(255,255,255,0.62);
  border-color: rgba(94,59,79,0.10);
  color: var(--text);
}
.desktop-nav a:hover,
.footer-pill-links a:hover,
.desktop-nav a.active-link {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 12px 28px rgba(94, 38, 68, 0.16);
  color: #fff4fb;
}
.site-header.scrolled .desktop-nav a:hover,
.site-header.scrolled .desktop-nav a.active-link {
  background: rgba(255,255,255,0.82);
  border-color: rgba(231,3,138,0.22);
  color: var(--text);
}
.footer-pill-links a {
  color: #fff4fb;
}
.footer-pill-links a:hover {
  color: #fff4fb;
}

.contact-form-panel .form-grid {
  gap: 30px;
}
.contact-form-panel label {
  gap: 14px;
}
.contact-form-panel .three-up {
  align-items: start;
  column-gap: 24px;
  row-gap: 28px;
}
.contact-form-panel .three-up > label {
  align-content: start;
}
.contact-form-panel .field-label {
  margin-bottom: 2px;
}
.contact-form-panel textarea {
  min-height: 210px;
}

.about-frame.about-frame-dave,
.about-frame.about-frame-team {
  width: min(100%, 560px);
}
.about-frame.about-frame-dave .about-photo {
  aspect-ratio: 1.72 / 1;
}
.about-frame.about-frame-team .about-photo {
  aspect-ratio: 1.95 / 1;
}
.about-frame.about-frame-dave .about-photo img.dave-photo {
  object-position: center 16%;
  transform: scale(1.18);
}
.about-frame.about-frame-team .about-photo img.team-photo {
  object-position: center 50%;
  transform: scale(1.06);
}
.about-frame.about-frame-dave:hover .about-photo img.dave-photo {
  transform: scale(1.23);
}
.about-frame.about-frame-team:hover .about-photo img.team-photo {
  transform: scale(1.1);
}

.review-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(94,59,79,0.14);
  border-color: rgba(231,3,138,0.18);
  background: rgba(255,255,255,0.96);
}

.gallery-hero .subpage-hero-grid {
  grid-template-columns: 1fr;
  align-items: start;
}
.gallery-hero .subpage-hero-grid p {
  max-width: 720px;
}
.gallery-page-section .container {
  display: block;
}
.gallery-page-intro {
  max-width: 760px;
  margin-bottom: 28px;
}
.gallery-page-intro p:last-child {
  margin-bottom: 0;
}
.gallery-stack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.gallery-card {
  min-height: auto;
  border-radius: 24px;
  overflow: hidden;
}
.gallery-card img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}
.gallery-card .placeholder-meta {
  background: rgba(255,255,255,0.82);
}
@media (max-width: 1100px) {
  .gallery-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .gallery-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .gallery-stack {
    grid-template-columns: 1fr;
  }
}


/* v6 final fixes */
.subpage-body .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.subpage-body .subpage-hero {
  position: relative;
  overflow: clip;
}
.subpage-body .subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 11, 17, 0.58) 0%, rgba(18, 11, 17, 0.18) 22%, rgba(18, 11, 17, 0) 42%);
  pointer-events: none;
}
.subpage-body .subpage-hero > .container {
  position: relative;
  z-index: 1;
}
.subpage-body .site-header.scrolled {
  background: rgba(255, 248, 252, 0.92);
  border-bottom: 1px solid rgba(94, 59, 79, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(122, 69, 97, 0.08);
}
.privacy-card .btn-secondary {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(94,59,79,0.12);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(122, 69, 97, 0.10);
}
.privacy-card .btn-secondary:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(231,3,138,0.22);
  color: var(--text);
}
.about-grid {
  gap: 54px;
}
.about-frame.about-frame-dave,
.about-frame.about-frame-team {
  width: min(100%, 500px);
}
.contact-form-panel .form-grid {
  gap: 32px;
}
.contact-form-panel > label,
.contact-form-panel .three-up > label {
  gap: 8px;
}
.contact-form-panel .three-up {
  row-gap: 32px;
}
.contact-form-panel .field-label {
  margin-bottom: 0;
}
.site-footer .footer-contact-list a,
.site-footer .footer-contact-list span {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: #fff4fb;
  backdrop-filter: blur(10px);
}
.site-footer .footer-contact-list a:hover,
.site-footer .footer-contact-list span:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 12px 28px rgba(94, 38, 68, 0.16);
  color: #fff4fb;
}
@media (max-width: 900px) {
  .about-grid {
    gap: 38px;
  }
}


.footer-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-brand-link:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(231, 3, 138, 0.12);
}
.footer-brand-link img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 10px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.game-section {
  background: linear-gradient(180deg, #ffb2d7, #ff9ecc);
}
.game-section::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(231, 3, 138, 0.06), transparent 0 18%),
    radial-gradient(circle at 88% 76%, rgba(255, 166, 0, 0.08), transparent 0 20%);
}
.game-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}
.game-copy { max-width: 440px; }
.game-copy p:last-of-type { margin-bottom: 22px; }
.game-copy-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.game-copy-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(94,59,79,0.12);
  color: var(--muted);
  font-size: 0.9rem;
}
.game-panel {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.74));
  border: 1px solid rgba(94,59,79,0.1);
  box-shadow: var(--shadow);
}
.game-hud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.game-stat,
.game-action-btn,
.game-control {
  border-radius: 18px;
  border: 1px solid rgba(94,59,79,0.12);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 24px rgba(71, 37, 56, 0.08);
}
.game-stat {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  min-height: 64px;
  justify-content: center;
}
.game-stat span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.game-stat strong { font-size: 1rem; }
.game-action-btn,
.game-control {
  cursor: pointer;
  padding: 0 14px;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.game-action-btn:hover,
.game-control:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 3, 138, 0.34);
  box-shadow: 0 14px 28px rgba(231, 3, 138, 0.14);
  background: rgba(255,255,255,0.92);
}
.game-stage-wrap {
  position: relative;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfc 0%, #ffe7f4 100%);
  border: 1px solid rgba(94,59,79,0.1);
}
.game-stage {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
}
.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,248,252,0.58), rgba(255,237,244,0.86));
  transition: opacity .24s ease, visibility .24s ease;
}
.game-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.game-overlay h3 { margin: 0; font-size: 1.6rem; }
.game-overlay p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
}
.game-controls {
  display: none;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}
.game-control {
  min-height: 52px;
  font-weight: 600;
}
@media (max-width: 1100px) {
  .game-grid { grid-template-columns: 1fr; }
  .game-copy { max-width: none; }
}
@media (max-width: 760px) {
  .game-hud { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .game-controls { display: grid; }
}
@media (max-width: 520px) {
  .game-panel { padding: 14px; border-radius: 24px; }
  .game-hud { gap: 10px; }
  .game-stat { min-height: 58px; padding: 10px 12px; }
}
