/* ============================================
   Zoe McGrath — Fine Art Pet Portrait Photography
   Quiet luxury · editorial · restrained
   ============================================ */

:root {
  --ink: #1f211b;
  --ink-soft: #4c4e45;
  --stone: #807e72;
  --ivory: #f7f4ee;
  --paper: #fcfaf6;
  --linen: #efeae0;
  --hairline: rgba(31, 33, 27, 0.16);
  --bronze: #a87b52;
  --sage: #84886b;
  --white: #ffffff;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "DM Sans", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 16.5px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); }

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 330;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0.005em;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 340; }

strong { font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--bronze);
  display: block;
  margin-bottom: 1.6rem;
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 48px;
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease;
}
.nav.scrolled {
  background: rgba(252, 250, 246, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--hairline);
  padding: 16px 48px;
}
.nav .brand {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--white);
  transition: color 0.5s ease;
  line-height: 1.1;
}
.nav .brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  opacity: 0.8;
  margin-top: 5px;
}
.nav.scrolled .brand, .nav.solid .brand { color: var(--ink); }
.nav ul {
  display: flex;
  gap: 42px;
  list-style: none;
  align-items: center;
}
.nav ul a {
  text-decoration: none;
  white-space: nowrap;
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.nav.scrolled ul a, .nav.solid ul a { color: var(--ink-soft); }
.nav ul a:hover, .nav ul a.active { border-color: currentColor; }
.nav .cta-mini {
  border: 1px solid rgba(255,255,255,0.55);
  padding: 12px 26px;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}
.nav.scrolled .cta-mini, .nav.solid .cta-mini { border-color: var(--ink); }
.nav .cta-mini:hover {
  background: var(--white);
  color: var(--ink) !important;
  border-color: var(--white);
}
.nav.scrolled .cta-mini:hover, .nav.solid .cta-mini:hover {
  background: var(--ink);
  color: var(--white) !important;
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  width: 40px; height: 40px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1px;
  background: var(--white);
  margin: 7px auto;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span, .nav.solid .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
  transform: scale(1.06);
  animation: settle 2.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes settle {
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(22, 23, 18, 0.74) 0%, rgba(22, 23, 18, 0.30) 42%, rgba(22, 23, 18, 0.10) 65%, rgba(22, 23, 18, 0.22) 100%);
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px 12vh;
  color: var(--white);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  max-width: 17ch;
  text-wrap: balance;
  margin-bottom: 1.8rem;
}
.hero h1 em { color: #e8dcc8; }
.hero .sub {
  font-size: 11.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.88;
  margin-bottom: 3rem;
}
.hero .eyebrow { color: rgba(255,255,255,0.75); }
.hero-rule {
  width: 64px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  margin-bottom: 2.2rem;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg { animation-duration: 3.4s; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,23,18,0.6), rgba(22,23,18,0.14));
}
.page-hero .hero-content { position: relative; z-index: 2; padding-bottom: 9vh; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); max-width: 20ch; text-wrap: balance; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 17px 42px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn-terra, .btn-sage {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn-terra:hover, .btn-sage:hover {
  background: transparent;
  color: var(--ink);
}
.btn-light {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.btn-light:hover {
  background: transparent;
  color: var(--ivory);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* Text link with long arrow */
.textlink {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s, border-color 0.3s;
}
.textlink:hover { color: var(--bronze); border-color: var(--bronze); }

/* ---------- Sections ---------- */
section { padding: 130px 0; position: relative; }
.section-sand { background: var(--ivory); }
.section-dark { background: #23251e; color: #cfccc0; }
.section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark .eyebrow { color: #b29671; }

.section-head { max-width: 680px; margin: 0 auto 90px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 1.4rem; text-wrap: balance; }
.section-head p { color: var(--ink-soft); }
.section-head .eyebrow { margin-bottom: 1.8rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.two-col h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 2rem; text-wrap: balance; }
.two-col p { margin-bottom: 1.2rem; color: var(--ink-soft); }

.framed-img {
  position: relative;
  overflow: hidden;
}
.framed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.framed-img:hover img { transform: scale(1.025); }

/* ---------- Gallery ---------- */
.masonry {
  columns: 3;
  column-gap: 28px;
}
.masonry a {
  display: block;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  break-inside: avoid;
}
.masonry img {
  width: 100%;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s;
}
.masonry a:hover img { transform: scale(1.035); opacity: 0.92; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 19, 15, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadein 0.4s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
}
.lightbox .lb-close {
  position: absolute;
  top: 24px; right: 36px;
  color: rgba(255,255,255,0.8);
  font-size: 1.8rem;
  font-weight: 200;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans);
  transition: color 0.3s;
}
.lightbox .lb-close:hover { color: var(--white); }
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 1.5rem;
  font-weight: 200;
  width: 64px; height: 64px;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox .lb-nav:hover { color: var(--white); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ---------- Pull quotes / testimonials ---------- */
.quote-card {
  position: relative;
  padding: 0 0 0 36px;
  border-left: 1px solid var(--bronze);
  background: none;
  margin: 2.4rem 0;
}
.quote-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-style: italic;
  font-weight: 340;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.quote-card cite {
  font-style: normal;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--stone);
  font-weight: 500;
}
.quote-card cite::before { content: "— "; color: var(--bronze); }

/* Grand centered pull quote */
.pull-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-style: italic;
  font-weight: 330;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 2.2rem;
  text-wrap: balance;
}
.pull-quote cite {
  font-style: normal;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--stone);
  font-weight: 500;
}
.pull-quote cite::before { content: "— "; color: var(--bronze); }
.section-dark .pull-quote blockquote, .section-dark .quote-card blockquote { color: var(--ivory); }
.section-dark .pull-quote cite, .section-dark .quote-card cite { color: #9b988b; }

/* ---------- Steps (process) ---------- */
.steps { max-width: 860px; margin: 0 auto; }
.steps::before { display: none; }
.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  padding: 52px 0;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.step:last-child { border-bottom: 1px solid var(--hairline); }
.step-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bronze);
  line-height: 1;
  background: none;
  border: none;
  width: auto; height: auto;
  display: block;
}
.step h3 { font-size: 1.6rem; margin-bottom: 0.9rem; }
.step p { color: var(--ink-soft); margin-bottom: 0.6rem; }

/* ---------- Product cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px 36px;
}
.card {
  background: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: none; box-shadow: none; }
.card > img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  transition: opacity 0.5s;
}
.card:hover > img { opacity: 0.92; }
.card-body { padding: 30px 0 0; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.45rem; margin-bottom: 0.8rem; }
.card-body p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.card-body .price {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bronze);
  font-weight: 500;
}

/* ---------- Collections (pricing tiers) ---------- */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--hairline);
  background: var(--white);
}
.tier {
  padding: 52px 40px 44px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--hairline);
}
.tier:first-child { border-left: none; }
.tier-tag {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 1.6rem;
  min-height: 1em;
}
.tier h3 {
  font-size: 1.9rem;
  font-weight: 350;
  margin-bottom: 0.4rem;
}
.tier h3 em { font-style: italic; }
.tier-price {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--stone);
  font-weight: 500;
  padding-bottom: 1.8rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--hairline);
}
.tier ul {
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex: 1;
}
.tier ul li { padding-left: 22px; position: relative; }
.tier ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85em;
  width: 12px; height: 1px;
  background: var(--bronze);
}
.tier .btn { margin-top: 2.4rem; text-align: center; }
.tier-featured {
  background: #23251e;
  color: #cfccc0;
  margin: -22px -1px;
  padding-top: 74px;
  padding-bottom: 66px;
  position: relative;
  z-index: 1;
  border-left: none;
}
.tier-featured h3 { color: var(--ivory); }
.tier-featured .tier-price { color: #9b988b; border-color: rgba(247,244,238,0.18); }
.tier-featured ul { color: #b5b2a5; }
.collections-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--stone);
  max-width: 64ch;
  margin: 36px auto 0;
}
@media (max-width: 900px) {
  .collections { grid-template-columns: 1fr; }
  .tier { border-left: none; border-top: 1px solid var(--hairline); }
  .tier:first-child { border-top: none; }
  .tier-featured { margin: 0; padding-top: 52px; padding-bottom: 52px; }
}

/* Feature list */
.feature-list { list-style: none; display: grid; gap: 0; }
.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}
.feature-list li:last-child { border-bottom: 1px solid var(--hairline); }
.feature-list .tick {
  width: 26px;
  height: 1px;
  background: var(--bronze);
  border-radius: 0;
  color: transparent;
  font-size: 0;
  display: block;
  margin-top: 0.95em;
}
.feature-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 420;
  margin-bottom: 0.2rem;
}
.feature-list span.desc { font-size: 0.9rem; color: var(--ink-soft); }
.section-dark .feature-list span.desc { color: #b5b2a5; }
.section-dark .feature-list strong { color: var(--ivory); }
.section-dark .feature-list li { border-color: rgba(247,244,238,0.16); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 96px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 0;
  padding: 56px 52px;
  box-shadow: none;
}
.form-card h3 { font-size: 1.7rem; }
.form-card label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--stone);
  margin: 26px 0 8px;
}
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  padding: 13px 0;
  border: none;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15.5px;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.3s;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.form-card ::placeholder { color: #b3b0a4; }
.form-card .btn { margin-top: 40px; width: 100%; }

/* ---------- Footer ---------- */
footer {
  background: #1c1e18;
  color: #9b988b;
  padding: 90px 0 40px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
footer .brand {
  font-family: var(--serif);
  font-weight: 350;
  color: var(--ivory);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}
footer .brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  opacity: 0.65;
  margin-top: 6px;
}
footer h4 {
  color: var(--ivory);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  margin-bottom: 22px;
}
footer ul { list-style: none; display: grid; gap: 10px; }
footer a { color: #9b988b; text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--ivory); }
.socials { display: flex; gap: 26px; margin-top: 26px; }
.socials a {
  width: auto; height: auto;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.socials a:hover { background: none; opacity: 1; color: var(--ivory); }
.socials svg { width: 15px; height: 15px; fill: currentColor; }
.foot-bottom {
  border-top: 1px solid rgba(247,244,238,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Big CTA band ---------- */
.cta-band {
  position: relative;
  padding: 170px 0;
  background-size: cover;
  background-position: center 35%;
  text-align: center;
  isolation: isolate;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 26, 19, 0.58);
  z-index: -1;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  max-width: 24ch;
  margin: 0 auto 1.4rem;
  text-wrap: balance;
}
.cta-band p {
  color: rgba(255,255,255,0.82);
  max-width: 54ch;
  margin: 0 auto 3rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}
.cta-band .btn-row { justify-content: center; }

/* Association badges */
.badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  flex-wrap: wrap;
}
.badges img {
  height: 72px;
  width: auto;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.5s;
}
.badges img:hover { filter: grayscale(0) opacity(0.9); }

/* Hairline divider utility */
.rule {
  width: 64px;
  height: 1px;
  background: var(--bronze);
  margin: 0 auto;
}

/* Hide legacy ornaments if present */
.paw-divider, .scroll-hint, .butterfly, .paw-print { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 80px 0; }
  .wrap { padding: 0 24px; }
  .hero-content { padding: 0 24px 10vh; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .masonry { columns: 2; column-gap: 18px; }
  .masonry a { margin-bottom: 18px; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .step { grid-template-columns: 72px 1fr; gap: 24px; padding: 40px 0; }
  .step-num { font-size: 2.2rem; }

  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-toggle { display: block; }
  .nav ul {
    position: fixed;
    inset: 0;
    background: rgba(28, 30, 23, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav ul.open { transform: translateX(0); }
  .nav ul a { color: rgba(255,255,255,0.92) !important; font-size: 13px; }
  .nav .cta-mini { border-color: rgba(255,255,255,0.55) !important; }
  .nav.open-menu .nav-toggle span { background: var(--white); }
  .nav.open-menu .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.open-menu .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open-menu .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .form-card { padding: 36px 26px; }
  .badges { gap: 36px; }
  .badges img { height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none !important; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
