@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: var(--nav-h); }
[id] { scroll-margin-top: var(--nav-h); }
body { overflow-x: hidden; }
html.scroll-locked,
html.scroll-locked body { overflow: hidden; height: 100%; }

:root {
  --bg: #080808;
  --bg2: #111111;
  --text: #f0ede8;
  --muted: #888;
  --accent: #c8933f;
  --border: #222;
  --nav-h: 72px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #080808; }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid rgba(240,237,232,0.35); }
.btn--outline:hover { border-color: var(--text); opacity: 1; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0) 100%);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(8,8,8,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
/* When menu is open, REMOVE backdrop-filter from the nav element itself.
   backdrop-filter creates a new CSS containing block, which traps
   position:fixed children inside the nav instead of the viewport. */
.nav.menu-open {
  background: rgba(8,8,8,0.94);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(240,237,232,0.07);
}
/* Deliver the glass blur via a pseudo-element instead — this doesn't
   affect the containing block of fixed descendants. */
.nav.menu-open::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  z-index: 0;
  pointer-events: none;
}
.nav.menu-open .nav__inner {
  position: relative;
  z-index: 1;
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--text);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a, .nav__drop-btn {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.8);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.nav__links a:hover, .nav__drop-btn:hover { color: var(--text); }

.nav__dropdown { position: relative; }
.nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
/* Transparent bridge fills the 8px gap so the mouse never
   leaves .nav__dropdown while travelling down to the submenu */
.nav__submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav__dropdown:hover .nav__submenu,
.nav__dropdown:focus-within .nav__submenu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03em;
  color: rgba(240,237,232,0.75);
}
.nav__submenu a:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.nav__links .nav__cta {
  margin-left: 16px;
  background: var(--accent);
  color: #080808;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.nav__links .nav__cta:hover { color: #080808; opacity: 0.88; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.35) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  padding: 0 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(240,237,232,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.4);
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(240,237,232,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── SECTIONS ── */
.section { padding: 100px 40px; }
.section--dark { background: var(--bg2); }
.section__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.section__body {
  font-size: 17px;
  color: rgba(240,237,232,0.7);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
}

/* ── HOME: PITCH ── */
.pitch {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pitch__statement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
  border: 1px solid rgba(240,237,232,0.18);
  border-radius: 12px;
  padding: 40px 44px;
}
.pitch__statement strong { color: var(--accent); }

/* ── HOME: CATEGORIES GRID ── */
.categories {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.cat-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: background 0.3s;
}
.cat-card:hover .cat-card__overlay { background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.2) 60%); }
.cat-card__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
}
.cat-card__arrow {
  margin-left: auto;
  font-size: 22px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.cat-card:hover .cat-card__arrow { opacity: 1; transform: translateX(0); }

/* ── HOME: BIG QUOTE ── */
.quote-section {
  text-align: center;
  padding: 120px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.quote-section p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--text);
  border: 1px solid rgba(240,237,232,0.18);
  border-radius: 12px;
  padding: 48px 56px;
}
.quote-section p strong { color: var(--accent); }

/* ── GALLERY ── */
.gallery-header {
  padding: calc(var(--nav-h) + 60px) 40px 60px;
  text-align: center;
}
.gallery-header .section__title { margin-bottom: 12px; }
.gallery-header .section__body { margin: 0 auto; text-align: center; }

.gallery-grid {
  columns: 3;
  column-gap: 4px;
  padding: 0 40px 100px;
}
.gallery-grid__item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-grid__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s;
}
.gallery-grid__item:hover img { transform: scale(1.04); filter: brightness(0.85); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 32px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 28px;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.16); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ── ABOUT PAGE ── */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
}
.about-hero__overlay h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  letter-spacing: 0.03em;
}

.about-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.about-headshot {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.about-text { padding-top: 8px; }
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 17px;
  color: rgba(240,237,232,0.72);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}
.about-text .btn { margin-top: 16px; }

/* ── CONTACT PAGE ── */
.contact-wrap {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.contact-img {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--nav-h) + 60px) 64px 80px;
  max-width: 580px;
}
.contact-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 24px;
}
.contact-content p {
  font-size: 17px;
  color: rgba(240,237,232,0.68);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}
.contact-intro {
  font-size: 17px;
  color: rgba(240,237,232,0.68);
  margin-bottom: 32px !important;
}

.contact-card {
  border: 1px solid rgba(240,237,232,0.18);
  border-radius: 12px;
  padding: 32px 32px 36px;
  margin-bottom: 24px;
}
.contact-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px !important;
  font-weight: 500;
}
.contact-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.contact-card__body {
  font-size: 15px !important;
  color: rgba(240,237,232,0.62) !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label > span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.55);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(240,237,232,0.04);
  border: 1px solid rgba(240,237,232,0.18);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(240,237,232,0.06);
}
.contact-form select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(240,237,232,0.5) 50%), linear-gradient(135deg, rgba(240,237,232,0.5) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.contact-form select option { background: #111; color: var(--text); }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 8px; }
.contact-form button[type="submit"][disabled] { opacity: 0.6; cursor: not-allowed; }
.contact-form__hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.contact-form__status {
  margin: 4px 0 0 !important;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px !important;
  line-height: 1.5 !important;
  border: 1px solid transparent;
}
.contact-form__status[data-kind="success"] {
  color: var(--accent) !important;
  border-color: rgba(200,147,63,0.4);
  background: rgba(200,147,63,0.08);
}
.contact-form__status[data-kind="error"] {
  color: #ff8b8b !important;
  border-color: rgba(255,139,139,0.35);
  background: rgba(255,139,139,0.06);
}

.contact-links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(240,237,232,0.55);
  transition: color 0.2s;
}
.contact-links a:hover { color: var(--text); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
}
.footer__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer__links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text); }
.footer__copy {
  font-size: 12px;
  color: var(--muted);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ── PAGE HERO (gallery pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 40px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.page-hero .section__label { margin-bottom: 12px; }
.page-hero .section__title { margin-bottom: 0; }

/* ── SERVICE PACKAGES ── */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pkg-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pkg-card:hover { border-color: rgba(200,147,63,0.4); transform: translateY(-4px); }
.pkg-card--featured { border-color: var(--accent); background: #110f08; }
.pkg-card--featured:hover { border-color: var(--accent); }

.pkg-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #080808;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pkg-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.pkg-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pkg-card__price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.pkg-card__price-num--range {
  font-size: 32px;
  white-space: nowrap;
}
.pkg-card__price-per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

/* ── SERVICES TOGGLE ── */
.services-toggle-wrap {
  text-align: center;
  margin-bottom: 48px;
}
.services-toggle {
  display: inline-flex;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}
.services-toggle__btn {
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.55);
  padding: 12px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.services-toggle__btn:not(.services-toggle__btn--active):hover { color: var(--text); }
.services-toggle__btn--active {
  background: var(--accent);
  color: #080808;
}

.pkg-card__tagline {
  font-size: 14px;
  color: rgba(240,237,232,0.55);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

.pkg-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-card__features li {
  font-size: 15px;
  color: rgba(240,237,232,0.82);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.pkg-card__features li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 600;
}

.pkg-card__body {
  font-size: 14px;
  color: rgba(240,237,232,0.52);
  line-height: 1.7;
  margin-bottom: 32px;
  flex: 1;
}

.pkg-card .btn { width: 100%; text-align: center; }

.services-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── SERVICES PAGE INTRO ── */
.services-intro {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}
.services-intro .section__body { margin: 0 auto; text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gallery-grid { columns: 2; }
  .pitch { grid-template-columns: 1fr; gap: 40px; }
  .about-body { grid-template-columns: 260px 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 767px) {
  :root { --nav-h: 64px; }
  .services-grid { max-width: 100%; }
  .pkg-card { padding: 32px 24px; }
  .nav { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(8,8,8,0.78);
    backdrop-filter: blur(32px) saturate(1.6);
    -webkit-backdrop-filter: blur(32px) saturate(1.6);
    padding: 8px 28px 48px;
    gap: 0;
    align-items: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  /* Large impactful nav links */
  .nav__links.mobile-open > li > a:not(.nav__cta),
  .nav__links.mobile-open > li > .nav__drop-btn {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text);
    padding: 20px 0;
    border-bottom: 1px solid rgba(240,237,232,0.1);
    width: 100%;
    text-align: left;
    font-weight: 400;
  }
  .nav__links.mobile-open > li > a:not(.nav__cta):hover,
  .nav__links.mobile-open > li > .nav__drop-btn:hover { color: var(--accent); }
  /* Hide dropdown arrow on mobile only */
  .drop-arrow { display: none; }
  /* Submenu — fully flat, matches rest of menu */
  .nav__dropdown { width: 100%; }
  .nav__submenu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    box-shadow: none;
  }
  .nav__submenu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(240,237,232,0.55);
    padding: 16px 0 16px 20px;
    border-bottom: 1px solid rgba(240,237,232,0.1);
    border-left: none;
    border-radius: 0;
    background: none;
  }
  .nav__submenu a:hover { color: var(--text); background: none; }
  .nav__submenu li:last-child a { border-bottom: none; }
  /* Gold CTA — pushed to bottom */
  .nav__links.mobile-open > li:last-child {
    margin-top: auto;
    padding-top: 32px;
  }
  .nav__links.mobile-open .nav__cta {
    display: block;
    background: var(--accent);
    color: #080808;
    border: none;
    width: 100%;
    text-align: center;
    padding: 20px 28px;
    font-size: 13px;
    letter-spacing: 0.15em;
    font-weight: 700;
    border-radius: 100px;
    margin: 0;
  }
  .nav__links.mobile-open .nav__cta:hover { opacity: 0.9; transform: none; }
  .nav__toggle { display: flex; }
  .section { padding: 70px 20px; }
  .categories { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; padding: 0 20px 60px; }
  .gallery-header, .page-hero { padding: calc(var(--nav-h) + 40px) 20px 40px; }
  .about-body { grid-template-columns: 1fr; }
  .about-headshot { aspect-ratio: 1; position: static; max-width: 280px; }
  .contact-wrap { flex-direction: column; }
  .contact-img { height: 45vh; position: static; flex: none; }
  .contact-content { padding: 48px 24px 60px; max-width: 100%; }
  .footer { padding: 40px 20px; flex-direction: column; align-items: flex-start; }
  .quote-section { padding: 80px 20px; }
  /* Tighten large display text on small screens */
  .hero__title { font-size: clamp(36px, 12vw, 110px); }
  .section__title { font-size: clamp(32px, 9vw, 68px); }
  .pitch__statement { font-size: clamp(22px, 7vw, 52px); width: 100%; }
  .about-hero__overlay h1 { font-size: clamp(36px, 11vw, 100px); }
  .contact-content h1 { font-size: clamp(36px, 11vw, 80px); }
  .quote-section p { font-size: clamp(22px, 6vw, 54px); }
}
