/*
Theme Name: Cohen Air
Theme URI: https://cohenair.com
Author: Cohen Air
Description: One-page marketing theme for Cohen Air Conditioning & Heating.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: cohenair
*/

:root {
  --navy: #0f2a3d;
  --teal: #1a4d6b;
  --teal-600: #1f5f82;
  --red: #e53935;
  --red-600: #c62828;
  --yellow: #f7c948;
  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 42, 61, .06), 0 1px 1px rgba(15, 42, 61, .04);
  --shadow: 0 10px 30px rgba(15, 42, 61, .08);
  --shadow-lg: 0 24px 60px rgba(15, 42, 61, .14);
  --maxw: 1440px;
  --pad: clamp(24px, 5vw, 48px);
  --h-header: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: "Oswald", "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section__eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 72px); }
#area { white-space: nowrap; }
.section__head p { font-size: 18px; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--red-600); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--h-header);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.site-logo img { height: 52px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.primary-nav a:hover { color: var(--red); }

/* Dropdown */
.primary-nav__item.has-submenu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.primary-nav__item.has-submenu > a::after {
  content: "▾";
  font-size: 11px;
  margin-left: 6px;
  color: var(--muted);
  transition: transform .15s ease, color .15s ease;
  display: inline-block;
}
.primary-nav__item.has-submenu:hover > a::after,
.primary-nav__item.has-submenu:focus-within > a::after { color: var(--red); transform: rotate(180deg); }
.submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1;
}
.submenu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 240px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.primary-nav__item.has-submenu:hover .submenu,
.primary-nav__item.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li { margin: 0; }
.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--ink);
  white-space: nowrap;
}
.submenu a:hover { background: var(--bg-alt); color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: .02em;
}
.nav-toggle {
  display: none; border: 0; background: transparent; padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0;
  transition: transform .2s;
}

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .primary-nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--h-header); left: 0; right: 0;
    background: #fff; padding: 20px var(--pad);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .primary-nav.is-open > a,
  .primary-nav.is-open > .primary-nav__item > a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }

  /* Mobile dropdown */
  .primary-nav__item.has-submenu {
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav__item.has-submenu > a {
    flex: 1;
    border-bottom: 0 !important;
  }
  .primary-nav__item.has-submenu > a::after { display: none; }
  .submenu-toggle { display: inline-block; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 10px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
  }
  .primary-nav__item.has-submenu.is-open .submenu {
    max-height: 320px;
    padding: 4px 0 12px;
  }
  .submenu a {
    padding: 10px 0 10px 16px;
    font-size: 13px;
    border-radius: 0;
  }
  .submenu-toggle[aria-expanded="true"] { transform: rotate(180deg); transition: transform .2s; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,42,61,.78), rgba(26,77,107,.62));
  z-index: 1;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  animation: hero-kenburns 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-kenburns {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.15) translate3d(-2%, -1.5%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-img { animation: none; transform: scale(1.05); }
}
.hero__inner { position: relative; z-index: 2; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  padding: clamp(72px, 10vw, 140px) 0 clamp(80px, 12vw, 160px);
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero__kicker {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}
.hero__lead { font-size: 19px; color: rgba(255,255,255,.88); max-width: 560px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero__trust {
  display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18);
}
.hero__trust > div { font-size: 14px; color: rgba(255,255,255,.8); }
.hero__trust strong { display: block; color: #fff; font-size: 22px; font-family: "Oswald", sans-serif; margin-bottom: 2px; }

.hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 760px;
  width: 100%;
  margin-left: auto;
}
.hero__visual-main {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(255,255,255,.75))
    drop-shadow(0 0 40px rgba(255,255,255,.35))
    drop-shadow(0 28px 55px rgba(0,0,0,.45));
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__trust { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .hero .container, .service-hero .container { padding-left: 28px; padding-right: 28px; }
}

/* -------- Services -------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  display: flex; flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: inherit;
}
.service:hover .service__link { gap: 10px; }
.service__img {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
}
.service__img img { width: 100%; height: 100%; object-fit: cover; }
.service__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service h3 { margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 15px; flex: 1; }
.service__link {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

/* -------- About / Owner -------- */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about__image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about__image--stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 8/5;
}
.about__image--stack img { display: block; }
.about__image--triple {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 4/3;
}
.about__image--triple > img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about__image-primary {
  grid-row: 1 / span 2;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.about__image-primary img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* -------- In Action video -------- */
.in-action__video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  max-width: 1000px;
  margin: 0 auto;
}
.in-action__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -------- Crew photos strip -------- */
.crew-photos { padding-top: 0; }
.crew-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.crew-photos__item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.crew-photos__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 700px) {
  .crew-photos__grid { grid-template-columns: 1fr; }
}

/* -------- Service gallery -------- */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) {
  .service-gallery { grid-template-columns: 1fr; }
}
.about__image-primary::after {
  content: "Nick Cohen — Owner";
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  padding: 16px 20px;
  background: rgba(15,42,61,.92);
  color: #fff;
  border-radius: 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 16px;
  text-align: center;
}
/* -------- Brands band -------- */
.brands-band {
  background: var(--navy);
  padding: 48px 0;
}
.brands-band__label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px;
}
.brands-band__grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  min-width: 140px;
  transition: border-color .2s, background .2s;
}
.brand-card:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}
.brand-card--featured {
  border-color: var(--red);
  background: rgba(200,16,46,.08);
}
.brand-card--featured:hover {
  background: rgba(200,16,46,.15);
}
.brand-card__name {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}
.brand-card__sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-align: center;
}
@media (max-width: 640px) {
  .brands-band__grid { gap: 12px; }
  .brand-card { min-width: 120px; padding: 16px 20px; }
  .brand-card__name { font-size: 18px; }
}

/* -------- York showcase -------- */
.york-showcase__head {
  max-width: 680px;
  margin-bottom: 40px;
}
.york-showcase__head p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}
.york-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}
.york-showcase__feature {
  grid-row: 1 / span 3;
}
.york-showcase__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.york-showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.york-showcase__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.york-showcase__cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .york-showcase__grid { grid-template-columns: 1fr; }
  .york-showcase__feature { grid-row: auto; aspect-ratio: 4/3; overflow: hidden; }
}

.about h2 span { color: var(--red); }
.about__body p + p { margin-top: 1em; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__stat strong {
  font-family: "Oswald", sans-serif;
  display: block;
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.about__stat span { font-size: 14px; color: var(--muted); }

@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }

/* -------- Contact / Service Area -------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: stretch;
}
.contact__info {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
}
.contact__info h2 { color: #fff; }
.contact__info p { color: rgba(255,255,255,.8); }
.contact__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 20px; }
.contact__list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: flex-start; }
.contact__list .icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  color: var(--yellow);
}
.contact__list .label {
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-bottom: 2px;
}
.contact__list a { color: #fff; font-weight: 600; }
.contact__list a:hover { color: var(--yellow); }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: var(--bg-alt);
  position: relative;
}
.contact__map img { width: 100%; height: 100%; object-fit: cover; }
.contact__map a {
  position: absolute; inset: auto 20px 20px 20px;
  background: #fff; color: var(--navy);
  padding: 14px 20px;
  border-radius: 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

/* -------- FAQ -------- */
.faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 760px) { .faq__list { grid-template-columns: 1fr; } }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--red);
  line-height: 1;
  transition: transform .2s;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body { padding: 0 28px 26px; color: var(--body); font-size: 16px; }

/* -------- Service Pages -------- */
.service-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.service-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0;
}
.service-hero__back {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
}
.service-hero__back:hover { color: var(--yellow); }
.service-hero h1 { color: #fff; margin-bottom: 16px; }
.service-hero__tag {
  font-size: 19px;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 28px;
}
.service-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.service-hero__visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-hero__visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .service-hero__inner { grid-template-columns: 1fr; gap: 0; padding: 56px 0 64px; }
  .service-hero__visual { display: none; }
  .service-hero h1 { font-size: 38px; line-height: 1.05; }
  .service-hero__tag { font-size: 17px; }
  .service-hero .hero__bg::after {
    background: linear-gradient(180deg, rgba(15,42,61,.82) 0%, rgba(15,42,61,.72) 60%, rgba(15,42,61,.85) 100%);
  }
}

.service-intro {
  max-width: 820px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
  margin: 0 auto;
}

.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offering {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.offering h3 { margin-bottom: 10px; color: var(--navy); }
.offering p  { color: var(--muted); margin: 0; }
@media (max-width: 900px) { .offerings { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .offerings { grid-template-columns: 1fr; } }

.service-bullets { max-width: 860px; margin: 0 auto; text-align: center; }
.service-bullets h2 { margin-bottom: 28px; }
.service-bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  text-align: left;
}
.service-bullets li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
}
.service-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
}
@media (max-width: 640px) { .service-bullets ul { grid-template-columns: 1fr; } }

.service-cta { text-align: center; }
.service-cta__inner { max-width: 720px; margin: 0 auto; }
.service-cta h2 { margin-bottom: 10px; }
.service-cta p { color: var(--muted); margin-bottom: 28px; font-size: 18px; }
.service-cta__btns { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* -------- CTA Band -------- */
.cta-band {
  background: var(--red);
  color: #fff;
  padding: clamp(64px, 9vw, 110px) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p {
  color: rgba(255,255,255,.92);
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto 32px;
}
.cta-band__btns {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn--white {
  background: #fff;
  color: var(--red);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* -------- Footer -------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer__logo { max-width: 200px; background: #fff; padding: 14px 18px; border-radius: 10px; }
.site-footer__logo img { width: 100%; height: auto; }
.site-footer h4 {
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--yellow); }
.site-footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 14px; flex-wrap: wrap;
}

@media (max-width: 700px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ======================================================
   ANIMATIONS
   ====================================================== */

/* ---- Hero entry sequence ---- */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__kicker {
  animation: hero-fade-up .6s ease both;
  animation-delay: .1s;
}
.hero h1 {
  animation: hero-fade-up .7s ease both;
  animation-delay: .25s;
}
.hero__lead {
  animation: hero-fade-up .7s ease both;
  animation-delay: .4s;
}
.hero__ctas {
  animation: hero-fade-up .6s ease both;
  animation-delay: .55s;
}
.hero__trust {
  animation: hero-fade-in .8s ease both;
  animation-delay: .8s;
}
.hero__visual-main {
  animation: hero-fade-in 1s ease both;
  animation-delay: .3s;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }
.reveal--delay-5 { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Service card lift ---- */
.service {
  transition: transform .25s ease, box-shadow .25s ease;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service__img img {
  transition: transform .4s ease;
}
.service:hover .service__img img {
  transform: scale(1.06);
}

/* ---- York photo zoom ---- */
.york-showcase__feature img,
.york-showcase__thumb img {
  transition: transform .5s ease;
}
.york-showcase__feature:hover img,
.york-showcase__thumb:hover img {
  transform: scale(1.04);
}

/* ---- About image hover ---- */
.about__image-primary img {
  transition: transform .5s ease;
}
.about__image-primary:hover img {
  transform: scale(1.03);
}

/* ---- FAQ smooth open ---- */
.faq-item__body {
  animation: faq-open .3s ease;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Stat count-up shimmer ---- */
@keyframes stat-pop {
  0%   { transform: scale(.85); opacity: 0; }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1);   opacity: 1; }
}
.about__stat.is-visible strong {
  animation: stat-pop .5s ease both;
}
.about__stat:nth-child(1).is-visible strong { animation-delay: 0s; }
.about__stat:nth-child(2).is-visible strong { animation-delay: .12s; }
.about__stat:nth-child(3).is-visible strong { animation-delay: .24s; }

/* ---- Brand card hover ---- */
.brand-card {
  transition: border-color .2s, background .2s, transform .2s;
}
.brand-card:hover {
  transform: translateY(-3px);
}

/* ---- CTA band pulse on primary button ---- */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,.4); }
  50%       { box-shadow: 0 0 0 10px rgba(229,57,53,0); }
}
.cta-band .btn--white {
  animation: cta-pulse 2.4s ease-in-out infinite;
  animation-delay: 1.5s;
}
