/* =========================================================
   The Doggo Scoop — styles-anchor-palette.css
   ╔══════════════════════════════════════════════╗
   ║  PALETTE — anchor & rose                     ║
   ║  --cream    #F8FBFF  (Pure White)             ║
   ║  --blush    #1672DD  (Muted Rose)             ║
   ║  --blush-l  #DCE8FF  (Blush)                 ║
   ║  --slate    #DCE8FF  (Off-White Blue)         ║
   ║  --slate-d  #05155E  (Dark Anchor Steel Blue) ║
   ║  --slate-l  #7A96B8  (kept for muted text)   ║
   ║  --sage     #6CBF4B  (unchanged)              ║
   ║  --ink      #05155E  (Dark Anchor Steel Blue) ║
   ╚══════════════════════════════════════════════╝
   ========================================================= */

@import './tokens.css';

*{ box-sizing: border-box; }
*{ box-sizing: border-box; }

html{
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body{
  min-height: 100%;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.45;

  overflow-x: hidden;
  overflow-y: clip; /* prevents body from becoming a second vertical scroller */
}

/* Safari fallback */
@supports not (overflow: clip){
  body{
    overflow-y: hidden;
  }
}

/* only when the mobile drawer is open */
body.nav-drawer-open{
  overflow: hidden;
}
a{ color: inherit; text-decoration: none; }
.container{ width: min(100%, var(--max)); margin: 0 auto; padding: 0 20px; }

/* =========================
   BUTTONS
   ========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(var(--cream-rgb), .96);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(var(--ink-rgb), .06);
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease, background .08s ease, border-color .08s ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(var(--ink-rgb), .09);
}

.btn:active{
  transform: translateY(0px);
  box-shadow: 0 8px 18px rgba(var(--ink-rgb), .06);
}

.btn.primary{
  background: var(--blush);
  color: var(--ink);
  border-color: rgba(var(--ink-rgb), .12);
}

.btn.primary:hover{
  background: var(--blush-l);
  box-shadow: 0 14px 26px rgba(var(--blush-rgb), .34);
}

/* =========================
   GENERIC CARD + SECTIONS
   ========================= */
.card{
  background: rgba(var(--cream-rgb), .90);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

section{ padding: 34px 0; }

.sectionHead{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.sectionHead h2{
  margin: 0;
  font-size: 24px;
  letter-spacing: -.02em;
  color: var(--blush);
}

.sectionHead p{
  margin: 0;
  color: rgba(var(--ink-rgb), .68);
  font-weight: 650;
  font-size: 14px;
  max-width: 60ch;
}

.grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tile{ padding: 16px; }

.tile h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -.015em;
}

.tile p{
  margin: 0;
  color: rgba(var(--ink-rgb), .64);
  font-size: 14px;
}

/* =========================
   FORMS
   ========================= */
.quoteCard{ padding: 18px; }

.quoteCard h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.quoteCard p{
  margin: 0 0 12px;
  color: rgba(var(--ink-rgb), .66);
  font-size: 14px;
}

form{ display: grid; gap: 10px; }

.row2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label{
  font-size: 12px;
  font-weight: 800;
  color: rgba(var(--ink-rgb), .75);
  display: block;
  margin-bottom: 6px;
}

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(var(--cream-rgb), .98);
  color: var(--ink);
  font-size: 14px;
  outline: none;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(var(--blush-rgb), .70);
  box-shadow: 0 0 0 4px rgba(var(--blush-rgb), .18);
}

textarea{
  min-height: 88px;
  resize: vertical;
}

.small{
  font-size: 12px;
  color: rgba(var(--ink-rgb), .64);
  margin: 0;
}

/* =========================================================
   HERO
   ========================================================= */


.heroOrange {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:radial-gradient(circle at 18% 42%, rgba(220, 232, 255, .25), transparent 34%),
    linear-gradient(135deg, #05155E 0%, #1672DD 48%, #05155E 100%);
}

.heroOrange::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: url("/images/hero-pattern.png");
  background-repeat: repeat;
  background-size: 520px 520px;
  background-position: center top;

  opacity: 0.04;
}

.heroOrange::after {
  content: none;
}

.heroOrangeInner {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1.00fr 0.85fr;
  gap: 34px;
  align-items: end;
  min-height: 420px;
}


.heroDog{
  display: block;
  width: min(1200px, 100%);
  max-width: none;
  height: auto;
  margin-bottom: -42px;
}



.heroCopy{
  color: var(--slate-d);
  padding: 6px 0;
  padding-left: 80px;
  max-width: 540px;
  align-self: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.heroHeadline{
  position: relative;
  margin: 16px 0 12px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 950;
  z-index: 1;
  color: white;
}

.heroCtas{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  position: relative;
  z-index: 3;
}



.heroCopy > *{
  position: relative;
  z-index: 1;
}

.heroZipCta{
  position: relative;
  width: min(640px, 100%);
  height: 60px;
  margin-top: 6px;
}

.heroZipInput{
  width: 100%;
  height: 60px;
  border-radius: 999px;
  padding: 0 22px;
  padding-right: 210px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: rgba(var(--cream-rgb), .96);
  border: 2px solid rgba(var(--ink-rgb), .12);
  box-shadow: 0 10px 22px rgba(var(--ink-rgb), .10);
  color: var(--ink);
}

.heroZipInput::placeholder{
  color: rgba(var(--ink-rgb), .55);
  font-weight: 800;
}

.heroZipInput:focus{
  outline: none;
  border-color: rgba(var(--blush-rgb), .65);
  box-shadow:
    0 0 0 4px rgba(var(--blush-rgb), .18),
    0 12px 26px rgba(var(--ink-rgb), .12);
}

.heroZipBtn{
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  height: 62px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.01em;
  text-decoration: none;
  background: var(--slate-d);
  color: var(--cream);
  border: 0;
  box-shadow: 0 16px 30px rgba(var(--ink-rgb), .32);
  z-index: 2;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.heroZipBtn:hover{
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 18px 36px rgba(var(--ink-rgb), .38);
  filter: brightness(.98);
}

.heroZipBtn:active{
  transform: translateY(-50%);
}

@media (max-width: 560px){

  .heroOrange{
    padding-top: 34px;
  }

  .heroCopy{
    padding-left: 18px;
    padding-right: 18px;
  }

  .heroHeadline{
    font-size: clamp(38px, 13vw, 54px);
    max-width: 9.5ch;
    margin-bottom: 18px;
  }

  .heroZipCta{
    height: auto;
    min-height: 122px;
    display: grid;
    grid-template-rows: 56px 56px;
    gap: 10px;
    align-items: start;
  }

  .heroZipInput{
    height: 56px;
    padding-right: 22px;
    font-size: 18px;
    text-align: center;
  }

  .heroZipBtn{
    position: static;
    transform: none !important;
    width: 100%;
    height: 56px;
    font-size: 18px;
  }

  .heroDog{
    width: min(430px, 118%);
    margin-bottom: -4px;
  }
}

@media (max-width: 920px){

  .heroOrange{
    padding: 42px 0 0;
    min-height: auto;
  }

  .heroOrange::before{
    background-size: 430px 430px;
    background-position: center top;
    opacity: 0.055;
  }

  .heroOrangeInner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    min-height: auto;
  }

  .heroCopy{
    order: 1;
    width: 100%;
    max-width: 620px;
    padding: 0 20px;
    margin: 0;
    text-align: center;
  }

  .heroHeadline{
    margin: 0 auto 18px;
    font-size: clamp(42px, 12vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    max-width: 10ch;
  }

  .heroCtas{
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }

  .heroZipCta{
    width: min(440px, 100%);
  }

  .heroDogWrap{
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .heroDog{
    width: min(520px, 112%);
    max-width: none;
    margin-bottom: -8px;
    transform: none;
  }
}

/* ==============================
   CUSTOMER PROMISE — STACKED ICON STYLE
   ============================== */
.promiseSection{
  padding: 96px 0 100px;
  background: var(--cream);
}

.promiseWrap{
  text-align: center;
  max-width: 1360px;
  margin: 0 auto;
}

.promiseKicker{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 18px;
  color: rgba(var(--ink-rgb), .45);
}

.promiseTitle{
  margin: 0 0 48px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--blush);
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.06;
}

/* =========================
   GRID (CENTERED AS A GROUP)
   ========================= */
.promiseList{
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  column-gap: 48px;
  row-gap: 72px;
}

/* =========================
   CARD BASE
   ========================= */
.promiseItem{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 36px 45px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease;
}

/* =========================
   HOVER EFFECT
   ========================= */
.promiseItem:hover{
  background: #F8FBFF;
  border-color: rgba(var(--ink-rgb), 0.08);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), 0.18);
}

/* =========================
   ICON
   ========================= */
.promiseIcon{
  display: block;
  width: 100%;
  margin: 0 0 18px;
  text-align: left;
}

.promiseIconImg{
  width: 70px;
  height: auto;
  display: block;
  margin: 0;
  opacity: .95;
  filter: drop-shadow(0 14px 26px rgba(var(--ink-rgb), .14));
}

.scheduleIcon{
  width: 82px; /* adjust to taste */
}

/* =========================
   TEXT
   ========================= */
.promiseCardTitle{
  margin: 0 0 16px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.06;
  max-width: 12ch;
}

.promiseCardText{
  margin: 0;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 25ch;
}

/* =========================
   CONTAINER
   ========================= */
.promiseSection .container{
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: clamp(56px, 8vw, 120px);
  padding-right: clamp(56px, 8vw, 120px);
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1100px){
  .promiseSection{
    padding: 84px 0 90px;
  }

  .promiseTitle{
    margin-bottom: 40px;
  }

  .promiseList{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 56px;
  }

  .promiseItem{
    padding: 28px 22px;
  }

  .promiseCardTitle{
    font-size: 26px;
    max-width: none;
  }

  .promiseCardText{
    font-size: 16px;
    line-height: 1.65;
    max-width: none;
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 720px){
  .promiseSection{
    padding: 72px 0 48px; /* tighter */
  }

  .promiseSection .container{
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .promiseWrap{
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .promiseKicker,
  .promiseTitle{
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
    text-align: left;
  }

  .promiseTitle{
    margin-bottom: 28px;
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.08;
  }

  .promiseList{
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 14px;
    justify-content: stretch;
  }

  .promiseItem{
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 18px 20px;
    border-radius: 0;
    align-items: flex-start;
    text-align: left;
  }

  .promiseIcon{
    width: 100%;
    margin: 0 0 12px;
    text-align: left;
  }

  .promiseIconImg{
    width: 64px;
    margin: 0;
  }

  .promiseCardTitle{
    width: 100%;
    max-width: none;
    font-size: 25px;
    line-height: 1.15;
    margin: 0 0 14px;
    text-align: left;
  }

  .promiseCardText{
    width: 100%;
    max-width: none;
    font-size: 16px;
    line-height: 1.65;
    text-align: left;
  }
}




/* ==============================
   HOW IT WORKS — SPLIT SCROLL LAYOUT
   ============================== */

.howSection {
  padding: 110px 0;
  background: var(--cream);
}

.howSection .sectionHead {
  text-align: center;
  margin-bottom: 46px;
}

.howSection .sectionHead h2 {
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--blush);
  line-height: 1.06;
}

.howSection .sectionHead p {
  font-size: 17px;
  color: rgba(var(--ink-rgb), .45);
  font-weight: 600;
}

.howSection .sectionHead > div {
  max-width: 760px;
  margin: 0 auto;
}

.howSection .sectionHead p {
  max-width: 680px;
  margin: 0 auto;
}

.how-it-works-container {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

/* LEFT NAV */
.left-nav {
  position: sticky;
  top: 120px;
  align-self: start;
}

.left-nav nav {
  padding-right: 34px;
  border-right: 1px solid rgba(61, 79, 92, 0.14);
}

.left-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.left-nav li + li {
  margin-top: 8px;
}

.left-nav .toggle-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.06rem;
  line-height: 1.35;
  padding: 12px 0;
  transition: color 0.24s ease, transform 0.24s ease;
}

.left-nav .toggle-link:hover {
  transform: translateX(4px);
}

.left-nav .toggle-link span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1;
  background: transparent;
  color: var(--ink);
  border: 1px solid transparent;
  transition:
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.left-nav .toggle-link.active {
  color: var(--blush);
}

.left-nav .toggle-link.active span {
  background: var(--blush-l);
  color: var(--blush);
  border-color: var(--blush);
}

/* RIGHT CONTENT */
.right-content {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 14px;
  scroll-behavior: smooth;
  margin-top: 30px;
  margin-bottom: 60px;

  /* hide scrollbar while keeping scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.right-content::-webkit-scrollbar {
  display: none;
}

/* each section becomes its own hover card */
/* .right-content section {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
   gap: 36px;
  align-items: start;
  padding: 76px 26px;
  margin: 30px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  scroll-margin-top: 46px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
} */

/* space between each card in the scroll area */
.right-content section + section {
  margin-top: 28px;
}

/* hover/focus state */
.right-content section:hover,
.right-content section:focus-within {
  background: #F8FBFF;
  border-color: rgba(var(--ink-rgb), 0.08);
  box-shadow: 10px 10px 10px rgba(var(--ink-rgb), 0.18);
  transform: translateY(-1px);
}

/* .right-content section img {
  width: 110px;
  height: auto;
  object-fit: contain;
  display: block;
   margin-top: -20px;
  padding: 12px;
 
  
} */

.right-content section {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 76px 26px;
  margin: 30px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  scroll-margin-top: 46px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.right-content section img {
  width: 110px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 12px;
  align-self: center;
  justify-self: center;
}

.section-content h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  line-height: 1.12;
  color: var(--ink);
}

.section-content p {
  margin: 0 0 14px;
  max-width: 760px;
}

.section-content p:last-child {
  margin-bottom: 0;
}

/* remove old divider line look */
.right-content section:not(:last-child) {
  border-bottom: 0;
}

.section-content h3 .step-badge {
  display: none;
}

/* TABLET */
@media (max-width: 1024px) {
  .how-it-works-container {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 34px;
  }

  .left-nav nav {
    padding-right: 24px;
  }

  .left-nav .toggle-link {
    font-size: 0.98rem;
  }

  .right-content {
    max-height: 620px;
  }

  .right-content section {
    padding: 24px 22px;
  }

  .section-content h3 {
    font-size: 1.7rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .howSection {
    padding: 84px 0;
  }

  .howSection .sectionHead {
    margin-bottom: 30px;
    text-align: left;
  }

  .how-it-works-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Hide the left nav entirely on mobile */
  .left-nav {
    display: none;
  }

  /* Right content becomes a plain vertical list */
  .right-content {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  /* Each card becomes a flat stacked entry */
  /* .right-content section {
    display: flex;
    flex-direction: column;
    padding: 0 0 28px;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(61, 79, 92, 0.13);
  } */

  .right-content section:last-child {
    border-bottom: none;
  }

  .right-content section + section {
    margin-top: 0;
    padding-top: 10px;
  }

  .right-content section:hover,
  .right-content section:focus-within {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: none;
    border-bottom: 1px solid rgba(61, 79, 92, 0.13);
  }

  .right-content section:last-child:hover {
    border-bottom: none;
  }

  /* .section-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blush);
    padding-bottom: 12px;
margin-bottom: 12px;
border-bottom: 1px solid rgba(var(--blush-rgb), .28);
  } */

  .section-content h3 .step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--blush);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
  }

  /* .right-content section img {
    order: 1;
    width: 116px; */
    /* margin: 14px 0 10px; */
  /* } */

  /* .section-content {
    order: 2;
  } */

  /* .section-content p {
    font-size: 0.97rem;
    line-height: 1.6;
  } */
@media (max-width: 768px) {
  .right-content section {
    display: flex;
    flex-direction: column;
    padding: 0 0 28px;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(61, 79, 92, 0.13);
    align-items: stretch;
  }

  /* Dissolve section-content so its children
     participate directly in the section's flex flow */
  .section-content {
    display: contents;
  }

  /* 1 — Title */
  .section-content h3 {
    order: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blush);
    padding-bottom: 5px;
    margin: 0 0 5px;
    border-bottom: 1px solid rgba(var(--blush-rgb), .28);
  }

  /* 2 — Image */
  .right-content section img {
    order: 2;
    width: 65px;
    height: auto;        /* ← was 72px */
    margin: -20px 0 -10px;
    align-self: flex-start;
    padding: 0;
    object-fit: contain;
}

  /* 3 — Body text */
  .section-content p {
    order: 3;
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0;
  }
}


}





/* =========================================================
   SERVICES
   ========================================================= */
#services{
  padding: 72px 0;
  background: var(--cream);
 
}

#services .container{
  width: min(100%, 1500px);
}

#services .servicesBand{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px 22px 26px;
  background: var(--slate);
  border: 1px solid rgba(var(--ink-rgb), .10);
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), .09);
}

#services .servicesBand::before{
  content: "";
  position: absolute;
  inset: -120px;
  background-image: url("/images/whitePaw.png");
  background-repeat: repeat;
  background-size: 420px 420px;
  transform: rotate(-6deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
}

#services .servicesBand::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 240px at 50% 40%,
    rgba(var(--cream-rgb), .14),
    rgba(var(--cream-rgb), 0) 60%
  );
  pointer-events: none;
  z-index: 0;
}

#services .servicesBand > *{
  position: relative;
  z-index: 1;
}

#services .sectionHead{ margin-bottom: 26px; }

#services .sectionHead h2{
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 950;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

#services .sectionHead p{
  font-size: 16px;
  color: var(--ink);
  font-weight: 650;
  margin: 0;
  max-width: 72ch;
}

#services .plansWrap{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#services .plansTop{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.25fr;
  gap: 16px;
  align-items: stretch;
}

#services .plansBottom{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  align-items: stretch;
}

#services .planCard{
  position: relative;
  border-radius: 18px;
  border: 2px solid rgba(var(--ink-rgb), .18);
  background: rgba(var(--cream-rgb), .88);
  box-shadow: 0 14px 28px rgba(var(--ink-rgb), .07);
  padding: 18px 18px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

#services .planCard:not(.planCard--featured):hover,
#services .planCard:not(.planCard--featured):focus-within{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), .11);
  border-color: rgba(var(--blush-rgb), .45);
  background: rgba(var(--cream-rgb), .92);
}

#services .planTopRow{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  min-height: 34px;
}

#services .planTopIcon{
  width: 30px;
  height: 30px;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 6px 10px rgba(var(--ink-rgb), .12));
  color: var(--ink);
}

#services .planTopIconImg{
  width: 50px;
  height: 50px;
  margin-bottom: -15px;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: .95;
}

#services .planTopIconImg--large{
  width: 70px;
  height: 70px;
  margin-bottom: -20px;
}

#services .planTopIconImg--pad{
  margin-bottom: 0px;
}

#services .planTitle{
  margin: 6px 0 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-align: center;
  font-size: 18px;
  color: rgba(var(--ink-rgb), .92);
}

#services .planBody{
  margin-top: 6px;
  background: rgba(var(--cream-rgb), .68);
  border-radius: 14px;
  border: 1px solid rgba(var(--ink-rgb), .10);
  padding: 14px 14px 12px;
  flex: 1 1 auto;
  transition: transform .16s ease, opacity .16s ease;
}

#services .planBullets{
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.55;
  font-size: 14px;
}

#services .planBullets li{ margin: 8px 0; }

#services .planCard--featured{
  background: rgba(var(--cream-rgb), .30);
  border-color: rgba(var(--ink-rgb), .20);
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), .13);
  backdrop-filter: blur(6px);
  transform: none;
}

#services .planCard--featured::before{
  content: "";
  position: absolute;
  inset: -40px;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(var(--cream-rgb), .18) 2px, rgba(var(--cream-rgb), 0) 2.5px),
    radial-gradient(circle at 60px 50px, rgba(var(--cream-rgb), .14) 2px, rgba(var(--cream-rgb), 0) 2.5px);
  background-size: 90px 90px;
  opacity: .55;
  pointer-events: none;
  transform: rotate(-6deg);
}

#services .planCard--featured .planTitle{
  color: var(--ink);
  margin-top: 2px;
}

#services .planCard--featured .planBody{
  background: transparent;
  border: 0;
  padding: 6px 2px 0;
}

#services .planCard--featured .planBullets{
  color: rgba(var(--ink-rgb), .86);
  padding-left: 18px;
}

.subNote {
  font-size: 0.85em;
  opacity: 0.8;
  font-style: italic; /* keeps the <em> look */
}

#services .planCta{
  margin: 10px auto 6px;
  display: flex;
  justify-content: center;
  width: 100%;
}

#services .planCard:not(.planCard--featured) .planCta{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0 auto;
  transform: translateY(-6px);
  transition: max-height .20s ease, opacity .16s ease, transform .20s ease, margin .20s ease;
}

#services .planCard:not(.planCard--featured):hover .planCta,
#services .planCard:not(.planCard--featured):focus-within .planCta{
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  margin: 10px auto 6px;
}

#services .planCard:not(.planCard--featured):hover .planBody,
#services .planCard:not(.planCard--featured):focus-within .planBody{
  transform: translateY(2px);
}

#services .planBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(900px, 100%);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: var(--slate-d);
  color: var(--cream);
  box-shadow: 0 12px 24px rgba(var(--ink-rgb), .28);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  text-decoration: none;
}

#services .planBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(var(--ink-rgb), .32);
  filter: brightness(.98);
}

#services .planBtn--ghost{
  background: var(--blush);
  color: rgba(var(--ink-rgb), .92);
  border: 2px solid var(--blush-l);
  box-shadow: 0 10px 22px rgba(var(--blush-rgb), .18);
}

#services .planBtn--ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(var(--blush-rgb), .24);
  filter: none;
}

@media (max-width: 980px){
  #services .servicesBand{ padding: 22px 16px 18px; border-radius: 24px; }
  #services .plansTop{ grid-template-columns: 1fr; }
  #services .plansBottom{ grid-template-columns: 1fr; max-width: none; }
  #services .planCard{ min-height: 0; }
  #services .planBtn{ width: 100%; }

  #services .planCard:not(.planCard--featured) .planCta{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0 auto;
    transform: translateY(-6px);
    transition: max-height .20s ease, opacity .16s ease, transform .20s ease, margin .20s ease;
  }

  #services .planCard.isActive:not(.planCard--featured) .planCta{
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
    margin: 10px auto 6px;
  }

  #services .planCard.isActive:not(.planCard--featured) .planBody{
    transform: translateY(2px);
  }
}
/* =========================================================
WHY US
========================================================= */

#why .container{
  width: min(100%, 1500px);
  padding-left: 24px;
  padding-right: 24px;
}

.whyBand{
  padding: 120px 0 118px;
  background: var(--cream);
}

.whyHead{
  max-width: 920px;
  margin: 0 auto 72px;
  text-align: center;
}

.whyTitle{
  margin: 14px 0 18px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 950;
  color: var(--blush);
}

.whySub{
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(var(--ink-rgb), .45);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
}

.whyList{
  width: 100%;
  max-width: none;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.whyItem{
  background: #F8FBFF;
  border: 1.5px solid rgba(5, 21, 94, 0.15);
  border-radius: 28px;
  padding: 40px 36px 36px;
  min-height: 390px;
  height: 100%;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  box-shadow:
    0 1px 0 rgba(248,251,255,.8) inset,
    0 10px 24px rgba(var(--ink-rgb), .05);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.whyItem:hover{
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(248,251,255,.9) inset,
    0 18px 38px rgba(var(--ink-rgb), .08);
}

.whyItem::before{
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 3px;
  background: var(--blush);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.whyItem:hover::before{
  opacity: 1;
  transform: scaleX(1);
}

/* =========================
   ICON — MUCH LARGER
   ========================= */

/* .whyMark{
  width: 118px;
  height: 118px;
  margin: 0 0 30px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  align-self: flex-start;
  background: rgba(240, 200, 220, 0.25);
  border: 1px solid rgba(var(--ink-rgb), .07);
  box-shadow: 0 10px 24px rgba(var(--ink-rgb), .05);
  flex: 0 0 auto;
} */

.whyIconSvg{
  width: 97px;
  height: 97px;
  display: block;
  stroke: rgb(52, 50, 50);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.whyIconPng{
  width: 97px;
  height: 97px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.whyItem h3{
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 900;
  color: var(--ink);
}

.whyItem p{
  margin: 0;
  max-width: none;
  color: rgba(var(--ink-rgb), .76);
  font-weight: 600;
  line-height: 1.7;
  font-size: 16px;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1100px){
  .whyBand{
    padding: 92px 0 92px;
  }

  .whyHead{
    margin-bottom: 54px;
  }

  .whyList{
    gap: 22px;
  }

  .whyItem{
    padding: 32px 28px 30px;
    min-height: 330px;
  }

  .whyMark{
    width: 120px;
    height: 120px;
    border-radius: 28px;
    margin-bottom: 24px;
  }

  .whyIconSvg,
  .whyIconPng{
    width: 88px;
    height: 88px;
  }

  .whyItem h3{
    font-size: 22px;
  }

  .whyItem p{
    font-size: 15.5px;
  }
}

@media (max-width: 980px){
  .whyBand{
    padding: 78px 0 82px;
  }

  .whyHead{
    text-align: left;
    margin: 0 0 44px;
    max-width: 760px;
  }

  .whySub{
    margin: 0;
    max-width: 62ch;
  }

  .whyList{
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
  }

  .whyItem{
    min-height: 310px;
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 560px){
  .whyBand{
    padding: 68px 0 72px;
  }

  .whyHead{
    margin-bottom: 34px;
  }

  .whyTitle{
    font-size: clamp(30px, 8vw, 38px);
  }

  .whySub{
    font-size: 15px;
    line-height: 1.65;
  }

  .whyList{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 22px;
  }

  .whyItem{
    aspect-ratio: auto;
    min-height: unset;
    padding: 30px 24px 28px;
    border-radius: 24px;
  }

  .whyMark{
    width: 132px;
    height: 132px;
    border-radius: 30px;
    margin: 0 auto 22px;
    align-self: center;
  }

  .whyIconSvg{
    width: 96px;
    height: 96px;
  }

  .whyIconPng{
    width: 96px;
    height: 96px;
  }

  .whyItem h3{
    font-size: 22px;
    margin-bottom: 12px;
  }

  .whyItem p{
    font-size: 15.5px;
    line-height: 1.68;
  }
}

/* =========================================================
   SHARED FLOW — SERVICE AREA + REVIEWS
   ========================================================= */
.sectionsFlow--areasReviews{
  position: relative;
  /* Rotated pseudo-elements were escaping and causing horizontal scroll */
  overflow: hidden;
  background: var(--cream);
  z-index: 1;
  isolation: isolate; /* ← ADD THIS */
}

.sectionsFlow--areasReviews::before,
.sectionsFlow--areasReviews::after{
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: url("/images/navyBonepattern.png");
  background-repeat: repeat;
  z-index: 0;
}

/* large, sparse bones */
.sectionsFlow--areasReviews::before{
  top: 0px; /* was -30*/
  right: 0;
  bottom: 0px; /* was 10*/
  left: 0;
  background-size: 400px 400px;
  background-position: 90px 10px;
  opacity: 0.07;
  transform: rotate(17deg);
}

.sectionsFlow--areasReviews::after{
  top: 0px; /* was -10*/
  right: 0;
  bottom: 0px; /* was 5*/
  left: 0;
  background-size: 600px 600px;
  background-position: 341px 60px;
  opacity: 0.05;
  transform: rotate(1deg);
}

.sectionsFlow--areasReviews .areasBand,
.sectionsFlow--areasReviews .reviews{
  position: relative;
  background: transparent;
}

.sectionsFlow--areasReviews .areasBand > .container,
.sectionsFlow--areasReviews .reviews > .container,
.sectionsFlow--areasReviews .reviewsStripeBand{
  position: relative;
  z-index: 1;
}

/* =========================================================
   SERVICE AREA
   ========================================================= */
.areasBand{
  position: relative;
  padding: 78px 0 96px;
  margin-bottom: -28px;
  background:
    radial-gradient(900px 340px at 50% -140px,
      rgba(var(--cream-rgb), .10),
      rgba(var(--cream-rgb), 0)
    ),
    transparent;
  overflow: visible;
  z-index: 1;
}

.areasHead{
  max-width: 820px;
  margin-bottom: 28px;
}

.areasTitle{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 950;
  color: var(--blush);
}

.areasSub{
  margin: 0 0 18px;
  max-width: 72ch;
  color: rgba(var(--ink-rgb), .45);
  font-weight: 650;
  font-size: 15px;
}

.areasCtas{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.areasGrid{
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.areasCard{
  border-radius: 22px;
  background: rgba(var(--cream-rgb), .92);
  border: 1px solid var(--slate-d);
  box-shadow: 0 10px 24px rgba(var(--ink-rgb), .06);
  padding: 20px;
}

.areasSide{
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.areasTags{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areasTag{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--ink-rgb), .06);
  border: 1px solid rgba(var(--ink-rgb), .08);
  color: rgba(var(--ink-rgb), .90);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .01em;
  white-space: nowrap;
}

.areasTag--soft{
  background: rgba(var(--blush-rgb), .14);
  border-color: rgba(var(--blush-rgb), .22);
}

.areasRules{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.areasRules li{
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(var(--ink-rgb), .86);
  font-weight: 650;
  font-size: 14px;
}

.ruleDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(var(--blush-rgb), .95);
  box-shadow: 0 0 0 4px rgba(var(--blush-rgb), .16);
  margin-top: 6px;
}

.areaServiceButton{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--blush);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(var(--ink-rgb), .06);
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease, background .08s ease, border-color .08s ease;
}

.areasMap .areasSideHead p{
  margin: 6px 0 0;
  color: rgba(var(--ink-rgb), .78);
  font-weight: 650;
  font-size: 14px;
}

.areasMapFrame{
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--cream);
  background: transparent;
  box-shadow: 0 14px 26px rgba(var(--ink-rgb), .07);
  aspect-ratio: 16 / 9;
}

.areasMapFrame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.areasMapFooter{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ================================
   Reviews / Testimonials
================================ */
.brandStamp{
  display: flex;
  justify-content: center;
  margin: 0 0 18px;
  padding-top: 12px;
}

.brandStamp img{
  width: 150px;
  height: auto;
  opacity: .92;
  filter: drop-shadow(0 10px 18px rgba(var(--ink-rgb), .09));
}

.reviews{
  position: relative;
  overflow: visible;
  padding: 92px 20px 80px;
  background: transparent;
  z-index: 1;
  
}

.reviews > .container{
  position: relative;
  z-index: 1;
}

.reviewsHead{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.reviewsHead h2{
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--blush);
}

.reviewsHead p{
  color: var(--slate-l);
  font-size: 17px;
}

.reviewsGrid{
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.reviewCard{
  background: rgba(var(--cream-rgb), .94);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(var(--ink-rgb), .12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--slate-d);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 1;
}

.reviewCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), .14);
}

.stars{
  color: var(--blush);
  font-size: 18px;
  letter-spacing: 2px;
}

.quote{
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}

.reviewer{
  font-size: 14px;
  color: var(--slate-l);
  font-weight: 600;
}

@media (max-width: 920px){
  .sectionsFlow--areasReviews::before{
    top: 24px;
    right: 24px;
    bottom: 24px;
    left: 24px;
    background-position: 52px 18px;
  }

  .sectionsFlow--areasReviews::after{
    top: 40px;
    right: 40px;
    bottom: 40px;
    left: 40px;
    background-position: 132px 94px;
  }

  .areasBand{
    padding: 60px 0 78px;
    margin-bottom: -18px;
  }

  .areasGrid{ grid-template-columns: 1fr; }
  .areasMapFrame{ aspect-ratio: 16 / 12; }

  .reviews{
    padding: 72px 20px 64px;
  }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{
  padding: 80px 20px;
  background: var(--cream);
}

.faqHead{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.faqHead h2{
  margin: 0;
  font-size: 32px;
  color: var(--blush);
}

.faqHead p{
  margin: 0;
  color: rgba(var(--ink-rgb), .45);
  font-size: 16px;
}

/* =========================
   FAQ ACTIVE STATE (OPEN)
   ========================= */
.faqItem[open] summary{
  color: var(--blush);
}

/* Optional: make it feel a bit more "clicked" */
.faqItem[open] summary span:first-child{
  color: var(--blush);
}

/* Optional polish: smooth transition */
.faqItem summary{
  transition: color .2s ease;
}





.faqGrid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

@media (max-width: 860px){
  .faqHead{ flex-direction: column; align-items: flex-start; }
  .faqGrid{ grid-template-columns: 1fr; }
}

.faqItem{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 25px rgba(var(--ink-rgb), .06);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.faqItem:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(var(--ink-rgb), .09);
  border-color: rgba(var(--blush-rgb), .35);
}

.faqItem summary{
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
}

.faqItem summary::-webkit-details-marker{ display: none; }

.faqItem summary::before{
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: rgba(var(--blush-rgb), .55);
}

.faqIcon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(var(--cream-rgb), .90);
  position: relative;
  flex: 0 0 auto;
}

.faqIcon::before,
.faqIcon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(var(--blush-rgb), .95);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.faqIcon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.faqBody{
  padding: 0 18px 18px;
  border-top: 1px solid rgba(var(--ink-rgb), .06);
}

.faqBody p{
  margin: 14px 0 0;
  color: var(--slate-l);
  font-size: 15px;
  line-height: 1.6;
}

.faqItem[open] .faqIcon{
  background: rgba(var(--blush-rgb), .10);
  border-color: rgba(var(--blush-rgb), .35);
}

.faqItem[open] .faqIcon::after{ display: none; }

/* =========================================================
   RESPONSIVE GLOBAL
   ========================================================= */
@media (max-width: 920px){
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .row2{ grid-template-columns: 1fr; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(10px); /* reduce from 14px */
  transition: opacity .45s ease, transform .45s ease;
  /* Remove will-change entirely, or scope it tightly */
}

.reveal.isVisible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto; /* release the layer after animation */
}

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

.reveal{ transition-delay: var(--delay, 0ms); }

/* =========================================================
   HERO CTA BUTTONS
   ========================================================= */
.heroBtnXL{
  padding: 18px 28px;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.01em;
  min-height: 60px;
}

.heroBtnPrimary{
  background: #F8FBFF;
  color: var(--ink);
  box-shadow: 0 5px 5px rgba(var(--ink-rgb), .28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.heroBtnPrimary:hover{
  transform: translateY(-3px);
  filter: brightness(0.97);
}

.btnArrow{
  font-size: 20px;
  margin-left: 6px;
}

/* =========================================================
   CTA BANNER (homepage #contact) + TRUCK REVEAL
   ========================================================= */

#contact.cta-banner {
  padding: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blush) 40%);
  min-height: 330px;
  position: relative;
  overflow: hidden;
}

.cta-banner-copy {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  max-width: 46%;
}

.cta-banner-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.cta-banner-heading {
  margin: 0 0 28px;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-banner-fine {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.cta-banner-fine a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

/* Truck — centered vertically so it doesn't clip top/bottom */
.cta-truck {
  position: absolute;
  top: 50%;
  right: 80px;
  width: clamp(420px, 60%, 720px);
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: drop-shadow(0 28px 18px rgba(0, 0, 0, 0.45));
  /* Parked off-screen left until the section scrolls into view */
  transform: translateY(-50%) translateX(calc(-100vw - 100%));
}

.reveal.isVisible .cta-truck {
  animation: ctaTruckRollIn 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s both;
}

@keyframes ctaTruckRollIn {
  from { transform: translateY(-50%) translateX(calc(-100vw - 100%)); }
  to   { transform: translateY(-50%) translateX(0); }
}

/* ── Mobile: truck centered above the strip, text + buttons below ── */
@media (max-width: 768px) {
  #contact.cta-banner {
    overflow: visible; /* let truck hang above the strip */
    min-height: auto;
    padding-top: 160px; /* room for bottom half of truck inside the strip */
  }

  .cta-banner-copy {
    max-width: 100%;
    padding: 12px 0 40px;
    text-align: center;
  }

  .cta-banner-eyebrow {
    text-align: center;
  }

  .cta-banner-heading {
    font-size: clamp(28px, 7vw, 40px);
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .cta-banner-fine {
    text-align: center;
  }

  /* Truck: centered horizontally, top half overflows above the strip */
  .cta-truck {
    top: 0;
    left: 50%;
    right: auto;
    width: min(88vw, 340px);
    filter: drop-shadow(0 20px 16px rgba(0, 0, 0, 0.4));
    /* start above the viewport, drop in on scroll */
    transform: translate(-50%, calc(-48% - 100vh));
  }

  .reveal.isVisible .cta-truck {
    animation: ctaTruckDropIn 1s cubic-bezier(0.34, 1.1, 0.64, 1) 0.1s both;
  }
}

@keyframes ctaTruckDropIn {
  from { transform: translate(-50%, calc(-48% - 100vh)); }
  to   { transform: translate(-50%, -48%); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-truck { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .cta-truck { transform: translate(-50%, -48%) !important; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 769px) {
  .cta-truck { transform: translateY(-50%) !important; }
}