/* ============================================================
   Vegas Tinder Photography — Apple-inspired design system
   ============================================================ */

:root {
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --bg: #ffffff;
  --gray: #f5f5f7;
  --dark: #0a0a0b;
  --blue: #0071e3;
  --blue-dark: #0077ed;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.14);
  --maxw: 1120px;
  --font: -apple-system, "SF Pro Display", BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 980px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 8px 24px rgba(0, 113, 227, 0.35); }
.btn--ghost { background: transparent; color: var(--blue); border-color: transparent; }
.btn--ghost:hover { background: rgba(0, 113, 227, 0.08); }
.btn--pill { background: var(--ink); color: #fff; padding: 9px 18px; font-size: 15px; }
.btn--pill:hover { background: #000; }
.btn--lg { padding: 15px 30px; font-size: 18px; }
.btn--block { width: 100%; }

/* Opt-in / booking CTAs — 50% bigger than their previous size, unified across the site */
.btn--ghost.btn--block, .btn--primary.btn--block, .about__body > .btn--ghost { padding: 18px 33px; font-size: 24px; }
.btn--cta { padding: 23px 45px; font-size: 27px; }
.nav__cta.btn--pill { padding: 9px 20px; font-size: 14px; }
.nav__mobile .btn--pill { padding: 14px 27px; font-size: 23px; }
.nav__socials { display: flex; align-items: center; gap: 14px; }
.nav__socials a { display: flex; color: var(--ink-soft); transition: color 0.2s; }
.nav__socials a:hover { color: var(--ink); }
.nav__socials svg { width: 20px; height: 20px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__brand { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-size: 14px; color: var(--ink-soft); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 8px 22px 20px; }
.nav__mobile a { padding: 12px 0; font-size: 18px; border-bottom: 1px solid var(--line); }
.nav__socials--mobile { margin-top: 18px; justify-content: center; gap: 22px; }
.nav__socials--mobile svg { width: 24px; height: 24px; }
.nav__mobile .btn { margin-top: 12px; }

/* ---------- Layout / sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 110px 22px; }
.section--gray { max-width: none; background: var(--gray); }
.section--gray > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section--dark { max-width: none; background: var(--dark); color: #f5f5f7; }
.section--dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__title { font-size: clamp(30px, 4.5vw, 48px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.08; margin: 0; text-transform: uppercase; }
.section__lead { font-size: clamp(17px, 2vw, 21px); color: var(--muted); margin: 18px 0 0; }
.section__cta { text-align: center; margin-top: 56px; }
.eyebrow { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--blue); text-transform: uppercase; margin: 0; }
.eyebrow--light { color: #2997ff; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 22px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.hero__eyebrow { font-size: 15px; font-weight: 600; color: var(--blue); letter-spacing: 0.01em; margin: 0 0 18px; }
.hero__title { font-size: clamp(38px, 6.2vw, 68px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.08; margin: 0; text-transform: uppercase; }
.hero__sub { font-size: clamp(18px, 2.2vw, 22px); color: var(--ink-soft); margin: 22px 0 32px; max-width: 30ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { font-size: 14px; color: var(--muted); margin: 24px 0 0; }
.hero__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; object-fit: cover; }

/* ---------- Trust ---------- */
/* ---- Press marquee ("As Featured In") ---- */
.press { background: var(--dark); padding: 32px 0 36px; text-align: center; overflow: hidden; }
.press__label { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: #fff; letter-spacing: -0.01em; text-transform: uppercase; margin: 0 0 28px; }
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 0; width: max-content; animation: marquee-scroll 90s linear infinite; }
.marquee__track img { height: 78px; width: auto; flex: 0 0 auto; margin-right: 96px; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.trust { max-width: var(--maxw); margin: 0 auto; padding: 64px 22px; text-align: center; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num { font-size: clamp(30px, 4vw, 44px); font-weight: 600; letter-spacing: -0.02em; }
.stat__label { font-size: 14px; color: var(--muted); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.ba {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  user-select: none;
  background: #ddd;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent; cursor: ew-resize; z-index: 4;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; cursor: ew-resize; }
.ba__range::-moz-range-thumb { width: 44px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px;
  background: #fff; z-index: 3; pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.ba__handle::after {
  content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: var(--shadow);
}
.ba__tags { position: absolute; inset: auto 0 0 0; display: flex; justify-content: space-between; padding: 14px; z-index: 3; pointer-events: none; }
.ba__tags span { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.55); padding: 5px 10px; border-radius: 980px; backdrop-filter: blur(6px); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
.about__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.about__body h2 { margin-bottom: 20px; }
.about__body p { font-size: 18px; color: var(--ink-soft); margin: 0 0 18px; }
.about__body .btn { margin-top: 8px; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 15px; background: rgba(0, 113, 227, 0.12); color: var(--blue); }
.feature__icon svg { width: 30px; height: 30px; }
.feature h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 16px 0 8px; text-transform: uppercase; }
.feature p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { background: var(--gray); border-radius: var(--radius); padding: 28px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.card p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.quote { margin: 0; background: #141416; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 22px; }
.quote blockquote { margin: 0; font-size: 17px; line-height: 1.5; color: #f5f5f7; }

/* Per-client photo slideshow inside each testimonial */
.ss { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 5; background: #000; }
.ss__track { display: flex; height: 100%; transition: transform 0.45s var(--ease); }
.ss__track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }
.ss__track img[src*="3479615778"] { object-position: center top; }
.ss__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(0,0,0,0.45); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s, background 0.2s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.ss:hover .ss__arrow { opacity: 1; }
.ss__arrow:hover { background: rgba(0,0,0,0.72); }
.ss__prev { left: 10px; }
.ss__next { right: 10px; }
.ss__dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; gap: 6px; justify-content: center; }
.ss__dots button { width: 7px; height: 7px; padding: 0; border-radius: 50%; border: 0; background: rgba(255,255,255,0.45); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.ss__dots button.is-active { background: #fff; transform: scale(1.25); }
.ss__counter { font-size: 12px; font-weight: 600; color: #fff; background: rgba(0,0,0,0.5); padding: 4px 10px; border-radius: 980px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.about__media .ss { box-shadow: var(--shadow); }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #6a5cff); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; flex: 0 0 auto; }
.quote figcaption strong { display: block; font-size: 15px; }
.quote figcaption small { display: block; font-size: 13px; color: #8e8e93; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; max-width: 880px; margin: 0 auto; }
.plan { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; display: flex; flex-direction: column; }
.plan--featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow); }
.plan__badge { position: absolute; top: -13px; left: 34px; background: var(--blue); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.03em; padding: 5px 12px; border-radius: 980px; }
.plan__name { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.plan__desc { font-size: 15px; color: var(--muted); margin: 0 0 22px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.plan__list li { position: relative; padding-left: 28px; font-size: 16px; color: var(--ink-soft); }
.plan__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 700; }
.pricing__note { text-align: center; font-size: 14px; color: var(--muted); margin: 32px auto 0; max-width: 600px; }
.plan .btn--block { font-size: 17px; padding: 15px 20px; white-space: normal; text-align: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 24px 0; font-size: 20px; font-weight: 500; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 26px; font-weight: 300; color: var(--muted); transition: transform 0.3s var(--ease); flex: 0 0 auto; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 24px; font-size: 17px; color: var(--muted); line-height: 1.6; }
.faq__a a { color: var(--blue); }

/* ---------- Booking ---------- */
.book { max-width: var(--maxw); }
.book__head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.book__single { margin: 0; background: transparent; border-radius: var(--radius); padding: 0; }
.book__fineprint { font-size: 13px; color: var(--muted); text-align: center; margin: 16px 0 0; }
.tf-embed { width: 100%; height: 760px; border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }

/* ---------- Services 3x3 before/after grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.svc { margin: 0; }
.svc .ba { aspect-ratio: 4 / 5; }
.svc__title { text-align: center; font-size: 15px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin: 16px 0 0; color: var(--ink); }

/* ---------- Gallery (uniform grid) ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.g__item { display: block; border-radius: 10px; overflow: hidden; background: var(--gray); box-shadow: var(--shadow); cursor: zoom-in; aspect-ratio: 3 / 4; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.g__item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); z-index: 2; position: relative; }
.g__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; animation: lbfade 0.2s var(--ease); }
.lightbox[hidden] { display: none; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 24px 90px rgba(0,0,0,0.6); }
.lightbox__close { position: absolute; top: 18px; right: 24px; background: none; border: 0; color: #fff; font-size: 42px; line-height: 1; cursor: pointer; opacity: 0.85; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 0; color: #fff; font-size: 34px; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev { left: 22px; }
.lightbox__next { right: 22px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #a1a1a6; padding: 70px 22px 40px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__name { font-size: 18px; font-weight: 600; color: #f5f5f7; margin: 0 0 10px; }
.footer__tag { font-size: 14px; margin: 0 0 16px; max-width: 36ch; }
.footer__email { font-size: 15px; color: #2997ff; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a, .footer__social a { font-size: 14px; transition: color 0.2s; }
.footer__nav a:hover, .footer__social a:hover { color: #f5f5f7; }
.footer__copy { max-width: var(--maxw); margin: 24px auto 0; font-size: 12px; color: #6e6e73; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none; text-align: center; padding: 24px; border-radius: 980px;
  background: var(--blue); color: #fff; font-size: 26px; font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,113,227,0.4);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta, .nav__socials:not(.nav__socials--mobile) { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__mobile { display: flex; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 50px; gap: 36px; text-align: center; }
  .hero__sub { max-width: none; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 11; max-height: 420px; }

  .about { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .features, .quotes { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .svc-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pricing { grid-template-columns: minmax(0, 1fr); }
  .footer__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .ss__arrow { opacity: 1; background: rgba(0,0,0,0.5); }

  .sticky-cta { display: block; }
}

@media (max-width: 600px) {
  .section { padding: 70px 20px; }
  .stats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px 16px; }
  .ba-grid { grid-template-columns: minmax(0, 1fr); }
  .features, .quotes { grid-template-columns: minmax(0, 1fr); }
  .svc-grid { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .footer__inner { grid-template-columns: minmax(0, 1fr); gap: 30px; }

  /* Large CTA button variants use nowrap + big font-size, which is fine on
     desktop but overflows narrow phone screens; let them wrap and shrink. */
  .btn { max-width: 100%; white-space: normal; text-align: center; }
  .btn--ghost.btn--block, .btn--primary.btn--block, .about__body > .btn--ghost { padding: 16px 24px; font-size: 19px; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .nav__toggle { width: 44px; height: 44px; padding: 11px; }
  .sticky-cta { font-size: 18px; padding: 16px; white-space: normal; bottom: 88px; }
  .btn--cta { font-size: 19px; padding: 16px 28px; }

  /* LiveChat's widget script hardcodes a 400px-wide fixed panel that
     overflows narrow viewports and drags the whole page into horizontal
     scroll; force it to respect the actual screen width. */
  #chat-widget-container { width: min(400px, calc(100vw - 20px)) !important; right: 10px !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .feature:hover, .card:hover { transform: none; }
  .marquee__track { animation: none; }
}

/* ---------- Blog index ---------- */
.blogHero { padding-bottom: 0; }
.blogGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.blogCard { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.blogCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blogCard__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--gray); }
.blogCard__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.blogCard__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blogCard__meta { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin: 0; }
.blogCard__title { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; margin: 0; }
.blogCard__excerpt { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; flex: 1; }
.blogCard__link { font-size: 14px; font-weight: 600; color: var(--blue); margin-top: 6px; }

/* ---------- Blog post ---------- */
.blogPost { max-width: 760px; }
.blogPost__back { display: inline-block; font-size: 14px; font-weight: 500; color: var(--blue); margin-bottom: 24px; }
.blogPost__title { font-size: clamp(30px, 4.5vw, 46px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 12px 0 10px; text-transform: none; }
.blogPost__meta { font-size: 14px; color: var(--muted); margin: 0 0 32px; }
.blogPost__cover { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 44px; }
.blogPost__cover img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 15%; }
.blogPost__body { font-size: 18px; line-height: 1.7; color: var(--ink-soft); }
.blogPost__body h2 { font-size: 28px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin: 48px 0 18px; text-transform: none; }
.blogPost__body h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin: 34px 0 14px; }
.blogPost__body p { margin: 0 0 22px; }
.blogPost__body ul, .blogPost__body ol { margin: 0 0 22px; padding-left: 22px; }
.blogPost__body li { margin-bottom: 10px; }
.blogPost__body strong { color: var(--ink); font-weight: 600; }
.blogPost__body a { color: var(--blue); }
.blogPost__body blockquote { margin: 32px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--blue); font-size: 20px; font-style: italic; color: var(--ink); }
.blogPost__body figure { margin: 36px 0; }
.blogPost__body figure img { width: 100%; border-radius: var(--radius-sm); box-shadow: var(--shadow); aspect-ratio: 3 / 2; object-fit: cover; object-position: center 15%; }
.blogPost__body figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 10px; }
.blogPost__cta { margin-top: 60px; padding: 44px; background: var(--gray); border-radius: var(--radius); text-align: center; }
.blogPost__cta .section__title { font-size: 28px; margin: 0 0 10px; }
.blogPost__cta .section__lead { font-size: 17px; margin: 0 0 24px; }

@media (max-width: 900px) {
  .blogGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .blogGrid { grid-template-columns: minmax(0, 1fr); }
  .blogPost__cta { padding: 30px 24px; }
  .blogPost__body { font-size: 17px; }
}
