/* ============================================================
   Phoenix Pool Services
   Logo-derived blues, Sora + Figtree, photography-forward.
   One stylesheet. Mobile-first. CSS variables drive the palette.
   ============================================================ */

:root {
  --cyan: #57C7F0;
  --azure: #1E86D6;
  --deep: #0E5BAA;
  --deep-azure: #0B3C7E;
  --navy: #08203B;
  --accent: #1E86D6;
  --accent-hover: #0E5BAA;
  --grad: linear-gradient(120deg, #57C7F0 0%, #1E86D6 50%, #0E5BAA 100%);

  --ink: #11202E;
  --ink-soft: #45586B;
  --ink-faint: #7C8DA0;
  --line: #E1E9F1;
  --ice: #F3F8FC;
  --ice-deep: #E7F1F9;
  --paper: #FFFFFF;

  --display: 'Sora', system-ui, sans-serif;
  --body: 'Figtree', system-ui, sans-serif;

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-1: 0 1px 3px rgba(17, 32, 46, 0.06);
  --sh-2: 0 10px 30px -14px rgba(11, 60, 126, 0.22);
  --sh-3: 0 26px 60px -22px rgba(11, 60, 126, 0.32);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body); color: var(--ink); background: var(--paper);
  line-height: 1.62; font-size: 17px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); }
h3 { font-size: 1.28rem; }
p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--display); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--azure);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--grad); border-radius: 2px; }
.eyebrow.center { justify-content: center; }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 14px; font-size: 1.1rem; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 0.98rem; white-space: nowrap;
  padding: 14px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(30,134,214,.5); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(30,134,214,.62); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--azure); color: var(--azure); }
.btn-white { background: #fff; color: var(--deep-azure); box-shadow: var(--sh-3); }
.btn-white:hover { transform: translateY(-3px); }
.btn-outline-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 16px 32px; font-size: 1.04rem; }

/* sample banner (standardized) */
.sample-banner {
  background: #FFD84A; color: #0A0A0A; font-size: 13px; font-weight: 600;
  padding: 10px 16px; letter-spacing: 0.02em; text-align: center; font-family: var(--body);
}

/* header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-1); }
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { height: 42px; width: auto; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark .b1 { font-family: var(--display); font-weight: 800; font-size: 1.12rem; letter-spacing: 0.06em; color: var(--ink); text-transform: uppercase; }
.brand .wordmark .b2 { font-family: var(--display); font-weight: 600; font-size: 0.58rem; letter-spacing: 0.34em; color: var(--azure); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--display); font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .25s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-family: var(--display); font-weight: 600; font-size: 0.95rem; color: var(--deep-azure); white-space: nowrap; }
.nav-phone:hover { color: var(--azure); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO (photo-forward) */
.hero { position: relative; min-height: clamp(560px, 82vh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; z-index: -2; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(8,32,59,.86) 0%, rgba(8,32,59,.64) 38%, rgba(8,32,59,.22) 70%, rgba(8,32,59,.08) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.hero-content { max-width: 640px; }
.hero .eyebrow { color: #BfE6F8; margin-bottom: 20px; }
.hero .eyebrow::before { background: var(--cyan); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .grad-text { background: linear-gradient(120deg, #8AD9F6, #4FB4EE); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.22rem; color: rgba(255,255,255,.9); max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-rating { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 10px 16px; border-radius: var(--r-pill); }
.stars { display: inline-flex; gap: 2px; color: #FFC23D; }
.stars svg { width: 17px; height: 17px; }
.hero-rating .rtext { font-size: 0.92rem; color: rgba(255,255,255,.92); }
.hero-rating .rtext strong { color: #fff; font-family: var(--display); }

/* trust bar */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 26px 24px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ti-ic { width: 38px; height: 38px; flex: none; color: var(--azure); }
.trust-item b { font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--ink); display: block; line-height: 1.15; }
.trust-item span { font-size: 0.85rem; color: var(--ink-faint); }

/* services (image cards) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease; }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-3); border-color: transparent; }
.svc-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-ic { position: absolute; left: 26px; top: -24px; width: 48px; height: 48px; border-radius: 13px; background: #fff; box-shadow: var(--sh-2); display: grid; place-items: center; color: var(--azure); z-index: 2; }
.svc-card-ic svg { width: 25px; height: 25px; }
.svc-card-body { position: relative; padding: 38px 26px 30px; }
.svc-card-body h3 { margin-bottom: 9px; }
.svc-card-body p { font-size: 0.98rem; }
.svc-card-body ul { list-style: none; padding: 0; margin: 16px 0 0; }
.svc-card-body li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); padding: 4px 0; }
.svc-card-body li svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 4px; }

/* gallery band */
.gallery { background: var(--ice); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 14px; }
.gal-item { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1/1; background: var(--ice-deep); }
.gal-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-cap { text-align: center; margin-top: 22px; font-size: 0.9rem; color: var(--ink-faint); }

/* owner / meet */
.meet { position: relative; }
.meet .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.meet-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-3); }
.meet-photo img { width: 100%; height: 100%; object-fit: cover; }
.meet-photo.placeholder { background: var(--grad); display: grid; place-items: center; text-align: center; padding: 28px; }
.meet-photo.placeholder .pn { color: rgba(255,255,255,.95); font-family: var(--display); font-weight: 600; }
.meet-photo.placeholder img.mk { width: 92px; height: auto; margin: 0 auto 14px; filter: brightness(0) invert(1); opacity: .92; }
.meet h2 { margin-bottom: 6px; }
.meet .sig { font-family: var(--display); font-weight: 700; color: var(--azure); margin-bottom: 22px; font-size: 1.02rem; }
.meet p { margin-bottom: 15px; font-size: 1.05rem; }
.meet .quote { border-left: 3px solid var(--accent); padding: 4px 0 4px 22px; margin: 24px 0; font-style: italic; color: var(--ink); font-size: 1.06rem; }

/* pricing */
.price-card { background: var(--grad); color: #fff; border-radius: var(--r-xl); padding: clamp(36px, 6vw, 60px); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; box-shadow: var(--sh-3); position: relative; overflow: hidden; }
.price-card .eyebrow { color: rgba(255,255,255,.85); }
.price-card .eyebrow::before { background: rgba(255,255,255,.7); }
.price-card h2 { color: #fff; margin: 12px 0 12px; }
.price-card p { color: rgba(255,255,255,.86); }
.price-tag { text-align: center; }
.price-tag .amt { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 7vw, 4.4rem); line-height: 1; }
.price-tag .amt sup { font-size: 1.2rem; font-weight: 600; vertical-align: super; }
.price-tag .amt small { font-size: 1.1rem; font-weight: 600; }
.price-tag .per { font-size: 0.92rem; color: rgba(255,255,255,.82); letter-spacing: .04em; margin-bottom: 20px; }

/* reviews */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.rev-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.rev-card .stars { margin-bottom: 14px; }
.rev-card p { color: var(--ink); font-size: 1.02rem; margin-bottom: 18px; }
.rev-card .rev-by { font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); }
.rev-card .rev-by span { display: block; color: var(--ink-faint); font-weight: 400; font-size: 0.82rem; }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 13px; overflow: hidden; background: var(--paper); transition: box-shadow .3s ease, border-color .3s ease; }
.faq[open] { box-shadow: var(--sh-2); border-color: transparent; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--display); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .fq-ic { width: 22px; height: 22px; flex: none; color: var(--azure); transition: transform .35s var(--ease); }
.faq[open] summary .fq-ic { transform: rotate(45deg); }
.faq .faq-body { padding: 0 26px 24px; }
.faq .faq-body p { font-size: 1rem; }

/* CTA over image */
.cta { position: relative; overflow: hidden; }
.cta-img { position: absolute; inset: 0; z-index: -2; }
.cta-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,32,59,.92), rgba(14,91,170,.78)); }
.cta .wrap { position: relative; z-index: 1; text-align: center; padding: clamp(64px, 9vw, 104px) 24px; }
.cta h2 { color: #fff; max-width: 720px; margin: 0 auto 16px; }
.cta p { color: rgba(255,255,255,.86); max-width: 540px; margin: 0 auto 30px; font-size: 1.12rem; }
.cta .hero-cta { justify-content: center; margin-bottom: 0; }

/* footer */
.site-footer { background: var(--navy); color: #B9CBDD; padding: 62px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 42px; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand .brand img { height: 46px; }
.foot-brand .brand .wordmark .b1 { color: #fff; }
.foot-brand p { color: #8DA6BE; font-size: 0.95rem; max-width: 280px; }
.foot-col h4 { color: #fff; font-size: 0.8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 15px; font-weight: 700; }
.foot-col a, .foot-col p { display: block; color: #9FB4C8; font-size: 0.95rem; padding: 5px 0; transition: color .25s ease; }
.foot-col a:hover { color: var(--cyan); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; }
.foot-bottom .copy { font-size: 0.86rem; color: #7E97AE; }
.foot-attr { font-size: 0.8rem; color: #7E97AE; }
.foot-attr a { color: #B9CBDD; }
.foot-attr a:hover { color: var(--cyan); }

/* interior page header */
.page-hero { position: relative; overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; }
.page-hero-img { position: absolute; inset: 0; z-index: -2; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,32,59,.85), rgba(8,32,59,.5)); }
.page-hero .wrap { position: relative; z-index: 1; padding: 48px 24px 46px; }
.page-hero .eyebrow { color: #BfE6F8; margin-bottom: 14px; }
.page-hero .eyebrow::before { background: var(--cyan); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.3rem); max-width: 760px; }
.page-hero p { margin-top: 14px; max-width: 560px; font-size: 1.12rem; color: rgba(255,255,255,.9); }
.crumbs { font-size: 0.82rem; color: rgba(255,255,255,.7); margin-bottom: 16px; font-family: var(--display); font-weight: 500; }
.crumbs a:hover { color: #fff; }

/* detailed service rows */
.svc-row { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; padding: clamp(36px,5vw,64px) 0; border-bottom: 1px solid var(--line); }
.svc-row:last-of-type { border-bottom: 0; }
.svc-row.flip .svc-row-media { order: 2; }
.svc-row-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--sh-2); }
.svc-row-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-row h2 { font-size: clamp(1.55rem, 3.4vw, 2.2rem); margin-bottom: 12px; }
.svc-row .svc-tag { color: var(--azure); font-family: var(--display); font-weight: 700; font-size: 0.78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 9px; }
.svc-row .svc-tag svg { width: 18px; height: 18px; }
.svc-row ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.svc-row li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.svc-row li svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 4px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--sh-2); }
.field { margin-bottom: 17px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: 0.86rem; margin-bottom: 7px; color: var(--ink); }
.field label .opt { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font: inherit; font-size: 0.98rem; color: var(--ink); background: var(--ice); transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--azure); background: #fff; box-shadow: 0 0 0 4px rgba(30,134,214,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr; gap: 12px; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 6px; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; }
.form-success svg { width: 54px; height: 54px; color: var(--accent); margin: 0 auto 16px; }
.contact-aside .ca-block { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-aside .ca-block:first-child { padding-top: 0; }
.contact-aside h4 { font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--azure); margin-bottom: 9px; }
.contact-aside a.big { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.contact-aside a.big:hover { color: var(--azure); }
.contact-aside p { color: var(--ink-soft); }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* responsive */
@media (max-width: 940px) {
  .meet .wrap { grid-template-columns: 1fr; gap: 32px; }
  .meet-photo { max-width: 400px; }
  .price-card { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .price-card .eyebrow { justify-content: center; }
  .svc-row { grid-template-columns: 1fr; gap: 24px; }
  .svc-row.flip .svc-row-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 20px; box-shadow: var(--sh-2); }
  .site-header.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .trustbar .wrap { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .svc-grid, .rev-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .trustbar .wrap { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .gal-item, .gal-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
