/* BlueBear Home Comfort — site styles */
:root{
  --bear-blue: #1F4E79;
  --bear-blue-deep: #173a5a;
  --sky: #6BB7D6;
  --sky-soft: #a9d6e8;
  --ice: #D9F0F7;
  --warm-white: #F7F6F3;
  --navy: #1E2A32;
  --ink: #1E2A32;
  --muted: #5a6973;
  --border: #e3e6ea;
  --border-soft: #eef1f4;
  --shadow-sm: 0 1px 2px rgba(30,42,50,.06), 0 2px 8px rgba(30,42,50,.04);
  --shadow-md: 0 8px 24px rgba(31,78,121,.10), 0 2px 6px rgba(31,78,121,.06);
  --shadow-lg: 0 24px 60px rgba(31,78,121,.18), 0 4px 12px rgba(31,78,121,.08);
  --radius: 14px;
  --radius-lg: 22px;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,h5{
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bear-blue);
  margin: 0 0 .4em 0;
  text-wrap: balance;
}
h1{ font-size: clamp(40px, 6.4vw, 76px); line-height: 1.02; letter-spacing: -0.035em; }
h2{ font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -0.025em; }
h3{ font-size: clamp(20px, 1.6vw, 24px); line-height: 1.2; }
p{ margin: 0 0 1em 0; color: #2a3640; }
p.lead{ font-size: 19px; color: #354048; max-width: 60ch; }
a{ color: var(--bear-blue); text-decoration: none; }
a:hover{ color: var(--bear-blue-deep); }
img{ display:block; max-width: 100%; }

.container{ max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow{ max-width: 920px; margin: 0 auto; padding: 0 28px; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,246,243,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.header.scrolled{ border-bottom-color: var(--border); background: rgba(247,246,243,.95); }
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo{ display:flex; align-items:center; gap: 12px; }
.logo img{ height: 42px; width: auto; }
.nav{ display:flex; gap: 6px; align-items:center; }
.nav a{
  color: var(--ink);
  font-weight: 500;
  font-size: 15.5px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.nav a:hover{ background: rgba(31,78,121,.07); color: var(--bear-blue); }
.nav-cta{ display: flex; align-items:center; gap: 14px; }
.phone-link{
  display:flex; align-items:center; gap: 8px;
  font-weight: 600; color: var(--bear-blue); font-size: 15px;
}
.phone-link svg{ width: 16px; height: 16px; }

/* Buttons */
.btn{
  display: inline-flex; align-items: center; justify-content:center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s, color .15s, border-color .15s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--bear-blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(31,78,121,.25), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn-primary:hover{ background: var(--bear-blue-deep); color: #fff; }
.btn-secondary{
  background: #fff;
  color: var(--bear-blue);
  border-color: var(--border);
}
.btn-secondary:hover{ border-color: var(--bear-blue); }
.btn-ghost{
  background: transparent;
  color: var(--bear-blue);
}
.btn-ghost:hover{ background: rgba(31,78,121,.06); }
.btn-sm{ padding: 10px 16px; font-size: 14.5px; }
.btn-lg{ padding: 18px 28px; font-size: 17px; }
.btn-arrow svg{ width: 16px; height: 16px; transition: transform .15s; }
.btn-arrow:hover svg{ transform: translateX(3px); }

/* Eyebrow */
.eyebrow{
  display:inline-flex; align-items:center; gap: 8px;
  background: var(--ice);
  color: var(--bear-blue);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(107,183,214,.4);
}
.eyebrow .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bear-blue);
}

/* Sections */
section{ padding: 96px 0; position: relative; }
section.tight{ padding: 72px 0; }

/* Hero */
.hero{
  position: relative;
  min-height: min(85vh, 720px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-bleed background photo with ken burns zoom */
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom{
  0%{ transform: scale(1); }
  100%{ transform: scale(1.06); }
}

/* Gradient overlay for text readability */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 25%,
    rgba(25,40,55,.25) 45%,
    rgba(25,40,55,.7) 70%,
    rgba(25,40,55,.82) 100%
  );
}

/* Content layer */
.hero-inner{
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0 60px;
}

.hero-content{
  max-width: 620px;
  margin-left: auto;
}

/* Text colors over dark photo background */
.hero h1{
  color: #fff;
  margin-top: 18px;
}
.hero h1 .accent{
  color: #fff;
}
.hero h1 .accent em::after{
  background: var(--sky);
  opacity: .45;
}
.hero .lead{
  color: rgba(255,255,255,.88);
  font-size: 19px;
  margin-top: 14px;
}
.hero .eyebrow{
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.hero .eyebrow .dot{
  background: var(--sky);
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Honest ribbon under hero */
.honest-ribbon{
  background: #fff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.honest-ribbon .row{
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.honest-ribbon .pill{
  display:inline-flex; align-items:center; gap: 10px;
  background: var(--ice);
  color: var(--bear-blue);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(107,183,214,.4);
  flex-shrink: 0;
}
.honest-ribbon .pill svg{ width: 16px; height: 16px; }
.honest-ribbon .copy{
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}
.honest-ribbon .copy strong{ color: var(--bear-blue); font-weight: 700; }
.honest-ribbon .trusts{
  display: flex; align-items: center; gap: 18px;
  color: var(--muted);
  font-size: 13.5px;
}
.honest-ribbon .trusts .t{ display:flex; align-items:center; gap: 6px; }
.honest-ribbon .trusts svg{ width: 14px; height: 14px; color: var(--bear-blue); }

/* Marquee */
.marquee{
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #fff;
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track{
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.marquee-track span{ display:inline-flex; align-items:center; gap: 14px; }
.marquee-track .sep{ color: var(--sky); }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Section header */
.section-head{
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow{ margin-bottom: 18px; }
.section-head p{ color: var(--muted); font-size: 18px; }

/* Problem */
.problem{ background: #fff; }
.problem-layout{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.problem-photo{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-md);
  background: var(--warm-white);
}
.problem-photo > img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.problem-photo .pp-tag{
  position: absolute;
  top: 18px; left: 18px;
  background: #fff;
  color: var(--bear-blue);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
}
.problem-photo .pp-tag small{
  display: block; font-weight: 500; color: var(--muted);
  font-size: 11px; text-transform: uppercase; letter-spacing: .05em; margin-top: 1px;
}
.problem-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.problem-card{
  padding: 22px 20px 20px;
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.problem-card .icon{
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--ice);
  color: var(--bear-blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 12px;
}
.problem-card .icon svg{ width: 20px; height: 20px; }
.problem-card h3{ font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.problem-card p{ font-size: 14px; color: var(--muted); margin: 0; }

/* Service */
.service{
  background: var(--bear-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service::before{
  content:'';
  position:absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(107,183,214,.25), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(217,240,247,.10), transparent 60%);
  pointer-events: none;
}
.service::after{
  content:'';
  position: absolute; inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, var(--bear-blue) 35%, rgba(31,78,121,.85) 55%, rgba(31,78,121,.40) 75%, transparent 92%),
    url('assets/photo-indoor.png') no-repeat 65% center / cover;
  pointer-events: none;
}
.service .container{ position: relative; z-index: 2; }
.service .eyebrow{ background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }
.service .eyebrow .dot{ background: var(--sky); }
.service h2{ color: #fff; }
.service .section-head p{ color: rgba(255,255,255,.78); }
.service .section-head{ margin-bottom: 28px; }
.service{ padding: 60px 0; }
.service-content{
  max-width: 600px;
}
.included-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  list-style: none; padding: 0; margin: 0;
}
.included-list li{
  display:flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.92);
  font-size: 15.5px;
  line-height: 1.4;
}
.included-list .check{
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--bear-blue);
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}
.service-image{
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  background: var(--ice);
}
.service-image > img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.service-image .grad{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,30,50,.55));
  pointer-events: none;
}
.service-image .tag{
  position: absolute;
  left: 18px; bottom: 18px;
  background: #fff;
  color: var(--bear-blue);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  box-shadow: var(--shadow-md);
  display:flex; gap: 10px; align-items: center;
}
.service-image .tag svg{ width: 16px; height: 16px; }
.service-image .tag small{
  display:block; font-size: 11.5px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .05em;
}

/* How it works */
.how-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step{
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border-soft);
  position: relative;
}
.step .step-num{
  display:inline-flex;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--bear-blue);
  align-items:center; justify-content:center;
  font-weight: 800;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  margin-bottom: 18px;
}
.step h3{ font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.step p{ font-size: 14.5px; color: var(--muted); margin: 0; }

/* Pricing */
.pricing{ background: #fff; }
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card{
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.price-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sky); }
.price-card.featured{
  background: var(--bear-blue);
  color: #fff;
  border-color: var(--bear-blue);
  box-shadow: 0 24px 40px rgba(31,78,121,.22);
}
.price-card.featured h3, .price-card.featured .price, .price-card.featured .price small{ color: #fff; }
.price-card.featured .features li{ color: rgba(255,255,255,.9); }
.price-card.featured .features .check{ background: var(--sky); color: var(--bear-blue); }
.price-card .badge{
  position: absolute;
  top: -12px; right: 22px;
  background: var(--sky);
  color: var(--bear-blue);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.price-card h3{ font-size: 22px; color: var(--ink); margin-bottom: 4px; }
.price-card .desc{ color: var(--muted); font-size: 14.5px; margin-bottom: 22px; min-height: 42px; }
.price-card.featured .desc{ color: rgba(255,255,255,.78); }
.price-card .price{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--bear-blue);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-card .price small{
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.price-card .features{
  list-style: none; padding: 0; margin: 24px 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.price-card .features li{
  display:flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: #2a3640;
}
.price-card .features .check{
  flex: 0 0 18px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--bear-blue);
  display:flex; align-items:center; justify-content:center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
}
.price-fineprint{
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13.5px;
}

/* Service area */
.area{
  background: linear-gradient(180deg, var(--warm-white) 0%, #fff 100%);
}
.area-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.area-map{
  position: relative;
  aspect-ratio: 5 / 4;
  background: linear-gradient(160deg, #eaf3f8 0%, #d2e7f0 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.area-map svg{ width: 100%; height: 100%; display:block; }
.pin{
  position: absolute;
  width: 12px; height: 12px;
  background: var(--bear-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(31,78,121,.18), 0 2px 6px rgba(0,0,0,.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .15s;
}
.pin:hover{ transform: translate(-50%, -50%) scale(1.3); }
.pin .pin-label{
  position: absolute;
  left: 16px; top: 50%; transform: translateY(-50%);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
}
.pin:hover .pin-label{ opacity: 1; }
.pin.active{ background: var(--sky); box-shadow: 0 0 0 4px rgba(107,183,214,.35), 0 2px 6px rgba(0,0,0,.18); }

.area-towns{
  list-style:none; padding: 0; margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.area-towns li{
  display:flex; align-items:center; gap: 10px;
  color: #2a3640;
  font-size: 15px;
}
.area-towns li::before{
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
}

/* About */
.about{ background: #fff; }
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-card{
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.about-card .num{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--bear-blue);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.about-card .lbl{ color: var(--muted); font-size: 14px; }
.founder-card{
  background: linear-gradient(180deg, var(--ice), #fff 60%);
  border-radius: var(--radius-lg);
  padding: 8px;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.founder-card .photo{
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: var(--ice);
}
.founder-card .photo > img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.founder-card .quote{
  padding: 22px 22px 18px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -.01em;
}
.founder-card .quote cite{
  display:block;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 10px;
}

/* Reviews */
.reviews{ background: var(--warm-white); }
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card{
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.review-card .stars{ color: #F5A524; font-size: 16px; letter-spacing: 1px; margin-bottom: 12px; }
.review-card blockquote{ margin: 0 0 18px; font-size: 16px; line-height: 1.5; color: var(--ink); }
.review-card .who{ display:flex; align-items:center; gap: 12px; margin-top: auto; }
.review-card .avatar{
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ice);
  color: var(--bear-blue);
  display:flex; align-items:center; justify-content:center;
  font-weight: 700; font-size: 14px;
}
.review-card .name{ font-weight: 600; font-size: 14.5px; }
.review-card .loc{ font-size: 13px; color: var(--muted); }

/* FAQ */
.faq{
  background: #fff;
}
.faq-grid{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-list{ display: flex; flex-direction: column; gap: 10px; }
.faq-item{
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  gap: 16px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: '';
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ice);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F4E79' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transition: transform .2s;
}
.faq-item[open] summary::after{ transform: rotate(180deg); }
.faq-item .answer{
  padding: 0 24px 22px;
  color: #2a3640;
  font-size: 15.5px;
  line-height: 1.55;
}
.faq-item .answer p{ margin: 0; }

/* Final CTA */
.cta{
  background: var(--bear-blue);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.cta::before{
  content:'';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 90% 100%, rgba(107,183,214,.30), transparent 60%);
  pointer-events: none;
}
.cta .container{ position: relative; }
.cta-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta h2{ color: #fff; max-width: 14ch; }
.cta p{ color: rgba(255,255,255,.82); font-size: 18px; max-width: 50ch; }
.cta .btn-primary{
  background: #fff;
  color: var(--bear-blue);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.cta .btn-primary:hover{ background: var(--ice); color: var(--bear-blue); }
.cta .btn-ghost{ color: #fff; border: 1px solid rgba(255,255,255,.3); }
.cta .btn-ghost:hover{ background: rgba(255,255,255,.08); color: #fff; }
.cta-photo{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-width: 460px;
  margin-left: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.cta-photo > img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-photo .grad{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,30,50,.45));
  pointer-events:none;
}
.cta-photo .badge{
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.95);
  color: var(--bear-blue);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}
.cta-photo .badge small{
  display:block; font-size: 11px; font-weight: 500; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; margin-top: 1px;
}

/* Tips */
.tips{
  background: var(--warm-white);
}
.tips-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tip-card{
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.tip-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tip-card .tip-img{
  aspect-ratio: 16 / 10;
  background: var(--ice);
  position: relative;
  overflow: hidden;
}
.tip-card .tip-img > img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.tip-card .tip-img .swatch{
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ice), var(--sky-soft));
  display:flex; align-items:center; justify-content:center;
}
.tip-card .tip-img .swatch svg{ width: 56px; height: 56px; color: var(--bear-blue); opacity: .85; }
.tip-card .tip-cat{
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  color: var(--bear-blue);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.tip-card .tip-body{
  padding: 22px 22px 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.tip-card h3{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.tip-card p{ font-size: 14.5px; color: var(--muted); margin: 0 0 16px; }
.tip-card .tip-meta{
  display:flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.tip-card .tip-meta .read{ color: var(--bear-blue); font-weight: 600; }
.tip-card .tip-meta .read svg{ width: 12px; height: 12px; margin-left: 4px; vertical-align: -1px; }

/* Footer */
.footer{
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
  font-size: 14.5px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4{
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-size: 14px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.footer a{ color: rgba(255,255,255,.75); display: block; padding: 4px 0; }
.footer a:hover{ color: #fff; }
.footer .logo-block img{ height: 38px; filter: brightness(1.5); margin-bottom: 14px; }
.footer .logo-block p{ color: rgba(255,255,255,.6); margin: 0 0 14px; max-width: 36ch; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display:flex; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* Booking modal */
.modal-backdrop{
  position: fixed; inset: 0;
  background: rgba(15,25,35,.6);
  backdrop-filter: blur(6px);
  display:flex; align-items:flex-start; justify-content:center;
  padding: 5vh 20px 20px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  overflow-y: auto;
}
.modal-backdrop.open{ opacity: 1; pointer-events: auto; }
.modal{
  background: #fff;
  width: 100%;
  max-width: 580px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
  transform: translateY(20px);
  transition: transform .2s;
}
.modal-backdrop.open .modal{ transform: translateY(0); }
.modal-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 24px 8px;
}
.modal-head .step-dots{ display:flex; gap: 6px; }
.modal-head .step-dots span{
  width: 22px; height: 4px; border-radius: 999px; background: var(--border);
  transition: background .2s;
}
.modal-head .step-dots span.active{ background: var(--bear-blue); }
.modal-head .step-dots span.done{ background: var(--sky); }
.modal-close{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display:flex; align-items:center; justify-content:center;
}
.modal-close:hover{ background: var(--warm-white); }
.modal-body{ padding: 16px 24px 24px; }
.modal-body h3{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  color: var(--bear-blue);
  letter-spacing: -.02em;
  margin: 0 0 6px;
}
.modal-body .sub{ color: var(--muted); font-size: 14.5px; margin: 0 0 22px; }
.option-list{ display:flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.option{
  display:flex; align-items:center; gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
  transition: border-color .15s, background .15s;
  width: 100%;
}
.option:hover{ border-color: var(--sky); background: var(--warm-white); }
.option.selected{ border-color: var(--bear-blue); background: var(--ice); }
.option .opt-icon{
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--ice);
  color: var(--bear-blue);
  display:flex; align-items:center; justify-content:center;
}
.option.selected .opt-icon{ background: var(--bear-blue); color: #fff; }
.option .opt-body{ flex: 1; }
.option .opt-title{ font-weight: 600; font-size: 15.5px; line-height: 1.2; }
.option .opt-desc{ color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.option .opt-price{ font-weight: 700; color: var(--bear-blue); font-size: 15px; }
.field{ display:flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label{ font-weight: 600; font-size: 14px; color: var(--ink); }
.field input, .field textarea, .field select{
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: var(--bear-blue);
  box-shadow: 0 0 0 3px rgba(31,78,121,.15);
}
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.date-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.date-pill{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 8px;
  cursor: pointer;
  text-align: center;
  font: inherit;
  transition: border-color .15s, background .15s;
}
.date-pill:hover{ border-color: var(--sky); }
.date-pill.selected{ border-color: var(--bear-blue); background: var(--ice); }
.date-pill .dow{ font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.date-pill .day{ font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 700; color: var(--bear-blue); line-height: 1; margin: 4px 0; }
.date-pill .mo{ font-size: 12px; color: var(--muted); }
.time-row{ display:flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.time-pill{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.time-pill:hover{ border-color: var(--sky); }
.time-pill.selected{ background: var(--bear-blue); color: #fff; border-color: var(--bear-blue); }
.modal-foot{
  display:flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 16px 24px 22px;
  border-top: 1px solid var(--border-soft);
  background: var(--warm-white);
}
.modal-summary{ font-size: 13.5px; color: var(--muted); }
.modal-summary strong{ color: var(--ink); font-weight: 700; }
.confirm-card{
  text-align: center;
  padding: 20px 8px 8px;
}
.confirm-card .ring{
  width: 76px; height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ice);
  display:flex; align-items:center; justify-content:center;
  color: var(--bear-blue);
}
.confirm-card .ring svg{ width: 38px; height: 38px; }
.confirm-card h3{ font-size: 24px; margin-bottom: 6px; }
.confirm-card .ref{
  display:inline-block;
  margin-top: 8px;
  background: var(--warm-white);
  border: 1px dashed var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: var(--bear-blue);
  font-weight: 700;
  letter-spacing: .05em;
}
.confirm-card .recap{
  text-align: left;
  background: var(--warm-white);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 22px 0 4px;
}
.confirm-card .recap-row{
  display:flex; justify-content: space-between;
  font-size: 14.5px;
  padding: 4px 0;
}
.confirm-card .recap-row .l{ color: var(--muted); }
.confirm-card .recap-row .v{ font-weight: 600; color: var(--ink); }

/* Tip article pages */
.article-page{ background: var(--warm-white); }
.article-shell{
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 28px 0;
}
.article-back{
  display:inline-flex; align-items:center; gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.article-back svg{ width: 14px; height: 14px; }
.article-back:hover{ color: var(--bear-blue); }
.article-cat{
  display:inline-block;
  background: var(--ice);
  color: var(--bear-blue);
  border: 1px solid rgba(107,183,214,.4);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.article h1{
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--bear-blue);
  margin: 0 0 14px;
}
.article-meta{
  display: flex; align-items: center; gap: 16px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.article-meta .author{
  display:flex; align-items: center; gap: 10px;
  color: var(--ink);
  font-weight: 600;
}
.article-meta .author .av{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bear-blue);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
  font-size: 13px;
}
.article-meta .sep{ color: #c8d0d6; }
.article-hero{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}
.article-hero > img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body{
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #2a3640;
}
.article-body > p,
.article-body > ul,
.article-body > ol{
  margin: 0 0 1.2em;
}
.article-body p:first-of-type{
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -.005em;
}
.article-body h2{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  letter-spacing: -.02em;
  color: var(--bear-blue);
  margin: 2em 0 .5em;
  line-height: 1.2;
}
.article-body h3{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  color: var(--ink);
  margin: 1.4em 0 .4em;
}
.article-body ul, .article-body ol{ padding-left: 22px; }
.article-body li{ margin: 8px 0; }
.article-body strong{ color: var(--ink); }
.article-body a{ text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.article-callout{
  background: var(--ice);
  border: 1px solid rgba(107,183,214,.45);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 28px 0;
}
.article-callout strong{ color: var(--bear-blue); }
.article-callout h4{
  margin: 0 0 6px;
  color: var(--bear-blue);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  letter-spacing: -.01em;
}
.article-callout p{ margin: 0; font-size: 16px; }

.article-end-cta{
  margin: 48px 0 0;
  padding: 36px 36px;
  background: var(--bear-blue);
  color: #fff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 18px;
  align-items: center;
}
.article-end-cta h3{
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: -.02em;
}
.article-end-cta p{ margin: 0; color: rgba(255,255,255,.82); font-size: 15px; }
.article-end-cta .btn-primary{
  background: #fff;
  color: var(--bear-blue);
}
.article-end-cta .btn-primary:hover{ background: var(--ice); color: var(--bear-blue); }

.article-related{
  background: #fff;
  padding: 72px 0 96px;
  border-top: 1px solid var(--border-soft);
  margin-top: 80px;
}
.article-related h2{
  font-size: 26px;
  margin-bottom: 24px;
}

/* Static header / footer (for tip pages without React) */
.static-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,246,243,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.static-header .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.static-header .logo img{ height: 40px; }
.static-header nav{ display:flex; gap: 6px; }
.static-header nav a{
  color: var(--ink); font-weight: 500; font-size: 15.5px;
  padding: 8px 14px; border-radius: 999px;
}
.static-header nav a:hover{ background: rgba(31,78,121,.07); color: var(--bear-blue); }
@media (max-width: 880px){
  .static-header nav{ display: none; }
  .article-end-cta{ grid-template-columns: 1fr; }
  section{ padding: 72px 0; }
  .hero{ min-height: min(70vh, 560px); }
  .hero-inner{ padding: 60px 0 40px; }
  .hero-content{ max-width: 100%; }
  .service-grid, .area-grid, .about-grid, .faq-grid, .cta-grid, .problem-layout{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .problem-grid, .how-grid{ grid-template-columns: 1fr 1fr; }
  .tips-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .nav{ display: none; }
  .cta-photo{ margin: 0 auto; }
  .included-list{ grid-template-columns: 1fr; }
  .honest-ribbon .row{ flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 540px){
  .problem-grid, .how-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .field-row{ grid-template-columns: 1fr; }
  .date-grid{ grid-template-columns: repeat(3, 1fr); }
  h1{ font-size: 42px; }
}
