/* ============================================================
   Events & Design by Nancy — "Confetti & Calligraphy"
   Partiful structural grammar · EDN brand kit
   ============================================================ */

:root {
  /* Brand kit */
  --ink: #3e3e3e;
  --ink-soft: #4a4a4a;
  --navy: #485b73;
  --navy-deep: #3a4a5f;
  --pink: #d8a194;
  --pink-deep: #b97f6f;
  --seafoam: #ccd4c9;
  --beige: #efe7df;
  --canvas: #ffffff;
  --slate: #5f5f5f;
  --ash: #8f8a84;
  --hairline: #e6e0d8;

  /* Surfaces */
  --wash-beige: linear-gradient(180deg, #efe7df 0%, #ffffff 100%);
  --wash-seafoam: linear-gradient(180deg, rgba(204, 212, 201, 0.45) 0%, #ffffff 100%);
  --strip-gradient: linear-gradient(90deg, #efe7df 0%, #ecd9d3 55%, #e7ccc4 100%);
  --hero-overlay: linear-gradient(100deg, rgba(46, 51, 58, 0.72) 0%, rgba(72, 91, 115, 0.42) 55%, rgba(216, 161, 148, 0.30) 100%);

  /* Type */
  --font-display: "Libre Baskerville", "Baskerville", Georgia, serif;
  --font-script: "Pinyon Script", cursive;
  --font-sans: "Source Sans 3", "Myriad Pro", "Segoe UI", system-ui, sans-serif;

  --text-display: clamp(2.4rem, 5.2vw, 4rem);
  --text-title: clamp(1.9rem, 3.6vw, 2.6rem);
  --text-heading: 1.5rem;
  --text-heading-sm: 1.125rem;
  --text-body: 1.0625rem;
  --text-small: 0.9375rem;
  --text-caption: 0.8125rem;

  /* Shape */
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 960px;
  --shadow-sm: 0 0 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 0 20px rgba(0, 0, 0, 0.1);
  --shadow-stack: 0 0.8px 2.4px rgba(0,0,0,.05), 0 2.4px 7.2px rgba(0,0,0,.05),
                  0 6.4px 19px rgba(0,0,0,.05), 0 20px 60px rgba(0,0,0,.05);

  /* Layout */
  --page-max: 1200px;
  --pad-x: clamp(20px, 4vw, 40px);
  --section-y: clamp(64px, 9vw, 118px);

  /* Z scale */
  --z-sticky: 40;
  --z-menu: 50;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; margin: 0; }
p { margin: 0 0 1em; max-width: 68ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--page-max); margin-inline: auto; padding-inline: var(--pad-x); }

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--radius-btn) var(--radius-btn); z-index: 100;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-title);
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.script-kicker {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
  color: var(--pink-deep);
  display: block;
  margin-bottom: 10px;
}
.script-kicker.on-dark { color: #ecc9be; }
.lede { font-size: 1.15rem; color: var(--slate); }
.muted { color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-btn);
  padding: 13px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.22s var(--ease-out), color 0.22s var(--ease-out),
              border-color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn-fill { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-fill:hover { background: var(--navy); border-color: var(--navy); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
/* On photography: white fill w/ ink text (Partiful hero treatment) */
.btn-fill.on-photo { background: #fff; color: var(--ink); border-color: #fff; }
.btn-fill.on-photo:hover { background: var(--beige); border-color: var(--beige); }
.btn-ghost.on-photo { color: #fff; border-color: rgba(255,255,255,0.85); }
.btn-ghost.on-photo:hover { background: rgba(255,255,255,0.16); }
/* On dark ink band */
.btn-fill.on-ink { background: #fff; color: var(--ink); border-color: #fff; }
.btn-fill.on-ink:hover { background: var(--beige); border-color: var(--beige); }

/* ---------- Hallmarks (refined highlight lines) ---------- */
.hallmarks {
  margin: 28px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 14px;
  row-gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--ink-soft);
  max-width: none;
}
.hallmarks .sep {
  color: var(--pink);
  font-style: normal;
  font-size: 0.7em;
  transform: translateY(-2px);
}

/* ---------- Announcement strip ---------- */
.announce {
  background: var(--strip-gradient);
  text-align: center;
  padding: 9px var(--pad-x);
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--ink);
}
.announce a { color: inherit; text-underline-offset: 3px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--hairline);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.brand { text-decoration: none; display: flex; align-items: baseline; gap: 10px; }
.brand-main {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
}
.brand-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--pink-deep);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a[aria-current="page"] { border-bottom-color: var(--pink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 22px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius-btn);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
}
.menu-toggle svg { display: block; }

.nav-close-row { display: none; }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: var(--pad-x);
    width: min(300px, calc(100vw - 2 * var(--pad-x)));
    z-index: var(--z-menu);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s var(--ease-out), opacity 0.22s var(--ease-out), visibility 0s 0.22s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.22s var(--ease-out), opacity 0.22s var(--ease-out), visibility 0s 0s;
  }
  .nav-close-row {
    display: flex;
    justify-content: flex-end;
    padding: 2px 2px 6px;
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 6px;
  }
  .nav-close {
    background: none;
    border: none;
    color: var(--ink);
    padding: 6px;
    cursor: pointer;
    border-radius: var(--radius-btn);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-close:hover { background: var(--beige); }
  .nav-links a {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.005em;
    line-height: 1.3;
    color: var(--ink-soft);
    padding: 12px;
    width: 100%;
    border-bottom: none;
    border-radius: var(--radius-btn);
    text-decoration: underline;
    text-decoration-color: var(--hairline);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-skip-ink: none;
    transition: background-color 0.15s var(--ease-out), text-decoration-color 0.15s var(--ease-out), color 0.15s var(--ease-out);
  }
  .nav-links a:active,
  .nav-links a:hover { background: var(--wash-beige); color: var(--navy); }
  .nav-links a[aria-current="page"] {
    color: var(--navy);
    text-decoration-color: var(--pink);
    text-decoration-thickness: 2px;
  }
  .nav-links .mobile-inquire {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--hairline);
    width: 100%;
  }
  .nav-links .mobile-inquire a {
    display: block; text-align: center; background: var(--ink); color: #fff;
    border-radius: var(--radius-btn); text-decoration: none;
    font-family: var(--font-sans); font-weight: 600; font-style: normal;
    font-size: 0.85rem; letter-spacing: 0.09em; text-transform: uppercase;
    padding: 16px 14px;
    transition: background-color 0.2s var(--ease-out);
  }
  .nav-links .mobile-inquire a:hover,
  .nav-links .mobile-inquire a:active { background: var(--navy); }
}
@media (min-width: 861px) { .mobile-inquire { display: none; } }

/* ---------- Hero (full-bleed photo) ---------- */
.hero {
  position: relative;
  min-height: clamp(480px, 72vh, 720px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--hero-overlay);
  z-index: -1;
}
.hero-content {
  width: 100%;
  padding-block: clamp(48px, 7vw, 88px);
  color: #fff;
}
.hero-content .display { color: #fff; max-width: 15ch; }
.hero-sub {
  margin-top: 18px;
  font-size: 1.15rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.94);
}
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Interior page hero (shorter band) */
.hero.hero-short { min-height: clamp(340px, 48vh, 480px); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section-wash-beige { background: var(--wash-beige); }
.section-wash-seafoam { background: var(--wash-seafoam); }
.section-ink { background: var(--navy-deep); color: #fff; }
.section-ink .title, .section-ink .display { color: #fff; }
.section-ink p { color: rgba(255, 255, 255, 0.88); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered p { margin-inline: auto; text-align: left; }
.section-head .lede { margin-top: 16px; }

/* ---------- Two-column feature ---------- */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.feature.flip { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.feature.flip .feature-text { order: 2; }
.feature.flip .feature-media { order: 1; }
.feature-text .title { margin-bottom: 18px; }
.feature-text .btn { margin-top: 24px; }
.feature-text .pill-row { margin-top: 22px; }
@media (max-width: 860px) {
  .feature, .feature.flip { grid-template-columns: 1fr; }
  .feature.flip .feature-text { order: 1; }
  .feature.flip .feature-media { order: 2; }
}

/* ---------- Tilted photo stack ---------- */
.photo-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  padding-block: clamp(20px, 3vw, 36px);
}
.photo-stack img {
  border-radius: var(--radius-card);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.photo-stack .st-a { grid-column: 1 / 8; grid-row: 1; transform: rotate(-7deg); z-index: 1; aspect-ratio: 3 / 4; }
.photo-stack .st-b { grid-column: 6 / 13; grid-row: 1; transform: rotate(5deg) translateY(9%); z-index: 2; aspect-ratio: 3 / 4; }
.photo-stack .st-c { grid-column: 3 / 10; grid-row: 1; transform: rotate(-2deg) translateY(-38%); z-index: 0; aspect-ratio: 4 / 3; }
.photo-stack.duo .st-a { grid-column: 1 / 9; }
.photo-stack.duo .st-b { grid-column: 5 / 13; }

/* Single framed photo w/ tilt-behind accent card */
.photo-solo { position: relative; }
.photo-solo img {
  border-radius: var(--radius-card);
  border: 6px solid #fff;
  box-shadow: var(--shadow-stack);
  width: 100%;
  object-fit: cover;
}
.photo-solo::before {
  content: "";
  position: absolute;
  inset: 6% -4% -4% 6%;
  background: var(--seafoam);
  border-radius: var(--radius-card);
  transform: rotate(3deg);
  z-index: -1;
}
.photo-solo.accent-pink::before { background: var(--pink); opacity: 0.55; }

/* ---------- Gallery strip (horizontal scroll) ---------- */
.strip-wrap { overflow: hidden; position: relative; }
.strip-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: none;
  background: #fff;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  transition: opacity 0.25s var(--ease-out), background-color 0.2s var(--ease-out);
}
.strip-btn:hover { background: var(--beige); }
.strip-prev { left: 14px; }
.strip-next { right: 14px; }
.strip-btn.hide { opacity: 0; pointer-events: none; }
@media (hover: none) { .strip-btn { display: none; } }
.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 24px var(--pad-x) 34px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
}
.gallery-strip img {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 320px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: center;
}
.gallery-strip img:nth-child(odd) { transform: rotate(-1.4deg); }
.gallery-strip img:nth-child(even) { transform: rotate(1.2deg); }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.svc-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.svc-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.svc-card-body { padding: 18px 20px 22px; }
.svc-card-body h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-heading-sm);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.svc-card-body p { font-size: var(--text-small); color: var(--slate); margin: 0; }

/* ---------- Quote band ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  margin: 0 auto;
  max-width: 30ch;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.35;
  color: var(--navy);
}
.quote-band .attribution {
  margin-top: 20px;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--pink-deep);
}

/* ---------- Portfolio index (replaces pill-button jump nav) ---------- */
.gallery-index {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 16px;
  row-gap: 10px;
  max-width: none;
}
.gallery-index a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.gallery-index a:hover { color: var(--navy); border-bottom-color: var(--pink); }
.gallery-index .sep {
  color: var(--pink);
  font-size: 0.6em;
  transform: translateY(-3px);
  display: inline-block;
}

.couple-section { padding-block: clamp(28px, 4vw, 48px); }
.couple-section + .couple-section { border-top: 1px solid var(--hairline); }
.couple-head { margin-bottom: 4px; }
.couple-head .title { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.couple-head .script-kicker { font-size: 1.5rem; margin-bottom: 2px; }

.vendor-credit {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--slate);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 10px;
  row-gap: 4px;
  max-width: none;
}
.vendor-credit .sep {
  color: var(--pink);
  font-style: normal;
  font-size: 0.65em;
  transform: translateY(-2px);
  display: inline-block;
}

/* ---------- Services page rows ---------- */
.svc-row { padding-block: clamp(44px, 6vw, 80px); }
.svc-row + .svc-row { border-top: 1px solid var(--hairline); }
.svc-row .feature-text h2 { margin-bottom: 16px; }
.svc-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 12px;
  row-gap: 6px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.svc-list li + li::before {
  content: "\2726"; /* ✦ */
  color: var(--pink);
  font-style: normal;
  font-size: 0.7em;
  margin-right: 12px;
  display: inline-block;
  transform: translateY(-2px);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: var(--text-small);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9c2b9;
  border-radius: var(--radius-btn);
  padding: 12px 14px;
}
.field input::placeholder, .field textarea::placeholder { color: #6d6d6d; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  border-color: var(--navy);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-card .btn { width: 100%; text-align: center; }

.contact-aside h2 { margin-bottom: 14px; }
.contact-line { display: block; font-size: 1.15rem; font-weight: 600; text-decoration: none; color: var(--navy-deep); margin-bottom: 8px; }
.contact-line:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding-block: clamp(48px, 6vw, 72px) 32px;
  font-size: var(--text-small);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: clamp(28px, 5vw, 60px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-main { color: #fff; font-size: 1.2rem; }
.footer-brand .brand-script { font-size: 1.45rem; color: #ecc9be; }
.footer-sign {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: #ecc9be;
  margin-top: 18px;
}
.footer-h {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: rgba(255, 255, 255, 0.88); text-decoration: none; }
.footer-list a:hover { color: #ecc9be; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.footer-social svg { flex: 0 0 auto; transition: color 0.2s var(--ease-out); }
.footer-legal {
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Reveal motion ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .photo-stack.reveal img { transition: transform 0.8s var(--ease-out); }
.js .reveal[data-delay="1"] { transition-delay: 0.12s; }
.js .reveal[data-delay="2"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .svc-card, .nav-links { transition: none !important; }
}
