/* ============================================================
   A-GAME CARE — main.css
   Design system per Build Brief v1.2 §3 (STRICT)
   Athletic editorial: flat colour blocks, hard grid, thin aqua
   rules, oversized condensed numerals. NO grads, NO glass,
   NO purple, NO emoji, max radius 6px cards / 4px buttons,
   one subtle shadow only.
   Fonts: Barlow Condensed (head) / Barlow (body) — swap to
   Pluto Sans Condensed later via --font-head / --font-body.
   ============================================================ */

:root {
  --dark: #02334E;
  --blue: #3B73B9;
  --aqua: #72CCD2;
  --red: #EF4136;
  --green: #50B848;
  --paper: #F7F8F9;
  --ink: #1A2B38;
  --font-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 1px 3px rgba(2, 51, 78, .12);
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) { body { font-size: 18px; } }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.12;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 6vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 700; }

p, li { max-width: 68ch; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--dark); text-decoration: underline; }
/* In-text links: underline so they don't rely on colour alone (WCAG 1.4.1) */
p a:not(.btn):not(.arrow-link):not(.go), li a:not(.btn):not(.arrow-link):not(.go) { text-decoration: underline; text-underline-offset: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 2px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 32px; } }

/* Section label — uppercase w/ letter-spacing per brief 3.4 */
.label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue);
  margin-bottom: .6rem;
}

/* Aqua rule motif — 3px per brief 3.3 */
.rule {
  width: 64px;
  height: 3px;
  background: var(--aqua);
  border: 0;
  margin: 1.1rem 0 1.4rem;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .8rem 1.7rem;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .16s cubic-bezier(.23,1,.32,1), transform .12s cubic-bezier(.23,1,.32,1);
}
.btn:active { transform: scale(.97); }
.btn:hover { text-decoration: none; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #d9382e; color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #325f9a; color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-light:hover { border-color: var(--aqua); color: var(--aqua); }
.btn-xl { font-size: 1.35rem; padding: 1.05rem 2.4rem; }

.arrow-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blue);
}
.arrow-link:hover { color: var(--dark); }

/* ---------- Image placeholders (brief §0.2) ---------- */
.imgph {
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  min-height: 220px;
  width: 100%;
}
.imgph span { color: #bcd6e2; }
.imgph.tall { min-height: 320px; }
.imgph.portrait { aspect-ratio: 4 / 5; min-height: 0; }
.imgph.square { aspect-ratio: 1 / 1; min-height: 0; }
.imgph.on-dark { background: #0b415f; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--dark);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}
@media (min-width: 768px) { .header-inner { padding: 0 32px; min-height: 72px; } }

.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.brand .brand-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .06em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.brand .brand-word .care { color: var(--aqua); font-weight: 400; letter-spacing: .22em; }
.brand:hover { text-decoration: none; }

.main-nav { display: none; margin-left: auto; }
.main-nav > ul { display: flex; list-style: none; gap: .2rem; align-items: center; }
.main-nav a, .main-nav button.nav-drop-btn {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  padding: .55rem .7rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.main-nav a:hover, .main-nav button.nav-drop-btn:hover { color: var(--aqua); text-decoration: none; }

.nav-item-drop { position: relative; }
.nav-drop-btn::after { content: " ▾"; font-size: .75em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border-top: 3px solid var(--aqua);
  box-shadow: var(--shadow);
  list-style: none;
  display: none;
  padding: .4rem 0;
}
.nav-item-drop:hover .dropdown,
.nav-item-drop:focus-within .dropdown,
.nav-item-drop.open .dropdown { display: block; }
.dropdown a {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  text-transform: none;
  letter-spacing: 0;
  padding: .5rem 1.1rem;
}
.dropdown a:hover { color: var(--blue); background: var(--paper); }

.header-actions { display: none; align-items: center; gap: 1rem; margin-left: .4rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: .03em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--aqua); text-decoration: none; }
.header-phone svg { width: 17px; height: 17px; fill: var(--aqua); }
.header-book { white-space: nowrap; font-size: 1rem; padding: .62rem 1.25rem; }

@media (min-width: 1060px) {
  .main-nav { display: block; }
  .header-actions { display: flex; }
  .menu-toggle { display: none !important; }
}

/* Mobile menu */
.menu-toggle {
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: .5rem;
  display: inline-flex;
}
.menu-toggle svg { width: 26px; height: 26px; fill: #fff; }

.mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 2px solid var(--aqua);
  padding: .6rem 20px 1.4rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li > a, .mobile-nav .m-group-label {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .55rem 0;
}
.mobile-nav .m-sub { padding-left: 1rem; border-left: 2px solid var(--aqua); margin: 0 0 .5rem; }
.mobile-nav .m-sub a {
  display: block;
  color: #cfe3ee;
  font-family: var(--font-body);
  font-size: .98rem;
  padding: .32rem 0;
}
.mobile-nav a:hover { color: var(--aqua); text-decoration: none; }
.mobile-nav .m-phone { color: var(--aqua); font-family: var(--font-body); display: block; padding: .8rem 0 .2rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
}
.hero .hero-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  background: #0b415f;
}
.hero .hero-panel {
  position: relative;
  background: rgba(2, 51, 78, .88);
  max-width: 640px;
  padding: 2.6rem 2rem;
  margin: 0 20px;
}
.hero-outer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 7rem) 0;
  position: relative;
}
.hero h1 { color: #fff; margin-bottom: .9rem; }
.hero .hero-sub { font-size: 1.15rem; margin-bottom: 1.6rem; color: #dcebf3; }
.hero .hero-panel::before {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--aqua);
  margin-bottom: 1.3rem;
}
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; }
.hero .secondary-link {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.08rem;
}
.hero .secondary-link:hover { color: var(--aqua); text-decoration: none; }

/* Page hero (interior pages) */
.page-hero { background: var(--dark); color: #fff; padding: clamp(2.6rem, 6vw, 4.5rem) 0; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #dcebf3; font-size: 1.12rem; margin-top: 1.1rem; }
.page-hero .rule { margin: 1.1rem 0 0; }
.page-hero .crumbs { font-size: .88rem; color: #9dbdcf; margin-bottom: 1rem; }
.page-hero .crumbs a { color: #cfe3ee; text-decoration: underline; text-underline-offset: 2px; }
.page-hero .crumbs a:hover { color: var(--aqua); }

/* ---------- Sections ---------- */
.section { padding: clamp(2.8rem, 7vw, 5rem) 0; }
.section.dark { background: var(--dark); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: #dcebf3; }
.section.white { background: #fff; }
.section-head { margin-bottom: 2rem; }

/* Numbered service list (brief 3.3: oversized condensed numerals, aqua rules) */
.numbered-list { list-style: none; }
.numbered-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-top: 2px solid var(--aqua);
  align-items: start;
}
.numbered-list li:last-child { border-bottom: 2px solid var(--aqua); }
.numbered-list .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: .9;
  color: var(--blue);
}
.numbered-list h3 { margin-bottom: .25rem; }
.numbered-list h3 a { color: var(--dark); }
.numbered-list h3 a:hover { color: var(--blue); text-decoration: none; }
.numbered-list p { color: var(--ink); }
.numbered-list .go { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .98rem; }
@media (min-width: 768px) {
  .numbered-list .num { font-size: 4.2rem; }
  .numbered-list li { grid-template-columns: 96px 1fr; }
}

/* Cards */
.card-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border-top: 3px solid var(--aqua);
}
.card h3 a { color: var(--dark); }
.card h3 a:hover { color: var(--blue); text-decoration: none; }
.card .price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .98rem;
  margin-top: auto;
}
.card .go { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .96rem; }

/* Split layout */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* FAQ */
.faq { border-top: 2px solid var(--aqua); }
.faq details { border-bottom: 1px solid #d5dee4; }
.faq summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  padding: 1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-a { padding: 0 0 1.2rem; }

/* CTA band */
.cta-band { background: var(--dark); color: #fff; text-align: center; padding: clamp(2.8rem, 7vw, 4.6rem) 0; }
.cta-band h2 { color: #fff; margin-bottom: .7rem; }
.cta-band p { color: #dcebf3; margin: 0 auto 1.5rem; }
.cta-band .call-line { margin-top: 1.2rem; font-size: 1.05rem; }
.cta-band .call-line a { color: var(--aqua); font-weight: 500; }

/* Price line strip */
.price-strip {
  background: #fff;
  border-left: 3px solid var(--aqua);
  box-shadow: var(--shadow);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  font-size: .98rem;
}

/* Meta row on service pages */
.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 1.6rem 0 1.2rem;
}
.svc-meta .dot { color: var(--aqua); }

.team-note { border-left: 3px solid var(--aqua); padding: .6rem 1rem; background: #fff; border-radius: 0 6px 6px 0; box-shadow: var(--shadow); font-size: .98rem; margin-top: 1.4rem; }

/* Team */
.person { display: grid; gap: 1.6rem; padding: 2.4rem 0; border-top: 2px solid var(--aqua); }
@media (min-width: 820px) { .person { grid-template-columns: 300px 1fr; gap: 2.6rem; } }
.person .ptitle { font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); font-size: 1rem; margin: .15rem 0 .8rem; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.4rem; list-style: none; }
.tags li {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--dark);
  border: 1px solid var(--aqua);
  border-radius: 4px;
  padding: .22rem .6rem;
}
.tags li.tag-green { border-color: var(--green); color: var(--green); }

/* Products */
.product { display: grid; gap: 1.6rem; padding: 2.6rem 0; border-top: 2px solid var(--aqua); align-items: center; }
@media (min-width: 820px) { .product { grid-template-columns: 340px 1fr; gap: 3rem; } }
.product h2 { margin-bottom: .6rem; }
.product .buy-row { margin-top: 1.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.product .pickup { font-size: .95rem; color: #4a5b66; }

/* Forms */
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; max-width: 660px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } .form-grid.two-col .full { grid-column: 1 / -1; } }
label { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--dark); display: block; margin-bottom: .3rem; letter-spacing: .02em; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .7rem .8rem;
  border: 1px solid #b9c6cf;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

/* Blog */
.post-card { background: #fff; border-radius: 6px; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.post-card .post-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.post-card .date { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); font-family: var(--font-head); font-weight: 500; }
.post-card h3 a { color: var(--dark); }
.post-card h3 a:hover { color: var(--blue); text-decoration: none; }
.draft-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 4px;
  padding: .1rem .5rem;
  margin-bottom: .3rem;
  align-self: flex-start;
}
.article-body { max-width: 720px; }
.article-body h2 { margin: 2.2rem 0 .8rem; }
.article-body h3 { margin: 1.8rem 0 .6rem; }
.article-body p, .article-body ul, .article-body ol { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; }
.article-meta { color: #4a5b66; font-size: .95rem; margin-top: .8rem; }
.disclosure { font-size: .9rem; color: #4a5b66; border-top: 1px solid #d5dee4; padding-top: 1rem; margin-top: 2rem; }

/* Map */
.map-embed { border: 0; width: 100%; height: 380px; border-radius: 6px; box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #cfe3ee; padding: 3.2rem 0 1.6rem; }
.site-footer a { color: #fff; }
.site-footer p a:not(.btn) { text-decoration: underline; text-underline-offset: 2px; }
.site-footer a:hover { color: var(--aqua); }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-grid h3 {
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .9rem;
  font-weight: 700;
}
.footer-grid h3::after { content: ""; display: block; width: 36px; height: 2px; background: var(--aqua); margin-top: .5rem; }
.footer-logo img { height: 72px; width: auto; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { padding: .22rem 0; }
.footer-links a { font-size: .98rem; }
.social-row { display: flex; gap: .9rem; margin-top: 1rem; }
.social-row a { display: inline-flex; padding: .4rem; border: 1px solid rgba(255,255,255,.28); border-radius: 4px; }
.social-row a:hover { border-color: var(--aqua); }
.social-row svg { width: 18px; height: 18px; fill: #fff; }
.social-row a:hover svg { fill: var(--aqua); }
.footer-area { border-top: 1px solid rgba(255,255,255,.16); margin-top: 2.4rem; padding-top: 1.4rem; font-size: .92rem; }
.footer-area a { color: #cfe3ee; text-decoration: underline; }
.footer-area a:hover { color: var(--aqua); }
.footer-legal { margin-top: .8rem; font-size: .88rem; color: #9dbdcf; display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.footer-legal a { color: #9dbdcf; }

/* ---------- Mobile bottom bar (brief 3.6) ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-top: 2px solid var(--aqua);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}
.mobile-bar a:hover { text-decoration: none; }
.mobile-bar .bar-call { background: var(--dark); }
.mobile-bar .bar-book { background: var(--red); }
.mobile-bar svg { width: 17px; height: 17px; fill: #fff; }
body { padding-bottom: 52px; }
@media (min-width: 1060px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

/* Utility */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.center { text-align: center; }
.small { font-size: .92rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Success note (green reserved for success states) */
.success-note { border-left: 3px solid var(--green); background: #fff; padding: 1rem 1.2rem; border-radius: 0 6px 6px 0; box-shadow: var(--shadow); }

/* Town page map block */
.map-block { margin-top: 2rem; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--aqua);
  color: var(--dark);
  padding: .6rem 1rem;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---- Scroll reveal (restrained; added post-build) ---- */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .4s ease-out,transform .4s ease-out}
.reveal.in{opacity:1;transform:none}
.card:hover,.post-card:hover,.svc-card:hover{transform:translateY(-2px);box-shadow:0 3px 10px rgba(2,51,78,.14)}
.card,.post-card,.svc-card{transition:transform .25s ease-out,box-shadow .25s ease-out}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1 !important;transform:none !important;transition:none !important}
  .card,.post-card,.svc-card{transition:none !important}
  .card:hover,.post-card:hover,.svc-card:hover{transform:none !important}
}

/* ---- Filled photo slots ---- */
.imgph.filled{padding:0;min-height:0;overflow:hidden}
.imgph.filled:not(.portrait):not(.square){aspect-ratio:16/9}
.imgph.filled img{width:100%;height:100%;object-fit:cover;display:block}
.hero-media img{width:100%;height:100%;object-fit:cover;display:block}

/* ---- Fix: landscape photos display at natural aspect (no crop) ---- */
.imgph.filled:not(.portrait):not(.square){aspect-ratio:auto}
.imgph.filled:not(.portrait):not(.square) img{height:auto}
