:root {
  --purple:      #a028a0;
  --purple-dk:   #6b1a6b;
  --purple-lt:   #c655c6;
  --purple-pale: #faf0fa;
  --green:       #28c800;
  --green-dk:    #1a8200;
  --green-lt:    #5de63a;
  --green-pale:  #f0fced;
  --blue:        #1478a0;
  --blue-lt:     #3aaad4;
  --ink:         #130d13;
  --ink-2:       #4a3f4a;
  --ink-3:       #8a7e8a;
  --surface:     #ffffff;
  --bg:          #fdf9fd;
  --border:      rgba(160,40,160,.11);
  --shadow-sm:   0 2px 12px rgba(106,26,107,.08);
  --shadow-md:   0 8px 32px rgba(106,26,107,.12);
  --shadow-lg:   0 20px 60px rgba(106,26,107,.18);
  --ease:        cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ─── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 5%; }

/* ─── TYPE ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--purple); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--green); border-radius: 2px; flex-shrink: 0; }
.eyebrow-light { color: rgba(255,255,255,.5); }
.eyebrow-light::before { background: var(--green-lt); }

h1, h2 { font-family: 'Fraunces', serif; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-family: 'Fraunces', serif; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; line-height: 1.2; }
.body-lg { font-size: 1.05rem; line-height: 1.75; color: var(--ink-2); }
.body-sm { font-size: .88rem; line-height: 1.65; color: var(--ink-3); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; font-weight: 600;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-purple { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-purple:hover { background: var(--purple-dk); border-color: var(--purple-dk); box-shadow: 0 10px 28px rgba(160,40,160,.32); }
.btn-outline-purple { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline-purple:hover { background: var(--purple-pale); }
.btn-outline-green { background: transparent; color: var(--green-dk); border-color: var(--green-dk); }
.btn-outline-green:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--purple); border-color: #fff; }
.btn-white:hover { background: var(--purple-pale); border-color: var(--purple-pale); box-shadow: 0 10px 28px rgba(0,0,0,.15); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.22); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }
.btn-lg { padding: 17px 36px; font-size: .95rem; }
.arr::after { content: '→'; transition: transform .2s; }
.btn:hover.arr::after { transform: translateX(4px); }

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(253,249,253,.93); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 5%;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; }
.nav-cta-center { display: flex; justify-content: center; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; }

/* Desktop links — shown inside the mobile overlay only, hidden in nav bar */
.nav-links { display: none; }

/* Hamburger — always visible */
.hamburger { display: flex; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 4px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile/tablet overlay nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 290;
  background: var(--bg); padding: 96px 6% 40px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin-top: 20px; }

/* ─── HERO ─── */
#hero {
  min-height: 100svh;
  padding-top: 70px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--purple-dk);
}
/* Soft atmospheric glows */
#hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(40,200,0,.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 0%, rgba(160,40,160,.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 110%, rgba(20,120,160,.06) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 60px 6% 72px; max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
#hero h1 { color: #fff; margin-bottom: 22px; }
#hero h1 em { font-style: italic; color: var(--green-lt); }
#hero .body-lg { max-width: 500px; margin-bottom: 36px; text-align: center; color: rgba(255,255,255,.75); }
.hero-trust { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500; }
.hero-trust-stars { color: var(--green-lt); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }

/* ─── TICKER ─── */
#ticker { background: var(--blue); padding: 18px 0; overflow: hidden; white-space: nowrap; }
.ticker-track {
  display: inline-flex; gap: 44px; align-items: center;
  animation: tick 28s linear infinite;
  will-change: transform;
}
.ticker-item { display: inline-flex; align-items: center; gap: 10px; font-size: .73rem; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.9); white-space: nowrap; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
@keyframes tick { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

/* ─── INTRO ─── */
#intro { padding: 0; background: none; }

/* Meet Brandi — dark purple */
.meet-section { padding: 72px 0; background: var(--purple-pale); position: relative; overflow: hidden; }
.meet-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40,200,0,.1) 0%, transparent 70%);
  pointer-events: none;
}
.meet-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
}
.meet-text h2 { color: var(--purple-dk); margin-bottom: 16px; }
.meet-text .eyebrow { color: var(--purple); }
.meet-text .eyebrow::before { background: var(--green); }
.meet-text .body-lg { color: var(--ink-2); }

/* Value prop — cream */
.value-section { padding: 72px 0; background: var(--bg); }
.value-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.value-text h2 { color: var(--ink); margin-bottom: 14px; }
.value-text .body-lg { color: var(--ink-2); }

.promise-list { display: flex; flex-direction: column; }
.promise-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.promise-item:first-child { border-top: 1px solid var(--border); }
.p-num { font-family: 'Fraunces', serif; font-size: .95rem; font-weight: 700; color: var(--blue); min-width: 26px; padding-top: 1px; flex-shrink: 0; }
.p-label { font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.p-desc { font-size: .82rem; color: var(--ink-3); line-height: 1.5; }

/* Photo frame */
.intro-right { position: relative; }
.photo-frame {
  border-radius: 36px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--purple-dk) 0%, #1e001e 100%);
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.photo-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 40px;
}
.photo-ph-icon { font-size: 3rem; opacity: .4; }
.photo-ph p { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.5; }
/* Accent blobs */
.intro-right::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 65%; height: 65%; border-radius: 50%;
  background: rgba(255,255,255,.05); z-index: -1;
}
.intro-right::after {
  content: ''; position: absolute; bottom: -14px; left: -14px;
  width: 38%; height: 38%; border-radius: 50%;
  background: rgba(40,200,0,.1); z-index: -1;
}
/* Floating signature card */
.sig-card {
  position: absolute; bottom: 28px; right: -16px; z-index: 2;
  background: #fff; border-radius: 16px;
  padding: 12px 18px; box-shadow: var(--shadow-md);
  max-width: calc(100% - 20px);
  border-left: 4px solid var(--blue);
}
.sig-card img { height: 42px; width: auto; }

/* ─── HOW IT WORKS ─── */
#how-it-works { padding: 64px 0; background: var(--purple-pale); }
#how-it-works h2 { color: var(--ink); margin-bottom: 12px; }
#how-it-works > .wrap > .hiw-intro { max-width: 560px; margin-bottom: 56px; }

.hiw-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
/* two separate connecting lines, each between their respective steps */
.hiw-steps::before {
  content: '';
  position: absolute; top: 36px;
  left: calc(16.66% + 16px);
  right: calc(50% + 16px);
  height: 2px;
  background: var(--green);
  z-index: 0;
}
.hiw-steps::after {
  content: '';
  position: absolute; top: 36px;
  left: calc(50% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: var(--purple);
  z-index: 0;
}
.hiw-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 28px; position: relative; z-index: 1;
}
.hiw-num {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900;
  margin-bottom: 20px; flex-shrink: 0;
  border: 3px solid transparent;
  position: relative;
}
.hiw-step:nth-child(1) .hiw-num { background: var(--purple-pale); color: var(--purple); border-color: var(--purple); }
.hiw-step:nth-child(2) .hiw-num { background: #e8f4fa; color: var(--blue); border-color: var(--blue); }
.hiw-step:nth-child(3) .hiw-num { background: var(--green-pale); color: var(--green-dk); border-color: var(--green); }
.hiw-step h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 10px; }
.hiw-step p { font-size: .86rem; color: var(--ink-3); line-height: 1.65; }
.hiw-note {
  margin-top: 48px; padding: 20px 24px;
  background: var(--purple-pale); border-radius: 14px;
  border-left: 4px solid var(--purple);
  font-size: .88rem; color: var(--ink-2); line-height: 1.65;
}
.hiw-note strong { color: var(--purple-dk); }

/* ─── SERVICES ─── */
#services { background: var(--purple-dk); padding: 64px 0; position: relative; overflow: hidden; }
#services::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40,200,0,.1) 0%, transparent 70%);
  pointer-events: none;
}
#services::after {
  content: ''; position: absolute; bottom: -140px; left: -140px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,120,160,.12) 0%, transparent 70%);
  pointer-events: none;
}
.services-header { margin-bottom: 48px; }
.services-header h2 { color: #fff; margin-bottom: 10px; }
.services-header p { font-size: .9rem; color: rgba(255,255,255,.5); max-width: 420px; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px; padding: 40px 36px;
  text-decoration: none; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-lt), var(--blue-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon { font-size: 2.4rem; margin-bottom: 20px; }
.service-card h3 { color: #fff; margin-bottom: 12px; }
.service-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 28px; flex: 1; }
.sc-cta { font-size: .78rem; font-weight: 600; color: var(--green-lt); letter-spacing: .8px; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.sc-cta::after { content: '→'; transition: transform .2s; }
.service-card:hover .sc-cta::after { transform: translateX(4px); }

/* ─── TESTIMONIALS ─── */
#testimonials { padding: 64px 0; background: var(--bg); }
.t-head { text-align: center; max-width: 540px; margin: 0 auto 52px; }
.t-head .eyebrow { display: flex; justify-content: center; }
.t-head h2 { color: var(--ink); margin-bottom: 10px; }
.t-stars-row { color: var(--green-dk); font-size: 1rem; letter-spacing: 3px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.t-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 26px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .2s, box-shadow .2s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-card-stars { color: var(--green-dk); letter-spacing: 2px; font-size: .88rem; }
.t-quote { font-size: .93rem; line-height: 1.75; color: var(--ink-2); font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--purple-pale); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 700; color: var(--purple); font-size: .88rem; flex-shrink: 0; }
.t-name { font-size: .84rem; font-weight: 600; color: var(--ink); }
.t-foot { text-align: center; }

/* ─── CTA BAND ─── */
#cta-band {
  margin: 0 4%; border-radius: 32px;
  background: var(--purple-dk); padding: 68px 72px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
#cta-band::before {
  content: ''; position: absolute; top: -100px; right: 160px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40,200,0,.13) 0%, transparent 70%);
  pointer-events: none;
}
#cta-band::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,120,160,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-text { position: relative; z-index: 1; }
.cta-band-text h2 { color: #fff; margin-bottom: 10px; }
.cta-band-text p { font-size: .93rem; color: rgba(255,255,255,.58); max-width: 480px; line-height: 1.65; }
.cta-band-action { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.cta-band-sub { font-size: .72rem; color: rgba(255,255,255,.35); }

/* ─── RESOURCES ─── */
#resources { padding: 64px 0; background: var(--purple-pale); }
.resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
#resources h2 { color: var(--ink); margin-bottom: 40px; }
.res-col-heading { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; color: var(--purple-dk); margin-bottom: 6px; }

.res-links { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.res-link {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px;
  text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.res-link:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.res-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--blue-pale, #e8f4fa); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.res-label strong { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); }
.res-label small { font-size: .74rem; color: var(--ink-3); }
.res-arrow { margin-left: auto; color: var(--ink-3); font-size: .8rem; flex-shrink: 0; }

.diy-block { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.diy-block .eyebrow { margin-bottom: 16px; }
.diy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.diy-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 10px;
  text-align: center; text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s; display: block;
}
.diy-card:hover { border-color: var(--purple); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.diy-card .di { font-size: 1.4rem; margin-bottom: 6px; }
.diy-card span { display: block; font-size: .7rem; color: var(--ink-3); font-weight: 500; line-height: 1.4; }

/* Newsletter -- uncomment below when adding stay in touch back*/
/* .nl-box {
  background: var(--surface); border-radius: 24px;
  padding: 40px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); position: sticky; top: 90px;
}
.nl-box h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.nl-box .body-sm { margin-bottom: 24px; }
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-form input {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .88rem; color: var(--ink);
  background: var(--bg); outline: none; transition: border-color .2s; width: 100%;
}
.nl-form input:focus { border-color: var(--purple); }
.nl-form input::placeholder { color: var(--ink-3); }
.nl-form .btn { width: 100%; }
.nl-success { display: none; text-align: center; padding: 18px; color: var(--green-dk); font-weight: 600; font-size: .9rem; } */

/* ─── CONTACT ─── */
#contact { padding: 64px 0; background: var(--bg); }
#contact h2 { color: var(--ink); margin-bottom: 10px; }
.contact-col-heading { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; color: var(--purple-dk); margin-bottom: 6px; }
/* Single column now — change to 1fr 1fr when adding Stay in the Loop */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: 640px; }
.contact-hours { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border); max-width: 640px; }
.contact-info { max-width: 600px; }
.c-details { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.c-row { display: flex; align-items: flex-start; gap: 14px; }
.c-badge {
  width: 42px; height: 42px; border-radius: 10px;
  background: #e8f4fa; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.c-badge svg { color: var(--blue); width: 18px; height: 18px; }
.c-info { min-width: 0; }
.c-label { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-3); margin-bottom: 3px; }
.c-val { font-size: .93rem; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.c-val a { color: var(--ink); transition: color .2s; }
.c-val a:hover { color: var(--purple); }
.hours-list { display: grid; grid-template-columns: auto 1fr; gap: 4px 20px; }
.h-row { display: contents; }
.h-day { font-size: .84rem; color: var(--ink-3); white-space: nowrap; padding: 2px 0; }
.h-time { font-size: .84rem; font-weight: 500; padding: 2px 0; }

.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-3); }
.cf-input {
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem; color: var(--ink); background: var(--surface);
  outline: none; transition: border-color .2s; width: 100%;
}
.cf-input:focus { border-color: var(--purple); }
.cf-input::placeholder { color: var(--ink-3); }
.cf-textarea { min-height: 130px; resize: vertical; }
.cf-success { display: none; margin-top: 14px; color: var(--green-dk); font-size: .9rem; font-weight: 600; }
.cf-error { display: none; margin-top: 14px; color: #c0392b; font-size: .9rem; }
@media (max-width: 480px) { .cf-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
footer { background: #0e5c80; color: #fff; text-align: center; padding: 48px 5% 32px; }
.footer-logo { display: flex; justify-content: center; margin-bottom: 16px; }
.footer-logo img { height: 52px; width: auto; }
footer p { font-size: .82rem; line-height: 1.9; }
footer a { color: rgba(255,255,255,.85); transition: color .2s; }
footer a:hover { color: #fff; }
.footer-socials {
  display: flex; justify-content: center; gap: 14px;
  margin: 20px 0 24px;
}
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  color: #fff;
}
.social-icon:hover { background: rgba(255,255,255,.3); transform: translateY(-3px); }
.social-icon svg { width: 18px; height: 18px; fill: #fff; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.on { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
/* ─── RESPONSIVE ─── */
@media (max-width: 1020px) {
  .meet-grid { grid-template-columns: 1fr; gap: 44px; }
  .meet-grid .intro-right { max-width: 420px; }
  .value-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-featured { grid-template-columns: 1fr; }
  .sf-visual { min-height: 160px; }
  .resources-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nl-box { position: static; }
  #cta-band { grid-template-columns: 1fr; text-align: center; padding: 48px 40px; }
  .cta-band-text p { max-width: 100%; }
}
@media (max-width: 720px) {
  .nav-inner { padding: 12px 4%; gap: 8px; }
  .nav-logo img { height: 38px; }
  .nav-cta-center .btn { padding: 9px 16px; font-size: .78rem; }
  .hiw-steps { grid-template-columns: 1fr; gap: 28px; }
  .hiw-steps::before, .hiw-steps::after { display: none; }
  .hiw-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; padding: 0; }
  .hiw-num { width: 52px; height: 52px; font-size: 1.1rem; flex-shrink: 0; margin-bottom: 0; }
  .resources-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .diy-grid { grid-template-columns: repeat(2, 1fr); }
  #cta-band { margin: 0 3%; padding: 44px 28px; border-radius: 24px; }
  .sig-card { right: 0; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .nav-cta-center .btn { display: none; }
  #cta-band { padding: 36px 22px; }
  .meet-grid .intro-right { max-width: 100%; }
  .resources-grid { grid-template-columns: 1fr; }
  .diy-grid { grid-template-columns: repeat(2, 1fr); }
}
