/* Rosse Media — DFW Real Estate Photography
   Neutral, photography-first, one gold accent */

:root {
  --ink: #141311;
  --ink-soft: #3c3934;
  --muted: #6e6962;
  --paper: #f6f3ee;
  --paper-2: #efeae2;
  --white: #fffcf8;
  --line: rgba(20, 19, 17, 0.1);
  --line-strong: rgba(20, 19, 17, 0.18);
  --gold: #b0894d;
  --gold-deep: #8c6a35;
  --gold-soft: rgba(176, 137, 77, 0.14);
  --forest: #243f36;
  --dark: #0e0d0b;
  --dark-2: #171614;
  --shadow: 0 18px 50px rgba(20, 19, 17, 0.12);
  --shadow-lg: 0 30px 80px rgba(20, 19, 17, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1180px;
  --header: 78px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
}
.skip:focus {
  left: 8px;
}

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

.container-wide {
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}

h1,
.display {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.25;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(20, 19, 17, 0.18);
}
.btn-primary:hover {
  background: #000;
}

.btn-gold {
  background: var(--gold);
  color: #1a140c;
}
.btn-gold:hover {
  background: #c49a58;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header .logo-light { display: none; }
.site-header .logo-dark { display: block; }
.site-header.is-over-hero {
  background: linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
}
.site-header.is-over-hero .logo-light { display: block; }
.site-header.is-over-hero .logo-dark { display: none; }
.site-header.is-over-hero .nav-links a,
.site-header.is-over-hero .header-phone,
.site-header.is-over-hero .menu-toggle {
  color: #fff;
}
.site-header.is-solid,
.site-header:not(.is-over-hero) {
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.site-header.is-solid .logo-light,
.site-header:not(.is-over-hero) .logo-light { display: none; }
.site-header.is-solid .logo-dark,
.site-header:not(.is-over-hero) .logo-dark { display: block; }
.site-header.is-solid .nav-links a,
.site-header:not(.is-over-hero) .nav-links a,
.site-header.is-solid .header-phone,
.site-header:not(.is-over-hero) .header-phone,
.site-header.is-solid .menu-toggle,
.site-header:not(.is-over-hero) .menu-toggle {
  color: var(--ink);
}

.header-inner {
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header-cta .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--ink);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
  transition: 0.25s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.28) 0%, rgba(10, 9, 8, 0.18) 35%, rgba(10, 9, 8, 0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 72px;
  padding-top: var(--header);
}
.hero h1 {
  color: #fff;
  max-width: 14ch;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.hero .lede {
  color: rgba(255, 255, 255, 0.86);
  max-width: 38rem;
}
.hero .eyebrow {
  color: #e8c98a;
}
.hero .eyebrow::before { background: #e8c98a; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.chip-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink-soft);
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header) + 64px) 0 48px;
  background:
    radial-gradient(1200px 400px at 80% 0%, var(--gold-soft), transparent 60%),
    var(--paper);
}
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { margin-top: 16px; }

/* Spiro-first booking: keep the email form close to its heading */
#book-form { margin-top: 8px; }

/* Sections */
.section {
  padding: 88px 0;
}
.section-tight { padding: 56px 0; }
.section-dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-cream { background: var(--paper-2); }
.section-white { background: var(--white); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head p {
  max-width: 36rem;
  margin: 10px 0 0;
  color: var(--muted);
}

/* Stats / trust */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-item {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
}
.trust-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.work-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #1a1917;
  height: 280px;
  cursor: pointer;
  color: #fff;
}
.work-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.work-item:hover img { transform: scale(1.05); }
.work-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s var(--ease);
}
.work-item:hover figcaption { opacity: 1; transform: none; }
.work-item.span-6 { grid-column: span 6; height: 380px; }
.work-item.span-4 { grid-column: span 4; height: 320px; }
.work-item.span-8 { grid-column: span 8; height: 380px; }
.work-item.span-3 { grid-column: span 3; height: 240px; }

/* Featured homes */
.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}
.home-card:hover { transform: translateY(-4px); }
.home-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.home-card .body {
  padding: 18px 18px 22px;
}
.home-card .loc {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.home-card h3 { margin-top: 6px; font-size: 1.45rem; }

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.package {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.package.featured {
  background: var(--dark);
  color: rgba(255,255,255,.82);
  border-color: transparent;
  transform: translateY(-8px);
}
.package.featured h3,
.package.featured .price { color: #fff; }
.package .tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: #1a140c;
  padding: 4px 10px;
  border-radius: 999px;
}
.package .price {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin: 12px 0 8px;
}
.package .price small {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0;
}
.package.featured .price small { color: rgba(255,255,255,.55); }
.package ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  flex: 1;
}
.package li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 0.95rem;
}
.package li::before {
  content: "";
  width: 8px;
  height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 18px;
}

/* Service list */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 22px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.service-row h3 { font-size: 1.25rem; }
.service-row p { margin: 6px 0 0; color: var(--muted); font-size: 0.92rem; }
.service-row .amt {
  font-family: var(--serif);
  font-size: 1.6rem;
  white-space: nowrap;
}

/* Who we serve */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience article {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.audience .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4rem;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.process article {
  padding: 8px 28px 8px 0;
  border-right: 1px solid var(--line);
  padding-right: 32px;
  margin-right: 32px;
}
.process article:last-child {
  border: 0;
  margin: 0;
}
.process .step {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px dashed var(--line-strong);
}
.quote p {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0 0 20px;
}
.quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
  display: block;
}
.placeholder-note {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

/* Areas */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.areas span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.58);
}
.cta-band .inner {
  position: relative;
  z-index: 1;
  padding: 72px 24px;
}
.cta-band h2 { color: #fff; max-width: 16ch; margin-inline: auto; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
  font-family: var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 8px 0; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}
.contact-stack a {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  margin: 6px 0;
}

/* Pricing tables */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  background: var(--paper-2);
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child,
.price-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.3rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 10px 0 0; color: var(--ink-soft); max-width: 60ch; }

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
input,
select,
textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 1rem;
  color: var(--ink);
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
textarea { min-height: 120px; resize: vertical; }
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
}
.checks input { width: auto; }
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 10px;
}
.form-success {
  display: none;
  padding: 18px 20px;
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.form-success.is-visible { display: block; }
.honeypot { position: absolute; left: -9999px; }

.contact-panel {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.contact-panel h2,
.contact-panel h3 { color: #fff; }
.contact-panel a { color: #fff; }
.contact-panel ul { margin: 12px 0 0; padding-left: 18px; }
.contact-panel li { margin: 8px 0; }
.big-contact {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  display: block;
  margin: 6px 0 18px;
}

/* Portfolio filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 28px;
}
.filters button {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 0.85rem;
}
.filters button.is-active,
.filters button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery a,
.gallery button.shot {
  padding: 0;
  border: 0;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  display: block;
  position: relative;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery a:hover img,
.gallery button.shot:hover img { transform: scale(1.04); }
.gallery .tall { aspect-ratio: 3 / 4; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.92);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}
.lightbox .close { top: 18px; right: 18px; }
.lightbox .prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 18px; top: 50%; transform: translateY(-50%); }

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
}

/* About */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.bio-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.split-list div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* Utility */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
hr.sep {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

/* Responsive */
@media (max-width: 980px) {
  .packages,
  .home-cards,
  .audience,
  .quotes,
  .trust-bar,
  .process,
  .footer-grid,
  .two-col,
  .bio-grid,
  .service-list,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .process article {
    border: 0;
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }
  .package.featured { transform: none; }
  .work-item.span-8,
  .work-item.span-6,
  .work-item.span-4,
  .work-item.span-3 { grid-column: span 6; height: 260px; }
  .header-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links,
  .header-cta .btn { display: none; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header) 0 0 0;
    background: var(--paper);
    padding: 32px 28px;
    align-items: flex-start;
    gap: 22px;
    z-index: 49;
  }
  body.nav-open .nav-links a { color: var(--ink) !important; font-size: 1.4rem; }
  .packages,
  .home-cards,
  .audience,
  .quotes,
  .trust-bar,
  .process,
  .footer-grid,
  .two-col,
  .bio-grid,
  .service-list,
  .gallery,
  .form-grid,
  .checks,
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-item.span-8,
  .work-item.span-6,
  .work-item.span-4,
  .work-item.span-3 { grid-column: span 1; height: 240px; }
  .hero { min-height: 92svh; }
  .hero-content { margin-bottom: 40px; }
  .section { padding: 64px 0; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
