:root {
  --sand-50:  #FBF7EE;
  --sand-100: #F5EEDD;
  --sand-200: #EFE6D4;
  --navy-500: #13263F;
  --navy-600: #0E1E33;
  --navy-700: #0A1626;
  --turq-300: #7FE0DE;
  --turq-400: #4FD2D0;
  --turq-500: #2EC4C4;
  --turq-600: #1FA5A5;
  --sunset-300: #F4D9B4;
  --sunset-400: #E8BC85;
  --sunset-500: #D4A572;
  --sunset-600: #B8854C;
  --charcoal: #1C1F24;
  --line: rgba(19, 38, 63, 0.14);
  --shadow-sm: 0 1px 2px rgba(14, 30, 51, 0.06), 0 4px 12px rgba(14, 30, 51, 0.05);
  --shadow-md: 0 6px 24px rgba(14, 30, 51, 0.10);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 72rem;
  --gutter: 1.25rem;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Great Vibes", cursive;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--turq-600); text-decoration: none; }
a:hover { color: var(--navy-600); }

.skip {
  position: absolute; left: -9999px;
  background: var(--navy-600); color: var(--sand-50);
  padding: .75rem 1rem; border-radius: 6px;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 900px) { :root { --gutter: 2.5rem; } }

/* ───── Type ───── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy-600); letter-spacing: -0.01em; line-height: 1.08; margin: 0 0 .6em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 6vw + 1rem, 5.5rem); }
h2 { font-size: clamp(2rem, 3.2vw + 1rem, 3.25rem); }
h3 { font-size: 1.4rem; line-height: 1.2; }
p { margin: 0 0 1em; text-wrap: pretty; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--turq-600);
  margin: 0 0 1rem;
}
.eyebrow-light { color: var(--turq-300); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--sunset-500);
  font-size: 1.15em;
  font-style: normal;
  line-height: 0.7;
  display: inline-block;
  transform: translateY(0.05em) rotate(-2deg);
  margin: 0 .1em;
}

.lede {
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(19, 38, 63, 0.78);
  max-width: 38em;
  margin-bottom: 2rem;
}
.lede-light { color: rgba(245, 238, 221, 0.85); }
.section-lede { font-size: 1.1rem; color: rgba(19, 38, 63, 0.7); max-width: 38em; margin-bottom: 3rem; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent {
  background: var(--turq-500);
  color: var(--navy-700);
  box-shadow: 0 6px 20px rgba(46, 196, 196, 0.35);
}
.btn-accent:hover { background: var(--turq-400); color: var(--navy-700); box-shadow: 0 8px 24px rgba(46, 196, 196, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--sand-50);
  border-color: rgba(245, 238, 221, 0.4);
}
.btn-ghost:hover { background: rgba(245, 238, 221, 0.1); color: var(--sand-50); }
.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* ───── Nav ───── */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 1.25rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: baseline; gap: .55rem; color: var(--sand-50); font-weight: 700; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--turq-300);
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.nav nav { display: flex; align-items: center; gap: 1.75rem; }
.nav nav a { color: var(--sand-50); font-size: 0.95rem; font-weight: 500; }
.nav nav a:hover { color: var(--turq-300); }
.nav nav a.btn-accent { color: var(--navy-700); }
@media (max-width: 720px) {
  .nav nav a:not(.btn) { display: none; }
}

/* ───── Hero ───── */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--sand-50);
  background: var(--navy-700);
}
.hero h1 { color: var(--sand-50); margin-bottom: .5em; }
.hero .eyebrow { color: var(--turq-300); }
.hero .lede { color: rgba(245, 238, 221, 0.85); margin-bottom: 2.5rem; }

/* YouTube background video — sized big so YT serves 4K, overshoots viewport to crop bars */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--navy-700) url("/portfolio-poster.jpg") center/cover no-repeat;
}
.hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  /* 16:9 ratio always; pick whichever is larger of vw/vh + 50% buffer to crop YouTube bars */
  width: max(177.78vh, 100vw);
  height: max(100vh, 56.25vw);
  /* Force minimum 4K so YouTube serves its highest available quality */
  min-width: 3840px;
  min-height: 2160px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(46, 196, 196, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(212, 165, 114, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(10, 22, 38, 0.55) 0%, rgba(14, 30, 51, 0.65) 60%, rgba(19, 38, 63, 0.78) 100%);
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245, 238, 221, 0.6);
  border-top: 1px solid rgba(245, 238, 221, 0.15);
  padding-top: 1.25rem;
}
.hero-strip li {
  padding: 0 1.25rem;
  border-right: 1px solid rgba(245, 238, 221, 0.15);
}
.hero-strip li:first-child { padding-left: 0; }
.hero-strip li:last-child { border-right: none; }

/* ───── Sections ───── */
.section { padding: 6rem 0; }
.section-sand { background: var(--sand-50); }
.section-sand + .section-sand { background: var(--sand-100); }
.section-deep { background: var(--sand-100); }

@media (min-width: 900px) {
  .section { padding: 8rem 0; }
}

/* ───── Grids ───── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* ───── Cards ───── */
.card {
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--turq-400); }
.card h3 { color: var(--navy-600); margin-bottom: .5em; }
.card p { color: rgba(19, 38, 63, 0.78); }
.card .bullets { list-style: none; padding: 0; margin: 1rem 0 0; font-size: 0.95rem; color: rgba(19, 38, 63, 0.7); }
.card .bullets li { padding-left: 1.4rem; position: relative; margin-bottom: .35rem; }
.card .bullets li::before {
  content: "";
  position: absolute; left: 0; top: 0.65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--turq-500);
}

.card-accent {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
  color: var(--sand-50);
  border-color: transparent;
  display: flex; flex-direction: column; justify-content: space-between;
}
.card-accent h3 { color: var(--sand-50); }
.card-accent p { color: rgba(245, 238, 221, 0.85); }
.card-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--turq-300);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.card-cta:hover { color: var(--sand-50); }

/* ───── Work ───── */
.work-card {
  background: var(--sand-50);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-thumb {
  aspect-ratio: 16 / 9;
  background: var(--navy-500);
  position: relative;
}
.work-thumb-gracie {
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(212, 165, 114, 0.6), transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(46, 196, 196, 0.5), transparent 70%),
    linear-gradient(135deg, var(--navy-600), var(--navy-500));
}
.work-thumb-alex {
  background:
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(127, 224, 222, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 90%, rgba(245, 238, 221, 0.25), transparent 70%),
    linear-gradient(135deg, var(--turq-600), var(--navy-600));
}
.work-meta { padding: 1.75rem; }
.work-meta h3 { margin-bottom: .25em; }
.work-tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--turq-600);
  font-weight: 600;
  margin-bottom: 1rem;
}
.work-link { font-weight: 600; }

/* ───── About ───── */
.about-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.6fr 1fr; gap: 5rem; }
}
.about-stats { display: grid; gap: 1.25rem; }
.about-stats > div {
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.5rem 1.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--turq-600);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label { font-size: 0.92rem; color: rgba(19, 38, 63, 0.7); }

/* ───── Contact ───── */
.section-contact {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: ""; position: absolute;
  right: -10%; top: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46, 196, 196, 0.18), transparent 70%);
  pointer-events: none;
}
.h2-light { color: var(--sand-50); }
.contact-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.contact-meta {
  list-style: none; padding: 0; margin: 2rem 0 0;
  color: var(--sand-50);
  font-size: 0.95rem;
}
.contact-meta li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(245, 238, 221, 0.15);
  display: flex; gap: 1.5rem;
}
.contact-meta li:last-child { border-bottom: 1px solid rgba(245, 238, 221, 0.15); }
.contact-meta span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--turq-300);
  width: 5rem; flex-shrink: 0;
  font-weight: 600;
  padding-top: 2px;
}
.contact-meta a { color: var(--sand-50); }
.contact-meta a:hover { color: var(--turq-300); }

.contact-form {
  background: var(--sand-50);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.88rem; font-weight: 600; color: var(--navy-600); letter-spacing: 0.01em; }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--charcoal);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--turq-500);
  box-shadow: 0 0 0 3px rgba(46, 196, 196, 0.18);
}
.contact-form textarea { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.contact-form .hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ───── Solid nav (non-hero pages) ───── */
.nav-solid {
  position: relative;
  background: var(--navy-700);
  border-bottom: 1px solid rgba(245, 238, 221, 0.08);
}
.nav-solid .brand,
.nav-solid nav a { color: var(--sand-50); }
.nav-solid nav a.active { color: var(--turq-300); }
.nav-solid nav a:hover { color: var(--turq-300); }
.nav-solid nav a.btn-accent { color: var(--navy-700); }

/* ───── Page hero (non-home pages) ───── */
.page-hero {
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(46, 196, 196, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(212, 165, 114, 0.15), transparent 60%),
    var(--navy-700);
  color: var(--sand-50);
  padding: 6rem 0 5rem;
  text-align: left;
}
.page-hero h1 { color: var(--sand-50); margin: 0 0 1rem; }
.page-hero .eyebrow { color: var(--turq-300); }
.page-hero .lede { color: rgba(245, 238, 221, 0.78); margin-bottom: 0; max-width: 50em; }

/* ───── Overview cards (pricing top) ───── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 800px) { .overview-grid { grid-template-columns: repeat(4, 1fr); } }
.overview-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 2rem 1.25rem 1.5rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  text-align: center;
}
.overview-card:hover {
  border-color: var(--turq-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.overview-icon {
  font-size: 2.4rem;
  color: var(--turq-500);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.overview-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 .35rem;
  color: var(--navy-600);
}
.overview-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(19, 38, 63, 0.6);
  letter-spacing: 0.02em;
}
.overview-card strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-600);
  font-weight: 700;
}

/* ───── Section variants ───── */
.section-sand-deep { background: var(--sand-100); }

/* ───── Section head ───── */
.section-head { margin-bottom: 3.5rem; max-width: 50em; }
.section-head .section-lede { margin-bottom: 0; }

/* ───── Pricing tiers ───── */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) { .tiers { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.tier {
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 2rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier-popular {
  border-color: var(--turq-400);
  border-width: 2px;
  background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%);
  box-shadow: 0 12px 36px rgba(46, 196, 196, 0.18);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--turq-500);
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-600);
  margin: 0 0 .4rem;
  font-weight: 700;
}
.tier-price {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(19, 38, 63, 0.55);
  margin: 0 0 .5rem;
  font-weight: 600;
}
.tier-price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--turq-600);
  letter-spacing: 0;
  text-transform: none;
  margin-left: .25rem;
}
.tier-tagline {
  font-style: italic;
  color: rgba(19, 38, 63, 0.7);
  margin: 0 0 1.5rem;
  min-height: 2.6em;
}
.tier-list {
  list-style: none; padding: 0; margin: 0 0 2rem;
  flex-grow: 1;
}
.tier-list li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 0.95rem;
  color: rgba(19, 38, 63, 0.85);
}
.tier-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0.6rem;
  color: var(--turq-500);
  font-weight: 700;
}
.tier-list li:last-child { border-bottom: 1px solid var(--line); }
.tier-list em { font-style: normal; color: var(--sunset-600); font-weight: 600; padding: 0 .15em; }

.btn-outline {
  background: transparent;
  color: var(--navy-600);
  border-color: var(--navy-500);
}
.btn-outline:hover { background: var(--navy-600); color: var(--sand-50); }

/* ───── Standalone (engagements) ───── */
.standalone-tier { margin-top: 4rem; }
.tier-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, var(--sand-50) 0%, var(--sand-200) 100%);
}
@media (min-width: 900px) {
  .tier-wide { grid-template-columns: 1fr 1.4fr auto; gap: 2.5rem; padding: 2.5rem; }
}
.tier-wide .tier-tag { margin-bottom: .25rem; }
.tier-wide .tier-tagline { min-height: auto; margin-bottom: 0; }
.tier-list-row {
  margin: 0;
  display: grid;
  gap: .25rem;
  grid-template-columns: 1fr 1fr;
}
.tier-list-row li { border: none !important; padding: .25rem 0 .25rem 1.5rem; }
.tier-list-row li::before { top: .25rem; }

/* ───── Editing rates ───── */
.editing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .editing-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.editing-block {
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.editing-block h3 {
  font-size: 1.4rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.editing-list { list-style: none; padding: 0; margin: 0; }
.editing-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}
.editing-list li:last-child { border-bottom: none; }
.editing-list li span { color: rgba(19, 38, 63, 0.78); }
.editing-list li strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--turq-600);
  white-space: nowrap;
}

/* ───── Travel card ───── */
.travel-card {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--turq-600) 100%);
  color: var(--sand-50);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  display: grid;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}
.travel-card::before {
  content: ""; position: absolute;
  right: -10%; top: -50%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 114, 0.18), transparent 70%);
  pointer-events: none;
}
@media (min-width: 800px) {
  .travel-card { grid-template-columns: 1fr 2fr; padding: 4rem; gap: 4rem; }
}
.travel-card .h2-light { margin: 0; }
.travel-cols { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .travel-cols { grid-template-columns: 1fr 1fr; } }
.travel-cols h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--turq-300);
  margin: 0 0 .75rem;
  font-weight: 600;
}
.travel-cols p {
  color: rgba(245, 238, 221, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ───── Large reel frame (portfolio page) ───── */
.reel-frame-large {
  margin: 0 0 2rem;
  box-shadow: 0 40px 100px rgba(14, 30, 51, 0.35);
}
.reel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ───── Categories grid (portfolio page) ───── */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) { .categories-grid { grid-template-columns: 1fr 1fr; } }
.category {
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.category:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-art {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-500);
}
.category h3 {
  font-size: 1.5rem;
  margin: 1.5rem 1.75rem 0.5rem;
}
.category p {
  margin: 0 1.75rem 1rem;
  color: rgba(19, 38, 63, 0.75);
}
.category .card-cta {
  margin: auto 1.75rem 1.75rem;
  align-self: flex-start;
  font-weight: 600;
  color: var(--turq-600);
}
.category .card-cta:hover { color: var(--navy-600); }

/* ───── Legal prose ───── */
.legal-prose {
  max-width: 50rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.legal-prose h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--navy-600);
}
.legal-prose p { color: rgba(19, 38, 63, 0.85); margin-bottom: 1.25em; }
.legal-fine { font-size: 0.92rem; color: rgba(19, 38, 63, 0.55); margin-top: 3rem !important; padding-top: 2rem; border-top: 1px solid var(--line); }

/* ───── Trust band ───── */
.trust {
  background: var(--navy-700);
  color: var(--sand-50);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(46, 196, 196, 0.12), transparent 70%);
  pointer-events: none;
}
.trust-tag {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-align: center;
  color: rgba(245, 238, 221, 0.7);
  margin: 0 0 2rem;
  font-style: italic;
  font-weight: 500;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
@media (min-width: 720px) { .trust-stats { grid-template-columns: repeat(4, 1fr); } }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--turq-300);
  line-height: 1;
}
.trust-num span {
  font-size: 0.7em;
  color: var(--sunset-400);
  margin-left: 2px;
}
.trust-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 238, 221, 0.6);
  margin-top: 0.5rem;
}

/* ───── Service rows (alternating) ───── */
.service-list { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; }
.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .service { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .service-reverse .service-meta { order: 2; }
  .service-reverse .service-art { order: 1; }
}
.service-meta h3 {
  font-size: clamp(1.75rem, 2.4vw + 1rem, 2.5rem);
  margin-top: .25em;
}
.service-meta .bullets { margin-top: 1rem; }
.service-price {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy-600);
  font-weight: 500;
}
.service-price a {
  color: var(--turq-600);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}
.service-art {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(14, 30, 51, 0.18);
}
.service-art-drone     { background: url("/assets/drone-keys-aerial-dYfv3jHz.jpg") center/cover no-repeat; }
.service-art-realestate { background: url("/assets/real-estate-keywest-BKRD2_Ld.jpg") center/cover no-repeat; }
.service-art-wedding   { background: url("/assets/wedding-keys-beach-BGM_UKCx.jpg") center/cover no-repeat; }
.service-art-editing   { background: url("/assets/editing-studio-BTbNFpwq.jpg") center/cover no-repeat; }

.services-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.services-footer p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-600);
  margin-bottom: 1.5rem;
}

/* ───── Reel link wrapper ───── */
.reel-link { display: block; cursor: pointer; }
.reel-link:hover { box-shadow: 0 30px 80px rgba(14, 30, 51, 0.35); transform: translateY(-2px); transition: transform .2s ease, box-shadow .2s ease; }

.coverage-fine {
  font-size: 0.9rem;
  color: rgba(19, 38, 63, 0.55);
  font-style: italic;
}

/* ───── Contact CTA card (replaces form) ───── */
.contact-cta-card {
  background: var(--sand-50);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-cta-card h3 {
  font-size: clamp(1.6rem, 2.5vw + .5rem, 2.2rem);
  margin: 0;
  color: var(--navy-600);
}
.contact-cta-card p { margin: 0; color: rgba(19, 38, 63, 0.78); }
.btn-ghost-link {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--turq-600);
  padding: .5rem;
}

/* ───── Multi-col footer ───── */
.footer { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--turq-300);
  margin: 0 0 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: .35rem 0; }
.footer-col a { color: rgba(245, 238, 221, 0.75); }
.footer-col a:hover { color: var(--sand-50); }
.footer-brand-col p { color: rgba(245, 238, 221, 0.65); font-size: 0.95rem; max-width: 32em; margin: 1rem 0; line-height: 1.6; }
.footer-trust {
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--turq-300) !important;
  margin: 0 !important;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 238, 221, 0.1);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-start;
  font-size: 0.82rem;
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-copy { margin: 0; color: rgba(245, 238, 221, 0.45); }
.footer-legal { margin: 0; color: rgba(245, 238, 221, 0.45); }
.footer-legal a { color: rgba(245, 238, 221, 0.7); }
.footer-legal a:hover { color: var(--sand-50); }

/* ───── Card service tag ───── */
.card-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--turq-600);
  margin: -0.4em 0 0.85em;
}

/* ───── Portfolio reel ───── */
.reel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(14, 30, 51, 0.25);
  margin: 1rem 0 3rem;
  background: var(--navy-700);
  border: 1px solid var(--line);
}
.reel-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.coverage {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 56rem;
}
.coverage p:last-child {
  font-size: 1.05rem;
  color: rgba(19, 38, 63, 0.78);
  line-height: 1.7;
}

/* ───── FAQ ───── */
.faq-wrap { max-width: 52rem; }
.faq-wrap details {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq-wrap details:last-of-type { border-bottom: 1px solid var(--line); }
.faq-wrap summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-600);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--turq-600);
  transition: transform .2s ease;
}
.faq-wrap details[open] summary::after { transform: rotate(45deg); }
.faq-wrap details p {
  margin: 0.85rem 0 0;
  color: rgba(19, 38, 63, 0.78);
  max-width: 50rem;
}

/* ───── Contact form select ───── */
.contact-form select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--charcoal);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%231FA5A5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
.contact-form select:focus {
  outline: none;
  border-color: var(--turq-500);
  box-shadow: 0 0 0 3px rgba(46, 196, 196, 0.18);
}

/* ───── Footer ───── */
.footer {
  background: var(--navy-700);
  color: rgba(245, 238, 221, 0.7);
  padding: 3rem 0;
  font-size: 0.9rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.footer-tag { color: rgba(245, 238, 221, 0.5); margin: 0; }
.footer-copy { margin: 0; font-size: 0.85rem; color: rgba(245, 238, 221, 0.45); }
.footer-brand { display: inline-flex; align-items: baseline; gap: .55rem; }
.footer-brand .brand-mark { color: var(--turq-300); }
.footer-brand .brand-name { color: var(--sand-50); font-family: var(--font-display); }

/* ───── Focus visible ───── */
:focus-visible {
  outline: 2px solid var(--turq-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ───── Reduced motion ───── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
