/* ==========================================================================
   Visiting Care Services — Homepage Stylesheet
   Brand: Visiting Blue #3B4EA3 · Care Purple #82459F
   Type:  Poppins (display) · Inter (body)
   ========================================================================== */

:root {
  /* Brand colors */
  --blue: #3B4EA3;
  --blue-dark: #28356E;
  --blue-tint: #E7EAF7;
  --purple: #82459F;
  --purple-light: #C79FDA;
  --purple-tint: #F1E7F5;
  --gradient-brand: linear-gradient(135deg, #3B4EA3 0%, #5D4EA0 55%, #82459F 100%);

  /* Neutrals */
  --ink: #1F2430;
  --body: #4A5163;
  --muted: #6B7280;
  --line: #E1E4EA;
  --bg-soft: #F7F8FB;
  --bg-soft-2: #F0F1F5;
  --white: #FFFFFF;

  /* Status */
  --success: #2E7D46;
  --success-bg: #EAF6ED;
  --error: #B23B3B;

  /* Type */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1180px;
  --section-pad: 112px;
  --section-pad-mobile: 64px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 20px 48px -18px rgba(31, 36, 48, 0.16);
  --shadow-card: 0 12px 32px -14px rgba(31, 36, 48, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
p { margin: 0; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-pad) 0; }
@media (max-width: 900px) {
  section { padding: var(--section-pad-mobile) 0; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-tint);
  padding: 8px 16px;
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

/* ---------- Section header ---------- */
.section-header {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 0 56px;
}
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  margin-top: 18px;
}
.section-header h2 em {
  font-style: normal;
  color: var(--purple);
}
.section-header p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(59, 78, 163, 0.55);
}
.btn-primary:visited { color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(40,53,110,0.55); }
.btn-secondary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(130, 69, 159, 0.5);
}
.btn-secondary:visited { color: #fff; }
.btn-secondary:hover { background: #6c3781; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline:visited { color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-brand {
  background: #fff;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline-brand:visited { color: var(--blue); }
.btn-outline-brand:hover { background: var(--blue-tint); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(31,36,48,0.25); }

.topbar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--purple-light); }
.topbar .topbar-tag { font-weight: 600; letter-spacing: 0.4px; opacity: 0.92; }
.topbar-right { display: flex; align-items: center; gap: 22px; }
@media (max-width: 700px) {
  .topbar .topbar-tag { display: none; }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button.nav-top-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  background: none;
  border: none;
}
.nav-links > li > a:hover,
.nav-links > li > button.nav-top-link:hover,
.nav-links > li.is-open > button.nav-top-link { color: var(--blue); background: var(--bg-soft); }
.nav-links svg.chev { width: 15px; height: 15px; transition: transform 0.2s ease; }
.nav-links > li.is-open svg.chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 270px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 50;
}
.nav-links > li.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--body);
}
.dropdown a:hover { background: var(--blue-tint); color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue);
}
.nav-phone svg { width: 18px; height: 18px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 9px;
}
.menu-toggle svg { width: 22px; height: 22px; color: var(--ink); }

@media (max-width: 1050px) {
  .nav-links, .nav-phone-desktop { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand img { height: 46px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 38, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.is-open .mobile-nav-overlay { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  padding: 22px 22px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-head img { height: 42px; }
.mobile-nav-close { background: var(--bg-soft); border: none; border-radius: 10px; padding: 8px; }
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav-links li + li { margin-top: 4px; }
.mobile-nav-links > li > a,
.mobile-nav-links summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 6px;
  border-bottom: 1px solid var(--bg-soft-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}
.mobile-nav-links summary::-webkit-details-marker { display: none; }
.mobile-nav-links details[open] summary svg { transform: rotate(180deg); }
.mobile-nav-links summary svg { width: 16px; height: 16px; transition: transform .2s ease; }
.mobile-sublist { padding: 6px 0 10px 10px; display: flex; flex-direction: column; }
.mobile-sublist a { padding: 9px 6px; font-size: 15px; color: var(--body); }
.mobile-sublist a:hover { color: var(--blue); }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.mobile-nav-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; color: var(--blue);
  border: 1.5px solid var(--blue-tint); border-radius: 12px; padding: 13px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
  background: var(--gradient-brand);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(255,255,255,0.16), transparent 45%),
    radial-gradient(circle at 6% 92%, rgba(255,255,255,0.12), transparent 42%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: stretch;
}
.hero-copy .eyebrow { background: rgba(255,255,255,0.14); color: #fff; }
.hero-copy .eyebrow::before { background: #fff; }
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: 0.1px;
}
@media (min-width: 981px) {
  .hero h1 { font-size: 38px; }
}
.hero-copy p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-trust-item { min-width: 0; }
.hero-trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.hero-trust-item span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
  white-space: normal;
}

.hero-media { position: relative; height: 100%; padding-top: 34px; box-sizing: border-box; }
.hero-media-frame {
  position: relative;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 70px -24px rgba(15, 18, 40, 0.55);
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge .badge-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--success-bg); color: var(--success);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge .badge-icon svg { width: 22px; height: 22px; }
.hero-badge strong { font-family: var(--font-display); font-size: 17px; display: block; }
.hero-badge span { font-size: 12.5px; color: var(--muted); }
.hero-chip {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: -18px;
  background: rgba(255,255,255,0.95);
  color: var(--blue);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; height: auto; padding-top: 0; }
  .hero-media-frame { height: auto; aspect-ratio: 4/5; }
  .hero-badge { left: 0; right: 0; margin: 0 auto; bottom: -20px; width: fit-content; }
  .hero-chip { right: 10px; }
}
@media (max-width: 560px) {
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .hero-trust-item strong,
  .hero-trust-item span { white-space: normal; }
}

/* ==========================================================================
   MARQUEE STAT STRIP
   ========================================================================== */
.stat-strip { background: var(--blue-dark); padding: 0; }
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-strip .stat { padding: 34px 12px; border-right: 1px solid rgba(255,255,255,0.12); color: #fff; }
.stat-strip .stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.stat span { font-size: 13px; color: rgba(255,255,255,0.75); }
@media (max-width: 700px) {
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .stat:nth-child(2) { border-right: none; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.about-media-tag {
  position: absolute;
  bottom: 22px;
  left: -22px;
  background: var(--purple);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 20px 40px -16px rgba(130,69,159,0.5);
}
.about-media-tag strong { display: block; font-size: 22px; }
.about-media-tag span { font-size: 12.5px; opacity: 0.85; font-weight: 500; }
.about-copy p { margin-top: 18px; font-size: 16.5px; }
.about-list { margin-top: 28px; display: grid; gap: 16px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 15.5px;
}
.about-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.about-list .check svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { max-width: 420px; margin: 0 auto; }
  .about-media-tag { left: 0; }
}

/* ==========================================================================
   SERVICES — Spotlight Glow Cards
   ========================================================================== */
.services-section { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.glow-card {
  --x: 50%;
  --y: 50%;
  position: relative;
  border-radius: var(--radius-md);
  padding: 2px;
  background: var(--line);
  overflow: hidden;
  isolation: isolate;
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--x) var(--y), rgba(130,69,159,0.55), rgba(59,78,163,0.35) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.glow-card:hover::before, .glow-card:focus-within::before { opacity: 1; }
.glow-card-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: calc(var(--radius-md) - 2px);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.glow-card:hover .glow-card-inner {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.glow-card-media { position: relative; z-index: 1; aspect-ratio: 16/10; overflow: hidden; }
.glow-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.glow-card:hover .glow-card-media img { transform: scale(1.06); }
.glow-card-body { position: relative; z-index: 2; padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; transform: translateZ(0); }
.glow-card-icon {
  position: relative;
  z-index: 3;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-top: -46px;
  border: 3px solid #fff;
}
.glow-card-icon svg { width: 22px; height: 22px; }
.glow-card-body h3 { font-size: 19px; font-weight: 600; }
.glow-card-body p { font-size: 14.5px; color: var(--muted); flex: 1; }
.glow-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  margin-top: 4px;
}
.glow-card-link svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.glow-card:hover .glow-card-link svg { transform: translateX(4px); }

.services-more {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-list { display: grid; gap: 22px; margin-top: 8px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 17px; font-weight: 600; }
.feature-item p { margin-top: 6px; font-size: 14.5px; color: var(--muted); }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-media-stat {
  position: absolute; top: 26px; right: -20px;
  background: #fff; border-radius: var(--radius-sm);
  padding: 18px 22px; box-shadow: var(--shadow-soft);
  text-align: center;
}
.why-media-stat strong { display: block; font-family: var(--font-display); font-size: 28px; color: var(--purple); font-weight: 700; }
.why-media-stat span { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-media { order: -1; max-width: 420px; margin: 0 auto; }
  .why-media-stat { right: 0; }
}

/* ==========================================================================
   PAYMENT OPTIONS
   ========================================================================== */
.payment-section { background: var(--blue-tint); }
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.payment-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.payment-list li {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: var(--radius-sm);
  padding: 16px 18px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink);
  box-shadow: var(--shadow-card);
}
.payment-list .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--success-bg); color: var(--success);
  display: flex; align-items: center; justify-content: center;
}
.payment-list .check svg { width: 13px; height: 13px; }
.payment-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.payment-card h3 { font-size: 22px; font-weight: 700; }
.payment-card p { margin-top: 12px; font-size: 15px; color: var(--muted); }
.payment-card .btn { margin-top: 24px; }
@media (max-width: 900px) {
  .payment-grid { grid-template-columns: 1fr; }
  .payment-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.areas-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.county-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.county-chips a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.2s ease;
}
.county-chips a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.areas-towns { margin-top: 22px; font-size: 14.5px; color: var(--muted); }
.areas-towns strong { color: var(--ink); }
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; gap: 40px; }
  .areas-media { order: -1; max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 16px;
}
.gallery-grid a {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31,36,48,0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-grid a:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
}

/* ==========================================================================
   TESTIMONIALS — Marquee
   ========================================================================== */
.testimonial-section {
  background: #E7EAF7;
  overflow: hidden;
}
.marquee-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; animation-duration: 50s; margin-top: 24px; }
.marquee-mask:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.t-card {
  flex: 0 0 auto;
  width: 380px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 8px 24px -18px rgba(31,36,48,0.12);
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.t-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 30px 55px -20px rgba(59,78,163,0.28);
  border-color: var(--blue-tint);
}
.t-stars { display: flex; gap: 3px; color: var(--purple); margin-bottom: 14px; }
.t-stars svg { width: 16px; height: 16px; }
.t-card p.quote { font-size: 15px; color: var(--body); }
.t-footer { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.t-footer strong { font-family: var(--font-display); font-size: 14.5px; color: var(--ink); display: block; }
.t-footer span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 640px) {
  .t-card { width: 300px; padding: 24px; }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-item.is-open { border-color: var(--blue-tint); box-shadow: var(--shadow-card); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}
.faq-question .plus::before { width: 12px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 12px; }
.faq-item.is-open .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner { padding: 0 26px 24px; font-size: 15px; color: var(--muted); }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card-media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.06); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 12.5px; color: var(--muted); font-family: var(--font-display); font-weight: 500; }
.blog-meta span { display: inline-flex; align-items: center; }
.blog-card h3 { font-size: 17.5px; font-weight: 600; margin-top: 12px; line-height: 1.35; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card-excerpt { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.blog-card-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--purple); }
.blog-card-link svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255,255,255,0.18), transparent 45%);
}
.cta-banner-copy { position: relative; max-width: 620px; }
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); }
.cta-banner p { margin-top: 12px; color: rgba(255,255,255,0.85); font-size: 16px; }
.cta-banner-actions { position: relative; display: flex; gap: 16px; flex-wrap: wrap; }
.cta-section { padding: 0 0 var(--section-pad); }
@media (max-width: 900px) {
  .cta-banner { padding: 44px 28px; }
  .cta-section { padding: 0 0 var(--section-pad-mobile); }
}

/* Career strip variant */
.career-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.career-banner-media { height: 100%; min-height: 280px; }
.career-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.career-banner-copy { padding: 56px; color: #fff; }
.career-banner-copy .eyebrow { background: rgba(255,255,255,0.12); color: var(--purple-light); }
.career-banner-copy .eyebrow::before { background: var(--purple-light); }
.career-banner-copy h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-top: 16px; }
.career-banner-copy p { color: rgba(255,255,255,0.78); margin-top: 14px; }
.career-banner-copy .btn { margin-top: 26px; }
@media (max-width: 900px) {
  .career-banner { grid-template-columns: 1fr; }
  .career-banner-media { min-height: 220px; }
  .career-banner-copy { padding: 36px 28px; }
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-section { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-info-card {
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-info-card h3 { color: #fff; font-size: 24px; }
.contact-info-card > p { margin-top: 12px; color: rgba(255,255,255,0.82); font-size: 15px; }
.contact-info-list { margin-top: 30px; display: grid; gap: 20px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list .ci-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-list .ci-icon svg { width: 19px; height: 19px; }
.contact-info-list strong { display: block; font-family: var(--font-display); font-size: 14.5px; }
.contact-info-list span, .contact-info-list a { font-size: 14px; color: rgba(255,255,255,0.85); }
.contact-badges { margin-top: 34px; display: flex; gap: 10px; flex-wrap: wrap; }
.contact-badges span {
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-family: var(--font-display);
  font-weight: 600;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-top: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-tint);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.contact-form-card .btn { margin-top: 22px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card, .contact-info-card { padding: 30px 24px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-top: var(--section-pad); }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 50px; background: #fff; border-radius: 10px; padding: 8px 12px; }
.footer-brand p { margin-top: 18px; font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--purple); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 {
  color: #fff; font-size: 14px; letter-spacing: 0.6px; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--purple-light); }
.footer-newsletter { display: flex; margin-top: 6px; gap: 8px; }
.footer-newsletter input {
  flex: 1; min-width: 0; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06); padding: 12px 14px; color: #fff; font-size: 13.5px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter button {
  background: var(--purple); color: #fff; border: none; border-radius: 10px; padding: 0 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-newsletter svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; font-size: 13px; gap: 16px; flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 1050px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: none;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -18px rgba(31,36,48,0.3);
}
.sticky-mobile-cta a { flex: 1; }
@media (max-width: 780px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
}

/* ==========================================================================
   BREADCRUMBS (component, ready for inner pages)
   ========================================================================== */
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs svg { width: 13px; height: 13px; }

/* ==========================================================================
   MISC
   ========================================================================== */
.divider { height: 1px; background: var(--line); }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   INNER-PAGE COMPONENTS (Page Hero, Article Body, Link Cards)
   Additive only — homepage is untouched and does not use these classes.
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--gradient-brand);
  padding: 44px 0 64px;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(255,255,255,0.14), transparent 45%),
    radial-gradient(circle at 6% 92%, rgba(255,255,255,0.10), transparent 42%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.breadcrumbs.on-dark { color: rgba(255,255,255,0.7); }
.breadcrumbs.on-dark a { color: rgba(255,255,255,0.7); }
.breadcrumbs.on-dark a:hover { color: #fff; }
.breadcrumbs.on-dark svg { color: rgba(255,255,255,0.5); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  margin-top: 16px;
  max-width: 840px;
  letter-spacing: 0.1px;
}
.page-hero p.lead {
  margin-top: 16px;
  color: rgba(255,255,255,0.88);
  font-size: 16.5px;
  max-width: 700px;
}
.page-hero .hero-actions { margin-top: 26px; }

.article-section { padding: 80px 0; }
@media (max-width: 900px) { .article-section { padding: 56px 0; } }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
@media (max-width: 980px) { .article-layout { grid-template-columns: 1fr; } }

.article-body h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin-top: 48px;
}
.article-body h2:first-child { margin-top: 0; }
.article-figure { margin: 0 0 32px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-card); }
.article-figure img { width: 100%; height: auto; max-height: 420px; object-fit: cover; display: block; }
.article-body p { margin-top: 16px; font-size: 16px; line-height: 1.75; color: var(--body); }
.article-body ul.check-list { margin-top: 18px; display: grid; gap: 12px; }
.article-body ul.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; line-height: 1.6; color: var(--body);
}
.article-body ul.check-list .dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple); margin-top: 8px;
}
.article-body ol.num-list {
  margin-top: 18px; padding-left: 0; list-style: none;
  counter-reset: numlist; display: grid; gap: 14px;
}
.article-body ol.num-list li {
  position: relative; padding-left: 42px;
  font-size: 15.5px; line-height: 1.65; color: var(--body);
  counter-increment: numlist;
}
.article-body ol.num-list li::before {
  content: counter(numlist);
  position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue-tint); color: var(--blue);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
/* Post hero meta row (topic · author · date) on blog articles */
.post-meta-hero {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  margin-bottom: 14px; font-family: var(--font-display); font-weight: 500;
  font-size: 13px; color: rgba(255,255,255,0.82);
}
.post-meta-hero span { display: inline-flex; align-items: center; }

.article-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
}
.sidebar-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); }
.sidebar-card ul { margin-top: 14px; display: grid; gap: 10px; }
.sidebar-card ul a {
  font-size: 14.5px; font-weight: 600; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
}
.sidebar-card ul a svg { width: 14px; height: 14px; flex-shrink: 0; }
.sidebar-card ul a:hover { color: var(--blue-dark); }
.sidebar-card.contact-mini { background: var(--gradient-brand); color: #fff; border: none; }
.sidebar-card.contact-mini h3 { color: #fff; }
.sidebar-card.contact-mini p { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.85); }
.sidebar-card.contact-mini .btn { margin-top: 16px; width: 100%; }

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.link-card:hover {
  border-color: var(--blue-tint);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.link-card strong {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink);
}
.link-card strong svg { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }
.link-card span { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }

.article-section .section-header { margin-bottom: 32px; }

/* ==========================================================================
   SHOP — product grid + product detail (additive; scoped to .shop-* / .product-*)
   ========================================================================== */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.shop-toolbar .count { font-size: 14.5px; color: var(--muted); }
.shop-note {
  font-size: 13px; color: var(--muted); background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px;
  margin-bottom: 28px;
}
.shop-note a { color: var(--blue); font-weight: 600; }

.shop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1050px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .shop-grid { grid-template-columns: 1fr; } }

.product-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--blue-tint); }
.product-card-media {
  display: block; aspect-ratio: 1/1; background: #fff;
  padding: 16px; overflow: hidden;
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; border-top: 1px solid var(--line); }
.product-tag {
  align-self: flex-start; font-family: var(--font-display); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--purple); background: var(--purple-tint); padding: 4px 10px; border-radius: 999px;
}
.product-card-title {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  line-height: 1.4; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-title a:hover { color: var(--blue); }
.product-card-actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.product-card-actions .btn { width: 100%; padding: 11px 16px; font-size: 13.5px; }
.btn-amazon { background: #FF9900; color: #1F2430; border-color: #FF9900; }
.btn-amazon:hover { background: #f0910a; color: #1F2430; }
.btn-amazon svg { width: 16px; height: 16px; }

/* Product detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; gap: 32px; } }
.product-gallery {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: center; justify-content: center;
}
.product-gallery img { width: 100%; max-height: 460px; object-fit: contain; }
.product-summary .product-tag { margin-bottom: 14px; }
.product-summary h1 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; line-height: 1.25; }
.product-highlights { margin-top: 20px; }
.product-buybox {
  margin-top: 24px; padding: 22px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.product-buybox .btn { width: 100%; padding: 15px; font-size: 15.5px; }
.product-buybox .affiliate-note { margin-top: 12px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.product-secondary { margin-top: 12px; display: flex; gap: 10px; }
.product-secondary .btn { flex: 1; padding: 12px; font-size: 13.5px; }
.product-description { margin-top: 64px; max-width: 820px; }
.product-description h2 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; margin-bottom: 4px; }

/* ---------- Contact form: honeypot + status message ---------- */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; margin: 4px 0 14px; padding: 12px 16px; border-radius: 10px; font-size: 14px; line-height: 1.5; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: var(--success-bg); color: var(--success); border: 1px solid #cfe9d4; }
.form-status.is-error { background: #FBEDED; color: var(--error); border: 1px solid #f0cfcf; }
