/* =========================================================
   Let's Straighten It Out Conflict Resolution Services, LLC
   Brand stylesheet
   ========================================================= */

:root {
  /* Brand colors (exact) */
  --navy: #1B2D4F;
  --teal: #2E7D8C;
  --silver: #D4D1CA;
  --offwhite: #F7F6F2;
  --muted: #7A7974;
  --body: #28251D;
  --gold: #B8860B;

  /* Derived */
  --teal-hover: #25656f;
  --navy-hover: #142339;
  --teal-tint: #eaf2f3;
  --navy-tint: #eef1f6;
  --white: #ffffff;

  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.1vw, 2.1rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
  --text-3xl: clamp(2.5rem, 1.5rem + 3.6vw, 4.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(27, 45, 79, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 45, 79, 0.08);
  --shadow-lg: 0 14px 40px rgba(27, 45, 79, 0.13);

  /* Widths */
  --content-narrow: 720px;
  --content-default: 1040px;
  --content-wide: 1240px;

  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--body);
  background-color: var(--offwhite);
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  font-weight: 700;
  text-wrap: balance;
}

p, li { text-wrap: pretty; }

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-hover); }

button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

::selection { background: rgba(46, 125, 140, 0.22); color: var(--body); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(var(--space-5), 5vw, var(--space-16)); }
.container--default { max-width: var(--content-default); }
.container--narrow { max-width: var(--content-narrow); }

.section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }
.section--tight { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }
.section--alt { background: var(--white); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: var(--teal);
  margin-bottom: var(--space-4);
}
.section--navy .eyebrow { color: #7fc4cf; }

.section-head { max-width: 720px; margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-2xl); }
.section-head p { color: var(--muted); font-size: var(--text-lg); margin-top: var(--space-4); }
.section--navy .section-head p { color: rgba(255,255,255,0.78); }

.lead { font-size: var(--text-lg); color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-sm); letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem; border-radius: var(--radius-full);
  transition: all var(--transition); cursor: pointer; line-height: 1; text-align: center;
  border: 2px solid transparent;
}
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--silver); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #fff; color: var(--teal-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 246, 242, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--silver); background: rgba(247, 246, 242, 0.95); }
.nav__inner {
  max-width: var(--content-wide); margin-inline: auto;
  padding: 0.7rem clamp(var(--space-5), 5vw, var(--space-16));
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
}
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo { height: 52px; width: auto; }
@media (max-width: 480px) { .nav__logo { height: 42px; } }
.nav__links { display: flex; align-items: center; gap: clamp(var(--space-3), 1.6vw, var(--space-6)); list-style: none; }
.nav__link {
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  color: var(--navy); padding: 0.35rem 0; position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--teal); }
.nav__cta { margin-left: var(--space-2); }

.nav__toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--navy);
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 73px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--offwhite); border-bottom: 1px solid var(--silver);
    padding: var(--space-2) clamp(var(--space-5), 5vw, var(--space-16)) var(--space-6);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    max-height: calc(100dvh - 73px); overflow-y: auto;
  }
  .nav.open .nav__links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: var(--space-4) 0; font-size: var(--text-base); border-bottom: 1px solid var(--silver); }
  .nav__link::after { display: none; }
  .nav__cta { margin: var(--space-4) 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(560px, 82vh, 760px);
  display: flex; align-items: center;
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(27,45,79,0.93) 0%, rgba(27,45,79,0.78) 42%, rgba(46,125,140,0.55) 100%);
}
.hero__inner { max-width: 720px; padding-block: var(--space-20); }
.hero h1 { color: #fff; font-size: var(--text-3xl); letter-spacing: -0.01em; }
.hero__sub { font-size: var(--text-lg); color: rgba(255,255,255,0.9); margin-top: var(--space-6); max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-10); }

/* Subpage hero (no photo) */
.pagehero { background: var(--navy); color: #fff; padding-block: clamp(var(--space-20), 12vw, var(--space-32)) clamp(var(--space-16), 9vw, var(--space-24)); position: relative; overflow: hidden; }
.pagehero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(46,125,140,0.45), transparent 70%); pointer-events: none;
}
.pagehero h1 { color: #fff; font-size: var(--text-2xl); }
.pagehero p { color: rgba(255,255,255,0.82); font-size: var(--text-lg); margin-top: var(--space-4); max-width: 640px; }
.pagehero .eyebrow { color: #7fc4cf; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: var(--space-6); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
/* 5-card services grid: last two cards centered on second row */
.grid-3.services-grid { grid-template-columns: repeat(6, 1fr); }
.grid-3.services-grid .card:nth-child(1) { grid-column: span 2; }
.grid-3.services-grid .card:nth-child(2) { grid-column: span 2; }
.grid-3.services-grid .card:nth-child(3) { grid-column: span 2; }
.grid-3.services-grid .card:nth-child(4) { grid-column: 2 / span 2; }
.grid-3.services-grid .card:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } .grid-3.services-grid { grid-template-columns: 1fr; } .grid-3.services-grid .card { grid-column: span 1 !important; } }

.card {
  background: var(--white); border: 1px solid var(--silver); border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.card p { color: var(--muted); }
.card__icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-5);
}
.card__icon svg { width: 28px; height: 28px; }

/* ---------- Two-col editorial ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(var(--space-10), 5vw, var(--space-20)); align-items: center; }
.split.reverse .split__media { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.reverse .split__media { order: 0; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.split h2 { font-size: var(--text-2xl); }
.split p { color: var(--muted); margin-top: var(--space-5); }

/* ---------- Family photo grid ---------- */
.familygrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-top: clamp(var(--space-8), 4vw, var(--space-12)); }
.familygrid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
@media (max-width: 760px) { .familygrid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonial / quote ---------- */
.quote { text-align: center; max-width: 860px; margin-inline: auto; }
.quote__mark { font-family: var(--font-display); font-size: 5rem; line-height: 0.6; color: rgba(255,255,255,0.35); display: block; margin-bottom: var(--space-4); }
.quote blockquote { font-family: var(--font-display); font-size: var(--text-xl); font-style: italic; color: #fff; line-height: 1.4; }
.quote cite { display: block; margin-top: var(--space-6); font-family: var(--font-body); font-style: normal; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: var(--text-xs); color: #7fc4cf; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--teal) 0%, var(--navy) 100%); color: #fff; text-align: center; }
.cta-banner h2 { color: #fff; font-size: var(--text-2xl); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: var(--space-4); font-size: var(--text-lg); }
.cta-banner .btn { margin-top: var(--space-8); }

/* ---------- Credentials bar ---------- */
.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
@media (max-width: 760px) { .creds { grid-template-columns: 1fr 1fr; } }
.creds__item {
  background: var(--white); border: 1px solid var(--silver); border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
}
.creds__item svg { width: 30px; height: 30px; color: var(--teal); }
.creds__item span { font-weight: 700; color: var(--navy); font-size: var(--text-sm); line-height: 1.4; }

/* ---------- Callout / note ---------- */
.callout {
  border-left: 4px solid var(--teal); background: var(--teal-tint);
  border-radius: var(--radius-md); padding: var(--space-6) var(--space-8);
}
.callout p { color: var(--navy); margin: 0; }
.callout--muted { border-left-color: var(--muted); background: #f0efeb; }
.callout--muted p { color: var(--body); }

/* ---------- Coming soon (gold) ---------- */
.coming {
  border: 1px dashed var(--gold); background: #faf6ec; border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 4vw, var(--space-12)); text-align: center;
}
.coming .badge-gold {
  display: inline-block; background: var(--gold); color: #fff;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: var(--text-xs); padding: 0.35rem 0.9rem; border-radius: var(--radius-full); margin-bottom: var(--space-4);
}
.coming h3 { color: var(--gold); font-size: var(--text-xl); }
.coming p { color: var(--muted); margin-top: var(--space-4); max-width: 560px; margin-inline: auto; }

/* ---------- Mission ---------- */
.mission { background: var(--navy); color: #fff; text-align: center; }
.mission .eyebrow { color: #7fc4cf; }
.mission blockquote {
  font-family: var(--font-display); font-style: italic; font-size: var(--text-xl);
  line-height: 1.45; color: #fff; max-width: 880px; margin-inline: auto;
}

/* ---------- Timeline (How it works) ---------- */
.timeline { max-width: 820px; margin-inline: auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: var(--silver); }
.tl-step { position: relative; padding-left: 84px; padding-bottom: var(--space-12); }
.tl-step:last-child { padding-bottom: 0; }
.tl-step__num {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: var(--radius-full);
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); z-index: 1; box-shadow: 0 0 0 6px var(--offwhite);
}
.tl-step:nth-child(odd) .tl-step__num { background: var(--teal); }
.tl-step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.tl-step p { color: var(--muted); }
@media (max-width: 560px) {
  .timeline::before { left: 22px; }
  .tl-step { padding-left: 64px; }
  .tl-step__num { width: 46px; height: 46px; }
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border: 1px solid var(--silver); border-radius: var(--radius-md); background: var(--white); margin-bottom: var(--space-4); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--navy);
}
.faq__q:hover { color: var(--teal); }
.faq__icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--teal); border-radius: 2px; transition: transform var(--transition); }
.faq__icon::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); }
.faq__item.open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq__a-inner { padding: 0 var(--space-6) var(--space-6); color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(var(--space-10), 5vw, var(--space-16)); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: var(--space-6); }
.contact-info__row { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-info__row svg { width: 24px; height: 24px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.contact-info__row .label { font-weight: 700; color: var(--navy); display: block; }
.contact-info__row .val { color: var(--muted); }

.form { background: var(--white); border: 1px solid var(--silver); border-radius: var(--radius-lg); padding: clamp(var(--space-6), 4vw, var(--space-10)); box-shadow: var(--shadow-sm); }
.field { margin-bottom: var(--space-5); }
.field label { display: block; font-weight: 700; color: var(--navy); font-size: var(--text-sm); margin-bottom: var(--space-2); }
.field label .req { color: var(--teal); }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--silver); border-radius: var(--radius-md);
  background: var(--offwhite); font-family: var(--font-body); font-size: var(--text-base); color: var(--body);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,125,140,0.15); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Intake ---------- */
.intake-frame { max-width: 880px; margin-inline: auto; }
.intake-note { text-align: center; color: var(--muted); font-size: var(--text-sm); margin-top: var(--space-6); max-width: 640px; margin-inline: auto; }

/* ---------- Inline links / lists ---------- */
.do-not-list { list-style: none; display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.do-not-list li { padding-left: var(--space-8); position: relative; color: var(--muted); }
.do-not-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 16px; height: 2px; background: var(--muted); border-radius: 2px; }

.checklist { list-style: none; display: grid; gap: var(--space-4); }
.checklist li { padding-left: var(--space-10); position: relative; }
.checklist li svg { position: absolute; left: 0; top: 1px; width: 24px; height: 24px; color: var(--teal); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.78); padding-block: clamp(var(--space-16), 7vw, var(--space-24)) var(--space-8); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr; gap: var(--space-10); } }
.footer__logo { background: #fff; border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); display: inline-block; }
.footer__logo img { height: 50px; width: auto; }
.footer__brand p { margin-top: var(--space-5); max-width: 320px; color: rgba(255,255,255,0.65); font-size: var(--text-sm); }
.footer h4 { color: #fff; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--text-xs); margin-bottom: var(--space-5); }
.footer__links { list-style: none; display: grid; gap: var(--space-3); }
.footer__links a { color: rgba(255,255,255,0.78); font-size: var(--text-sm); }
.footer__links a:hover { color: #7fc4cf; }
.footer__contact a { color: rgba(255,255,255,0.78); }
.footer__contact a:hover { color: #7fc4cf; }
.footer__contact p { font-size: var(--text-sm); margin-bottom: var(--space-3); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: clamp(var(--space-10), 5vw, var(--space-16)); padding-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-3); }
.footer__bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.55); max-width: none; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.stack-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); }

/* ---------- Photo Placeholder ---------- */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 380px;
  border: 2px dashed #2E7D8C;
  border-radius: 12px;
  background: #f0f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.photo-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
}
.photo-placeholder__inner svg {
  width: 64px;
  height: 64px;
  opacity: 0.6;
}
.photo-placeholder__inner p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: #2E7D8C;
  margin: 0;
  max-width: none;
}
.photo-placeholder__inner span {
  font-size: var(--text-xs);
  color: #7A7974;
  line-height: 1.5;
}
