
/* ── TOKENS ─────────────────────────────── */
:root {
  --ink:      #050C07;
  --forest:   #091609;
  --deep:     #0C2210;
  --pine:     #174D20;
  --mid:      #1E6629;
  --sage:     #2D7A3A;
  --gold:     #E9B840;
  --gold-lt:  #F5CE6E;
  --gold-dk:  #BF8E16;
  --amber:    #D4920E;
  --cream:    #FBF6DC;
  --warm:     #F5F0DC;
  --off:      #F6F7F2;
  --white:    #FFFFFF;
  --text:     #131F13;
  --muted:    #556355;
  --border:   rgba(255,255,255,0.07);
  --gold-b:   rgba(233,184,64,0.18);

  --fh: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;

  --r: 14px;
  --rl: 22px;
  --rx: 32px;
  --spacing: 120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--off);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── SCROLL ANIMATIONS ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── NOISE OVERLAY ──────────────────────── */
.noise {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── BUTTONS ────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.2px;
  border: none; cursor: pointer;
  transition: all 0.25s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 4px 24px rgba(233,184,64,0.3);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(233,184,64,0.42);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(251,246,220,0.8);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(251,246,220,0.22);
  cursor: pointer;
  transition: all 0.22s;
}
.btn-ghost:hover {
  border-color: rgba(251,246,220,0.5);
  background: rgba(251,246,220,0.06);
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(19,31,19,0.18);
  cursor: pointer;
  transition: all 0.22s;
}
.btn-outline-dark:hover {
  background: var(--text);
  color: var(--off);
}

/* ── EYE (SECTION LABEL) ────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow.lt { color: var(--gold-lt); }
.eyebrow.lt::before { background: var(--gold-lt); }

/* ── SECTION HEADINGS ───────────────────── */
.sec-h2 {
  font-family: var(--fh);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--ink);
}
.sec-h2 em { font-style: italic; color: var(--sage); font-weight: 700; }
.sec-h2.lt { color: var(--warm); }
.sec-h2.lt em { color: var(--gold); }
.sec-p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 400;
}
.sec-p.lt { color: rgba(245,240,220,0.62); }

/* ── SECTION WRAPPER ────────────────────── */
section { padding: var(--spacing) 60px; }
.inner { max-width: 1280px; margin: 0 auto; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(5,12,7,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s;
}
#nav.scrolled { box-shadow: 0 4px 60px rgba(0,0,0,0.6); }
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream); text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo-mark {
  display: none;
}
.nav-logo-text {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--cream);
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
  list-style: none;
}
.nav-links a {
  color: rgba(251,246,220,0.55);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.1px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-social-mobile {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 14px;
}
.nav-social-mobile a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(251,246,220,0.78);
  border: 1px solid rgba(233,184,64,0.24);
  background: rgba(255,255,255,0.02);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.nav-social-mobile a:hover {
  color: var(--gold);
  border-color: rgba(233,184,64,0.46);
  background: rgba(233,184,64,0.08);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  box-shadow: 0 4px 18px rgba(233,184,64,0.32);
  transition: all 0.22s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(233,184,64,0.46) !important; background: var(--gold-lt) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(5,12,7,0.99);
  padding: 20px 24px 24px;
  border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(251,246,220,0.75); font-size: 16px; font-weight: 600;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a:last-child { border: none; color: var(--gold); font-weight: 800; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  min-height: 100vh; padding-top: 72px;
  background: var(--ink);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(233,184,64,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 5% 80%, rgba(30,102,41,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 100% 35% at 50% 100%, rgba(12,34,16,0.9) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(251,246,220,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,246,220,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(233,184,64,0.3);
  background: rgba(233,184,64,0.07);
  color: var(--gold);
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 26px;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.5); }
}
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -3px;
  color: var(--warm);
  margin-bottom: 22px;
}
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .stroke {
  -webkit-text-stroke: 1.5px var(--gold);
  color: transparent;
}
.hero-p {
  font-size: 17px;
  color: rgba(245,240,220,0.58);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-proof { display: flex; align-items: center; gap: 16px; }
.proof-dogs { display: flex; }
.proof-dogs .pd {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--pine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 11px; font-weight: 800;
  color: var(--gold); margin-left: -9px;
  flex-shrink: 0;
}
.proof-dogs .pd:first-child { margin-left: 0; }
.proof-text { font-size: 13px; color: rgba(245,240,220,0.45); line-height: 1.45; }
.proof-text strong { color: rgba(245,240,220,0.82); }

/* Hero right */
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--rx);
  padding: 36px 32px;
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(233,184,64,0.055) 0%, transparent 65%);
  pointer-events: none;
}
.hero-tagline {
  font-family: var(--fh);
  font-size: 19px; font-weight: 700;
  color: rgba(245,240,220,0.55);
  line-height: 1.4;
  text-align: center; position: relative; z-index: 1;
}
.hero-tagline strong { color: var(--gold); font-weight: 800; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(233,184,64,0.1);
  border-radius: var(--rl); overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.hero-stat {
  padding: 20px 12px; text-align: center;
  border-right: 1px solid rgba(233,184,64,0.08);
}
.hero-stat:last-child { border-right: none; }
.hs-num {
  font-family: var(--fh); font-size: 32px; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.hs-lbl {
  font-size: 10px; color: rgba(245,240,220,0.32);
  text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700;
}
/* Howly Logo SVG in hero */
.hero-logo-svg {
  display: block; width: 100%; max-width: 340px;
  margin: 0 auto 22px; position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   TICKER STRIP
══════════════════════════════════════════ */
#ticker {
  background: var(--pine);
  border-top: 1px solid rgba(233,184,64,0.12);
  border-bottom: 1px solid rgba(233,184,64,0.12);
  overflow: hidden; padding: 0;
}
.ticker-track {
  display: flex; align-items: stretch;
  max-width: 1280px; margin: 0 auto;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 28px; flex: 1; justify-content: center;
  color: rgba(251,246,220,0.75);
  font-size: 13px; font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.ticker-item:last-child { border-right: none; }
.ticker-item svg { color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services { background: var(--off); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--rl);
  padding: 36px 28px 32px;
  position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.35s cubic-bezier(.22,1,.36,1);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(233,184,64,0.25);
}
.service-card:hover::before { height: 100%; }
.sc-icon {
  width: 52px; height: 52px;
  background: rgba(30,102,41,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .sc-icon { background: rgba(233,184,64,0.12); }
.sc-icon svg { color: var(--ink); }
.sc-title {
  font-family: var(--fh); font-size: 19px; font-weight: 800;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -.5px;
}
.sc-desc {
  font-size: 14.5px; color: var(--muted); line-height: 1.7;
  margin-bottom: 18px;
}
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-tag {
  font-size: 11px; font-weight: 700;
  color: var(--sage); background: rgba(30,102,41,0.08);
  padding: 4px 11px; border-radius: 50px; letter-spacing: .3px;
}
.sc-tag.gold-tag {
  color: var(--amber); background: rgba(233,184,64,0.1);
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
  padding: 5px 10px;
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(233,184,64,0.16);
}
.service-badge.new-badge { background: var(--sage); color: var(--cream); }

/* ══════════════════════════════════════════
   PLANS
══════════════════════════════════════════ */
#plans { background: var(--deep); position: relative; overflow: hidden; }
#plans .noise { opacity: 0.04; }
.plans-header { text-align: center; margin-bottom: 58px; }
.freq-toggle {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 4px;
  margin: 24px auto 0; gap: 0;
}
.freq-btn {
  padding: 8px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; border: none; background: transparent;
  color: rgba(245,240,220,0.45); transition: all 0.2s;
}
.freq-btn.active {
  background: var(--gold); color: var(--ink);
}
.plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 32px;
}
.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--rl); padding: 32px 28px;
  position: relative; display: flex; flex-direction: column;
  transition: all 0.3s;
}
.plan-card.featured {
  background: rgba(233,184,64,0.07);
  border-color: rgba(233,184,64,0.3);
  transform: scale(1.02);
}
.plan-card:hover { border-color: rgba(233,184,64,0.25); transform: translateY(-3px); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-3px); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 16px; border-radius: 50px;
  white-space: nowrap;
}
.plan-icon-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.plan-ico {
  width: 44px; height: 44px;
  background: rgba(233,184,64,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.plan-ico svg { color: var(--gold); }
.plan-name {
  font-family: var(--fh); font-size: 20px; font-weight: 800;
  color: var(--cream); letter-spacing: -.5px; line-height: 1.1;
}
.plan-sub { font-size: 12.5px; color: rgba(245,240,220,0.45); font-weight: 500; margin-top: 3px; }
.plan-desc {
  font-size: 14px; color: rgba(245,240,220,0.58); line-height: 1.7;
  margin-bottom: 22px; flex: 1;
}
.plan-includes-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.plan-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: rgba(245,240,220,0.72); font-weight: 500;
}
.plan-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 16px; height: 16px;
  background: rgba(233,184,64,0.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23E9B840' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.plan-cta {
  display: block; text-align: center;
  background: linear-gradient(180deg, rgba(233,184,64,0.18) 0%, rgba(233,184,64,0.10) 100%);
  border: 1px solid rgba(233,184,64,0.34);
  color: var(--gold-lt);
  padding: 13px 24px; border-radius: 50px;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 10px 26px rgba(9,22,9,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.plan-cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: rgba(233,184,64,0.72);
  box-shadow: 0 16px 34px rgba(233,184,64,0.28), 0 8px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}
.plan-card:hover .plan-cta {
  border-color: rgba(233,184,64,0.46);
}
.plan-card.featured .plan-cta {
  background: linear-gradient(180deg, var(--gold) 0%, #e2ad32 100%);
  color: var(--ink);
  border-color: rgba(233,184,64,0.78);
  box-shadow: 0 16px 34px rgba(233,184,64,0.24), 0 8px 18px rgba(0,0,0,0.18);
}
.plan-card.featured .plan-cta:hover {
  background: var(--gold-lt);
  box-shadow: 0 18px 38px rgba(233,184,64,0.32), 0 10px 20px rgba(0,0,0,0.2);
}
.plans-note {
  text-align: center; font-size: 13.5px;
  color: rgba(245,240,220,0.38); margin-top: 12px;
}
.plans-note a { color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════════════
   ADD-ONS / PACKAGE BUILDER
══════════════════════════════════════════ */
#addons { background: var(--off); }
.addons-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 56px; }
.addon-grid { display: flex; flex-direction: column; gap: 12px; }
.addon-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r); padding: 16px 20px;
  transition: all 0.22s;
}
.addon-row:hover { border-color: rgba(233,184,64,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.addon-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(30,102,41,0.07); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.addon-ico svg { color: var(--ink); }
.addon-info { flex: 1; }
.addon-name { font-family: var(--fh); font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.addon-note { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.addon-price {
  font-family: var(--fh); font-size: 14px; font-weight: 800;
  color: var(--sage); white-space: nowrap;
}

/* Builder */
.builder-box {
  background: var(--ink); border-radius: var(--rx);
  padding: 36px 32px; position: sticky; top: 90px;
  border: 1px solid var(--border);
}
.builder-title {
  font-family: var(--fh); font-size: 22px; font-weight: 800;
  color: var(--cream); letter-spacing: -.5px; margin-bottom: 6px;
}
.builder-sub { font-size: 13px; color: rgba(245,240,220,0.4); margin-bottom: 28px; }
.builder-field { margin-bottom: 18px; }
.builder-label {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.builder-select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--cream); font-family: var(--fb); font-size: 14px;
  font-weight: 500; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E9B840' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.builder-select:focus { outline: none; border-color: rgba(233,184,64,0.4); }
.builder-select option { background: var(--ink); }
.builder-checks { display: flex; flex-direction: column; gap: 8px; }
.builder-check {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.builder-check input { display: none; }
.bcc {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid rgba(233,184,64,0.3); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; background: transparent;
}
.builder-check input:checked + .bcc {
  background: var(--gold); border-color: var(--gold);
}
.builder-check input:checked + .bcc::after {
  content: '';
  display: block;
  width: 5px; height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) translate(-1px, -1px);
}
.bct { font-size: 13.5px; color: rgba(245,240,220,0.65); font-weight: 500; }
.builder-divider { border: none; border-top: 1px solid var(--border); margin: 22px 0; }
.builder-summary { margin-bottom: 20px; }
.bs-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.bs-label { font-size: 13px; color: rgba(245,240,220,0.5); }
.bs-val { font-size: 13px; color: var(--cream); font-weight: 600; }
.bs-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.bs-total-label { font-family: var(--fh); font-size: 15px; font-weight: 800; color: var(--cream); }
.bs-total-val { font-family: var(--fh); font-size: 22px; font-weight: 800; color: var(--gold); }
.bs-note { font-size: 11.5px; color: rgba(245,240,220,0.3); margin-top: 6px; text-align: right; }

/* ══════════════════════════════════════════
   WHY HOWLY
══════════════════════════════════════════ */
#why { background: var(--forest); position: relative; overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-num {
  font-family: var(--fh); font-size: 11px; font-weight: 800;
  color: var(--gold); letter-spacing: 1px;
  background: rgba(233,184,64,0.1); border: 1px solid rgba(233,184,64,0.2);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.why-text-title { font-family: var(--fh); font-size: 17px; font-weight: 800; color: var(--cream); letter-spacing: -.3px; margin-bottom: 5px; }
.why-text-desc { font-size: 14px; color: rgba(245,240,220,0.52); line-height: 1.7; }
.why-callout {
  background: rgba(233,184,64,0.06);
  border: 1px solid rgba(233,184,64,0.15);
  border-radius: var(--rx);
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.why-callout::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(233,184,64,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.wc-quote {
  font-family: var(--fh); font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; color: var(--cream); letter-spacing: -1px;
  line-height: 1.2; margin-bottom: 18px; position: relative; z-index: 1;
}
.wc-quote .gold { color: var(--gold); }
.wc-sub { font-size: 14.5px; color: rgba(245,240,220,0.5); line-height: 1.7; position: relative; z-index: 1; }
.why-values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; position: relative; z-index: 1; }
.why-val {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 50px; padding: 7px 15px;
  font-size: 13px; font-weight: 600; color: rgba(245,240,220,0.65);
}
.why-val svg { color: var(--gold); }

/* ══════════════════════════════════════════
   LEADERSHIP / ORG CHART
══════════════════════════════════════════ */
#leadership { background: var(--off); }
.org-intro { text-align: center; margin-bottom: 60px; }
.org-chart { max-width: 900px; margin: 0 auto; }

/* Jayton - The Chairman */
.org-top { display: flex; justify-content: center; margin-bottom: 0; }
.org-connector-v {
  display: flex; justify-content: center;
  height: 40px;
}
.org-connector-v-line {
  width: 2px; background: linear-gradient(to bottom, rgba(233,184,64,0.6), rgba(233,184,64,0.2));
}
.org-connector-h {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 0; position: relative; margin-bottom: 0;
  height: 40px;
}
.org-connector-h::before {
  content: '';
  position: absolute; top: 0; left: 16.5%; right: 16.5%; height: 2px;
  background: linear-gradient(to right, transparent, rgba(233,184,64,0.35) 15%, rgba(233,184,64,0.35) 85%, transparent);
}
.org-dogs-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.org-connector-v2 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-bottom: 0;
}
.org-connector-v2 .vc {
  display: flex; justify-content: center; height: 40px;
}
.org-connector-v2 .vc span {
  width: 2px; background: linear-gradient(to bottom, rgba(233,184,64,0.25), transparent);
}
.org-connector-founders {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 600px; margin: 0 auto;
}
.org-label {
  text-align: center; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; margin-top: 8px;
}

/* Chairman card (Jayton) */
.chairman-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--deep) 100%);
  border: 1.5px solid rgba(233,184,64,0.35);
  border-radius: var(--rx);
  padding: 28px 32px;
  text-align: center; max-width: 280px; width: 100%;
  position: relative; overflow: hidden;
}
.chairman-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(233,184,64,0.07) 0%, transparent 65%);
}
.chairman-avatar { display: flex; justify-content: center; margin-bottom: 14px; position: relative; z-index: 1; }
.chairman-title-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--ink);
  font-size: 9.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.chairman-name {
  font-family: var(--fh); font-size: 22px; font-weight: 800;
  color: var(--cream); letter-spacing: -.5px;
  position: relative; z-index: 1;
}
.chairman-role { font-size: 12.5px; color: rgba(245,240,220,0.45); position: relative; z-index: 1; margin-top: 4px; }
.chairman-note {
  font-size: 11.5px; color: rgba(233,184,64,0.6);
  font-style: italic; margin-top: 8px;
  position: relative; z-index: 1;
}

/* Dog cards */
.dog-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--rl);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.dog-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.dog-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.dog-card:hover::before { transform: scaleX(1); }
.dog-avatar-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.dog-title-badge {
  display: inline-block;
  font-size: 9.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--sage); background: rgba(30,102,41,0.08);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 8px;
}
.dog-name {
  font-family: var(--fh); font-size: 24px; font-weight: 800;
  color: var(--ink); letter-spacing: -.5px;
}
.dog-breed { font-size: 12px; color: var(--muted); margin: 4px 0 14px; font-style: italic; }
.dog-bio { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; text-align: left; }
.dog-traits { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.dog-trait {
  font-size: 11px; font-weight: 700;
  background: var(--off); border: 1px solid rgba(0,0,0,0.07);
  color: var(--text); padding: 4px 10px; border-radius: 50px;
}

/* Founder cards */
.founder-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--rl);
  padding: 28px 24px;
  transition: all 0.3s;
}
.founder-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.founder-av {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--deep) 0%, var(--pine) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 22px; font-weight: 800;
  color: var(--gold); margin-bottom: 14px;
}
.founder-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); background: var(--off); border: 1px solid rgba(0,0,0,0.07);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.founder-name {
  font-family: var(--fh); font-size: 22px; font-weight: 800;
  color: var(--ink); letter-spacing: -.5px; margin-bottom: 4px;
}
.founder-role { font-size: 13px; color: var(--sage); font-weight: 600; margin-bottom: 14px; }
.founder-bio { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.founder-tag {
  font-size: 11px; font-weight: 700;
  background: rgba(30,102,41,0.07); color: var(--sage);
  padding: 4px 10px; border-radius: 50px;
}
.founder-note {
  margin-top: 12px; font-size: 12px; color: rgba(233,184,64,0.7);
  font-style: italic; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.06);
}

/* ══════════════════════════════════════════
   AREA
══════════════════════════════════════════ */
#area { background: var(--ink); }
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-top: 56px; }
.area-cities {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px;
}
.area-city {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px;
  font-weight: 600; font-size: 14px; color: rgba(245,240,220,0.7);
  transition: all 0.22s;
}
.area-city:hover { border-color: rgba(233,184,64,0.2); color: var(--cream); }
.area-city svg { color: var(--gold); flex-shrink: 0; }
.area-map-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-svg-wrap { width: 100%; height: 100%; }

/* ══════════════════════════════════════════
   COMMUNITY
══════════════════════════════════════════ */
#community { background: var(--off); }
.community-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 56px; }
.partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.partner-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r); padding: 20px 16px; text-align: center;
  transition: all 0.22s;
}
.partner-card:hover { border-color: rgba(233,184,64,0.25); transform: translateY(-2px); }
.partner-icon {
  width: 40px; height: 40px; background: rgba(30,102,41,0.07);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.partner-icon svg { color: var(--ink); }
.partner-name { font-size: 12px; font-weight: 700; color: var(--text); }
.discount-box {
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 100%);
  border: 1px solid rgba(233,184,64,0.15);
  border-radius: var(--rl); padding: 36px 32px; margin-bottom: 16px;
}
.discount-title { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--cream); margin-bottom: 10px; letter-spacing: -.4px; }
.discount-desc { font-size: 14px; color: rgba(245,240,220,0.52); line-height: 1.7; margin-bottom: 18px; }
.discount-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.disc-pill {
  background: rgba(233,184,64,0.12); border: 1px solid rgba(233,184,64,0.25);
  color: var(--gold); font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 50px;
}
.partner-cta {
  background: var(--white); border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--rl); padding: 28px 32px;
}
.partner-cta-title { font-family: var(--fh); font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -.4px; }
.partner-cta-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq { background: var(--forest); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: all 0.25s;
}
.faq-item.open { border-color: rgba(233,184,64,0.2); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 20px; cursor: pointer;
  font-weight: 600; font-size: 15px; color: rgba(245,240,220,0.82); line-height: 1.4;
  -webkit-user-select: none; user-select: none;
}
.faq-q:hover { color: var(--cream); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1px solid rgba(233,184,64,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); }
.faq-icon svg { color: var(--gold); }
.faq-item.open .faq-icon svg { color: var(--ink); }
.faq-a {
  display: none; padding: 0 20px 18px;
  font-size: 14px; color: rgba(245,240,220,0.52); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════
   QUOTE
══════════════════════════════════════════ */
#quote { background: var(--deep); position: relative; overflow: hidden; }
.quote-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.quote-form {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--rx); padding: 44px 48px; margin-top: 44px; text-align: left;
}
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.qf-field { display: flex; flex-direction: column; gap: 6px; }
.qf-label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.qf-input, .qf-select, .qf-textarea {
  padding: 13px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--cream);
  font-family: var(--fb); font-size: 14.5px; font-weight: 400;
  transition: border-color 0.2s; width: 100%;
}
.qf-input:focus, .qf-select:focus, .qf-textarea:focus {
  outline: none; border-color: rgba(233,184,64,0.4);
}
.qf-input::placeholder { color: rgba(245,240,220,0.22); }
.qf-select option { background: var(--ink); }
.qf-textarea { resize: vertical; min-height: 110px; }
.qf-check-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.qf-check {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-size: 13.5px; color: rgba(245,240,220,0.6); font-weight: 500;
}
.qf-check input { display: none; }
.qfc-box {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid rgba(233,184,64,0.3); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qf-check input:checked + .qfc-box { background: var(--gold); border-color: var(--gold); }
.qf-check input:checked + .qfc-box::after {
  content: '';
  display: block; width: 5px; height: 8px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) translate(-1px, -1px);
}
.qf-submit {
  width: 100%; padding: 16px 32px;
  background: var(--gold); border: none; border-radius: 50px;
  font-family: var(--fb); font-weight: 800; font-size: 16px;
  color: var(--ink); cursor: pointer;
  box-shadow: 0 6px 28px rgba(233,184,64,0.3);
  transition: all 0.25s;
}
.qf-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(233,184,64,0.42); }
.qf-submit-note { text-align: center; font-size: 12px; color: rgba(245,240,220,0.28); margin-top: 12px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 72px 60px 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { height: 72px; width: auto; display: block; }
.footer-logo-mark {
  width: 36px; height: 36px; background: var(--gold); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-text {
  font-family: var(--fh); font-size: 20px; font-weight: 800;
  color: var(--cream); letter-spacing: -1px;
}
.footer-tagline { font-size: 14px; color: rgba(245,240,220,0.4); line-height: 1.75; margin-bottom: 22px; max-width: 280px; }
.footer-copy-lg {
  font-size: 14px;
  color: rgba(245,240,220,0.44);
  line-height: 1.8;
  max-width: 320px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: rgba(245,240,220,0.55);
  transition: color 0.2s; font-weight: 500;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { color: var(--gold); flex-shrink: 0; }
.footer-col h4 {
  font-family: var(--fh); font-size: 13px; font-weight: 800;
  color: var(--cream); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px; color: rgba(245,240,220,0.45); transition: color 0.2s; font-weight: 500;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: rgba(245,240,220,0.25); font-weight: 500; }
.footer-sign { font-size: 12px; color: rgba(233,184,64,0.4); font-style: italic; }

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
#btt {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 18px rgba(233,184,64,0.4);
  opacity: 0; pointer-events: none; transition: all 0.3s;
  border: none;
}
#btt.visible { opacity: 1; pointer-events: all; }
#btt:hover { transform: translateY(-3px); }
#btt svg { color: var(--ink); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 80px 36px; }
  #nav { padding: 0 36px; }
  #footer { padding: 60px 36px 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 36px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .addons-layout { grid-template-columns: 1fr; }
  .builder-box { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .area-layout { grid-template-columns: 1fr; }
  .community-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .org-dogs-row { grid-template-columns: 1fr; }
  .org-connector-founders { grid-template-columns: 1fr; }
  .qf-row { grid-template-columns: 1fr; }
  .quote-form { padding: 32px 24px; }
}
@media (max-width: 768px) {
  :root { --spacing: 72px; }
  section { padding: 72px 24px; }
  #nav { padding: 0 24px; }
  #footer { padding: 52px 24px 32px; }
  .nav-links { display: none; }
  .nav-social-mobile { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .ticker-track { overflow-x: auto; }
  .ticker-item { flex-shrink: 0; }
  .area-cities { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2,1fr); }
  .hero-h1 { font-size: 46px; letter-spacing: -2px; }
}


/* ════════════════════════════════════════════════════════════
   HOWLY — POLISH, ANIMATIONS & RESPONSIVE  (v2 clean inject)
════════════════════════════════════════════════════════════ */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ── Reveal animations ──────────────────────────────────── */
@keyframes howly-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in-view {
  animation: howly-rise 0.6s cubic-bezier(.22,1,.36,1) forwards;
}
.reveal.d1.in-view { animation-delay: 0.08s; }
.reveal.d2.in-view { animation-delay: 0.16s; }
.reveal.d3.in-view { animation-delay: 0.24s; }

/* ── Animated gold shimmer on italic headings ───────────── */
@keyframes gold-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.sec-h2 em, .hero-h1 em {
  background: linear-gradient(90deg, var(--gold) 0%, #FDF3B9 40%, var(--gold) 60%, #E7AE29 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s linear infinite;
}

/* ── Nav animated underline ─────────────────────────────── */
@keyframes nav-sweep {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}
#nav { position: relative; }
#nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(233,184,64,0.6) 30%,
    rgba(242,225,134,0.8) 50%, rgba(233,184,64,0.6) 70%, transparent 100%);
  background-size: 300% auto;
  animation: nav-sweep 5s linear infinite;
}

/* ── Hero section background animation ──────────────────── */
@keyframes hero-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.08); }
}
.hero-bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: hero-pulse ease-in-out infinite;
  will-change: transform, opacity;
}

/* ── CTA button glow pulse ──────────────────────────────── */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(233,184,64,0.25); }
  50%       { box-shadow: 0 4px 36px rgba(233,184,64,0.55), 0 0 0 6px rgba(233,184,64,0.08); }
}
.btn-gold { animation: cta-glow 2.5s ease-in-out infinite; }

/* ── Ticker fade edges ───────────────────────────────────── */
.ticker-track-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* ── Card hover lifts ────────────────────────────────────── */
.service-card, .dog-card, .partner-card {
  transition: transform 0.3s cubic-bezier(.22,1,.36,1),
              box-shadow 0.3s cubic-bezier(.22,1,.36,1);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.dog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(233,184,64,0.12), 0 4px 16px rgba(0,0,0,0.08);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.plan-card {
  transition: transform 0.3s cubic-bezier(.22,1,.36,1),
              box-shadow 0.3s cubic-bezier(.22,1,.36,1);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.12);
}

/* ── Dog avatar hover zoom ──────────────────────────────── */
.dog-avatar-wrap img, .chairman-avatar img {
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}
.dog-card:hover .dog-avatar-wrap img,
.chairman-card:hover .chairman-avatar img {
  transform: scale(1.07);
}

/* ── Focus rings ─────────────────────────────────────────── */
.qf-input:focus, .builder-select:focus {
  outline: none;
  border-color: rgba(233,184,64,0.55);
  box-shadow: 0 0 0 3px rgba(233,184,64,0.1);
}

/* ── Floating paw prints — BACKGROUND ONLY, won't cover content ─ */
#paw-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;          /* behind everything */
  overflow: hidden;
}
.fp {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}
@keyframes fp-rise {
  0%   { transform: translateY(0) rotate(var(--rot)) scale(0.6); opacity: 0; }
  12%  { opacity: var(--max-op); }
  88%  { opacity: var(--max-op); }
  100% { transform: translateY(-110vh) rotate(calc(var(--rot) + 180deg)) scale(1); opacity: 0; }
}

/* ── Music player pill — bottom-right, non-intrusive ────── */
#music-pill {
  text-decoration: none;
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 9000;       /* well above content but below no overlays needed */
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(4,16,6,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(233,184,64,0.35);
  border-radius: 50px;
  padding: 9px 16px 9px 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--fb);
  user-select: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
#music-pill:hover { border-color: rgba(233,184,64,0.7); background: rgba(13,40,15,0.95); }
#music-pill .mp-icon { flex-shrink: 0; }
#music-pill .mp-bars {
  display: flex; align-items: flex-end; gap: 2.5px; height: 14px;
}
#music-pill .mp-bars b {
  display: block; width: 3px; border-radius: 2px;
  background: var(--gold); height: 4px;
  transition: height 0.15s;
}
#music-pill.playing .mp-bars b:nth-child(1) { animation: eq 0.7s 0.0s ease-in-out infinite alternate; }
#music-pill.playing .mp-bars b:nth-child(2) { animation: eq 0.7s 0.15s ease-in-out infinite alternate; }
#music-pill.playing .mp-bars b:nth-child(3) { animation: eq 0.7s 0.05s ease-in-out infinite alternate; }
#music-pill.playing .mp-bars b:nth-child(4) { animation: eq 0.7s 0.2s ease-in-out infinite alternate; }
@keyframes eq {
  from { height: 3px; } to { height: 14px; }
}
#music-pill .mp-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
  max-width: 160px; overflow: hidden; text-overflow: ellipsis;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first, polished at every breakpoint
════════════════════════════════════════════════════════════ */

/* ── Tablet landscape 1024-1100px ───────────────────────── */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .addons-layout { gap: 32px; }
  .community-layout { gap: 40px; }
  .area-layout { gap: 40px; }
}

/* ── iPad / tablet 768-900px ─────────────────────────────── */
@media (max-width: 900px) {
  .inner { padding-left: 24px; padding-right: 24px; }

  /* Nav */
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12.5px; }

  /* Hero */
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .hero-media { display: none; }
  .hero-badge, .hero-ctas, .hero-stats { justify-content: center; }
  .hero-h1, .hero-p, .hero-eyebrow { text-align: center; }
  .hero-h1 { font-size: clamp(34px, 7vw, 54px); }
  .hero-content { text-align: center; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Plans */
  .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Add-ons */
  .addons-layout { grid-template-columns: 1fr; }
  .builder-box { position: static; margin-top: 28px; }

  /* Org — stack dogs vertically */
  .org-dogs-row { flex-wrap: wrap; justify-content: center; gap: 18px; }
  .dog-card { flex: 0 0 calc(50% - 9px); max-width: 320px; }
  .org-founders-row { flex-wrap: wrap; justify-content: center; gap: 18px; }
  .founder-card { flex: 0 0 calc(50% - 9px); max-width: 320px; }

  /* Area */
  .area-layout { grid-template-columns: 1fr; gap: 32px; }
  .area-map-wrap { display: none; }
  .area-map-placeholder { max-width: 340px; margin: 0 auto; }
  .area-cities { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Why */
  .why-layout { grid-template-columns: 1fr; gap: 28px; }

  /* Community */
  .community-layout { grid-template-columns: 1fr; gap: 32px; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; }

  /* Quote */
  .quote-layout { grid-template-columns: 1fr; }
  .qf-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .quote-cta-card { grid-template-columns: 1fr; padding: 30px 22px; }
}

/* ── Mobile 640px ────────────────────────────────────────── */
@media (max-width: 640px) {
  /* ── Base ── */
  .inner { padding-left: 16px; padding-right: 16px; }
  section { padding: 56px 0; }

  /* ── Nav ── */
  .nav-links { display: none !important; }
  .nav-social-mobile { display: flex !important; }
  .nav-hamburger { display: flex !important; }
  .nav-links.mob-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px 24px;
    gap: 0; z-index: 9997;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    animation: howly-rise 0.28s ease forwards;
  }
  .nav-links.mob-open li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.mob-open a { display: block; padding: 13px 0; font-size: 15px; color: var(--cream); }
  .nav-logo img { height: 34px !important; }
  .nav-social-mobile { margin-right: 10px; gap: 8px; }
  .nav-social-mobile a { width: 32px; height: 32px; }
  .nav-cta { font-size: 12px; padding: 8px 12px; }
  #nav .inner { height: 58px; }

  /* ── Hero ── */
  #hero { padding-top: 58px; }
  .hero-h1 { font-size: clamp(26px, 9vw, 40px); letter-spacing: -1.5px; }
  .hero-p { font-size: 15px; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 10px; }
  .hero-ctas a { width: 100%; justify-content: center; font-size: 14px; padding: 13px 20px; }
  .hero-stats { flex-wrap: wrap; gap: 12px 20px; justify-content: center; }
  .hero-stat-num { font-size: 28px; }
  .hero-badge { flex-wrap: wrap; font-size: 11px; }

  /* ── Ticker ── */
  .ticker-item { gap: 10px; font-size: 12px; padding: 13px 16px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 18px 16px; }
  .sc-title { font-size: 15px; }
  .sc-desc { font-size: 13px; }

  /* ── Plans ── */
  .plans-grid { grid-template-columns: 1fr; gap: 12px; }
  .plan-card { padding: 22px 18px; }
  .plan-name { font-size: 16px; }
  .freq-toggle { gap: 4px; padding: 4px; }
  .freq-btn { padding: 7px 16px; font-size: 12px; }

  /* ── Add-ons ── */
  .addons-layout { grid-template-columns: 1fr; }
  .builder-box { position: static; margin-top: 20px; padding: 22px 18px; }
  .addon-row { padding: 12px 14px; gap: 12px; }
  .addon-ico { width: 34px; height: 34px; flex-shrink: 0; }
  .addon-name { font-size: 13px; }
  .addon-note { font-size: 12px; }
  .addon-price { font-size: 13px; white-space: nowrap; }

  /* ── Org chart ── */
  .chairman-card { padding: 22px 16px; }
  .org-dogs-row { flex-direction: column; align-items: center; gap: 12px; }
  .org-founders-row { flex-direction: column; align-items: center; gap: 12px; }
  .dog-card { width: 100%; max-width: 100%; flex: none; padding: 20px 16px; }
  .founder-card { width: 100%; max-width: 100%; flex: none; }
  .org-label { font-size: 10px; margin: 12px 0; }
  .org-connector-v { height: 28px; }

  /* ── Why ── */
  .why-layout { grid-template-columns: 1fr; gap: 24px; }

  /* ── Area ── */
  .area-layout { grid-template-columns: 1fr; gap: 28px; }
  .area-cities { grid-template-columns: 1fr 1fr; gap: 8px; }
  .area-map-placeholder { max-width: 280px; margin: 0 auto; }

  /* ── Community ── */
  .community-layout { grid-template-columns: 1fr; gap: 24px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .partner-card { padding: 12px 8px; }
  .partner-name { font-size: 11px; }
  .discount-box { padding: 22px 18px; }

  /* ── FAQ ── */
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-q { font-size: 14px; padding: 14px 0; }
  .faq-a { font-size: 13px; }

  /* ── Quote ── */
  .quote-layout { grid-template-columns: 1fr; }
  .qf-row { grid-template-columns: 1fr; gap: 12px; }
  .qf-input { font-size: 15px; padding: 12px 14px; }
  .qf-label { font-size: 11px; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .quote-cta-card { padding: 26px 18px; border-radius: 22px; }
  .quote-cta-card .sec-h2 { max-width: none; }
  .quote-cta-card .hero-actions { width: 100%; justify-content: stretch; }
  .quote-cta-card .hero-actions a { width: 100%; justify-content: center; }
  .footer-logo img { height: 38px !important; }
  #footer { padding: 44px 16px 28px; }

  /* ── Music pill ── */
  #music-pill { bottom: 14px; left: 14px; padding: 7px 11px 7px 9px; }
  #music-pill .mp-label { font-size: 9px; letter-spacing: 0.8px; }
  #music-pill .mp-bars { height: 12px; }

  /* Misc mobile polish */
  .btn-gold, .btn-ghost { font-size: 14px; }
  .addon-info { min-width: 0; flex: 1; }
  .addon-price { flex-shrink: 0; font-size: 12px; }
  .disc-pill { font-size: 11px; padding: 5px 12px; }
  .eyebrow { font-size: 10px; }
  .sec-h2 { font-size: clamp(26px, 7vw, 38px); }
  .sec-p { font-size: 14px; }
  .dog-name { font-size: 16px; }
  .dog-bio { font-size: 13px; line-height: 1.65; }
  .founder-name { font-size: 18px; }
  .founder-bio { font-size: 13px; }
  .faq-a p, .faq-a { font-size: 13.5px; line-height: 1.7; }
}

/* ── Small phones 380px ──────────────────────────────────── */
@media (max-width: 640px) {
  #expansion .inner > div:nth-child(2) {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}
@media (max-width: 380px) {
  .hero-h1 { font-size: 26px; }
  .partner-grid { grid-template-columns: 1fr; }
  .area-cities { grid-template-columns: 1fr; }
}

/* ── Hamburger button ────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: all 0.28s cubic-bezier(.22,1,.36,1);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── Footer social icons ─────────────────────────────── */
.footer-bot {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 40px; text-align: center;
}
.footer-socials {
  display: flex; align-items: center; gap: 12px;
}
.social-icon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(233,184,64,0.2);
  border-radius: 50px;
  color: rgba(245,240,220,0.6);
  font-family: var(--fb); font-size: 12px; font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(.22,1,.36,1);
}
.social-icon:hover {
  background: rgba(233,184,64,0.1);
  border-color: rgba(233,184,64,0.5);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-copy {
  font-size: 12px; color: rgba(245,240,220,0.28);
  margin: 0;
}
.footer-sign {
  font-size: 12px; color: rgba(245,240,220,0.2);
  font-style: italic; margin: 0;
}
@media (max-width: 480px) {
  .footer-socials { flex-direction: column; gap: 8px; width: 100%; }
  .social-icon { justify-content: center; width: 100%; }
}


/* V2 multipage additions */
.nav-links a.is-current, .mobile-nav a.is-current { color: var(--cream); }
.page-hero {
  padding-top: 120px;
  padding-bottom: 44px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
}
.page-h1 {
  font-family: var(--fh);
  color: var(--cream);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -2px;
  margin: 10px 0 16px;
}
.page-hero-p { max-width: 680px; }
.page-hero-card .wc-card {
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(233,184,64,0.16);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}
.page-hero-card .wc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(233,184,64,0.14), transparent 45%);
  pointer-events: none;
}
.wc-title {
  font-family: var(--fh);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--cream);
  margin: 8px 0 14px;
  position: relative;
  z-index: 1;
}
.page-hero-card .wc-quote {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  color: rgba(245,240,220,0.76);
  margin-bottom: 0;
}
.page-cta { padding: 0 0 90px; background: var(--off); }
.cta-panel {
  background: linear-gradient(135deg, rgba(7,20,10,0.98), rgba(11,29,15,0.98));
  border: 1px solid rgba(233,184,64,0.18);
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}
.contact-strip { padding: 0 0 90px; background: var(--off); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(4,16,6,0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}
.contact-icon {
  width: 44px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  background: rgba(233,184,64,0.12);
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.contact-card h3 {
  font-family: var(--fh);
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--text);
}
.contact-card p {
  margin: 0 0 16px;
  color: rgba(11,18,13,0.72);
  font-size: 14px;
}
.contact-card a {
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 14px;
}
@media (max-width: 960px) {
  .page-hero-inner, .cta-panel, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding-top: 104px; }
  .page-h1 { font-size: clamp(34px, 9vw, 54px); }
  .cta-panel { padding: 24px; }
  .contact-card { padding: 22px; }
}


/* ── Quote CTA section ───────────────────────────────────── */
.quote-cta-section {
  background: #f4f2ed;
}
.quote-cta-card {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #041006 0%, #092111 45%, #041006 100%);
  border: 1px solid rgba(233,184,64,0.18);
  border-radius: 28px;
  padding: 42px 36px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
}
.quote-cta-section { overflow: hidden; }
.quote-cta-card {
  grid-template-columns: minmax(0, 1.18fr) auto;
  overflow: hidden;
}
.quote-cta-card .sec-h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  max-width: 12.5ch;
}
.quote-cta-card .sec-p {
  color: rgba(245,240,220,0.68);
}
.quote-cta-card .hero-actions {
  margin-bottom: 0;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  max-width: 100%;
  flex: 0 0 auto;
}
.quote-cta-card .hero-actions a {
  max-width: 100%;
}



@media (min-width: 901px) {
  .quote-cta-card {
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 24px;
  }
  .quote-cta-card .hero-actions {
    min-width: 330px;
  }
}

/* Final polish fixes */
@keyframes howly-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
#ticker {
  position: relative;
}
#ticker .ticker-track {
  display: inline-flex;
  width: max-content;
  min-width: 100%;
  align-items: stretch;
  animation: howly-ticker-scroll 28s linear infinite;
  will-change: transform;
}
#ticker:hover .ticker-track {
  animation-play-state: paused;
}
#ticker .ticker-item {
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  #ticker .ticker-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  #ticker .ticker-track {
    overflow: visible;
    animation-duration: 24s;
  }
  #why-howly .service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #why-howly .service-badge {
    position: static;
    margin: 0 0 12px;
    max-width: none;
    display: inline-flex;
    align-self: flex-start;
  }
  #why-howly .sc-title {
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .quote-cta-card {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 28px 18px;
  }
  .quote-cta-card .sec-h2 {
    max-width: none;
    font-size: clamp(30px, 11vw, 48px);
    line-height: 1.02;
  }
  .quote-cta-card .sec-p {
    max-width: none;
    font-size: 14px;
  }
  .quote-cta-card .hero-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 12px;
  }
  .quote-cta-card .hero-actions a {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}


.quote-prefill{
  margin-bottom:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(233,184,64,0.18);
  background:rgba(233,184,64,0.08);
}
.quote-prefill-eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(233,184,64,0.9);
  margin-bottom:6px;
}
.quote-prefill-title{
  font-family:var(--font-display);
  font-size:clamp(18px,2vw,24px);
  line-height:1.05;
  color:var(--cream);
  margin-bottom:6px;
}
.quote-prefill-copy{
  color:rgba(245,240,220,0.7);
  font-size:14px;
  line-height:1.6;
}


/* Next sprint polish */
.cta-panel .sec-h2.lt, .cta-panel .sec-h2 { color: var(--warm); }
.cta-panel .sec-h2 em { color: var(--gold); }
.cta-panel .sec-p.lt, .cta-panel .sec-p { color: rgba(245,240,220,0.72); }
.quote-cta-card .sec-h2 em { display: inline-block; padding-bottom: 0.08em; }
.nav-links { gap: 16px; }
.nav-links a { font-size: 12.8px; }

@media (max-width: 640px) {
  .service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .service-badge {
    position: static;
    margin: 0 0 12px;
    max-width: none;
    display: inline-flex;
    align-self: flex-start;
  }
  .sc-title {
    width: 100%;
    padding-right: 0;
  }
}


/* Growth sprint local pages + referral polish */
.footer-top {
  grid-template-columns: 1.35fr repeat(4, minmax(140px, 1fr));
}
.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.city-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(191,142,22,0.30);
  background: linear-gradient(180deg, rgba(233,184,64,0.16) 0%, rgba(233,184,64,0.08) 100%);
  color: var(--gold-dk);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12px;
  box-shadow: 0 12px 24px rgba(191,142,22,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.city-link-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(191,142,22,0.52);
  background: linear-gradient(180deg, rgba(233,184,64,0.94) 0%, rgba(233,184,64,0.86) 100%);
  box-shadow: 0 18px 32px rgba(191,142,22,0.18), 0 8px 16px rgba(0,0,0,0.08);
  color: var(--ink);
}
.city-link-pill svg {
  color: currentColor;
  flex-shrink: 0;
}
.search-pills-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
#popular-searches { background: var(--off); }
.combo-links { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.combo-link-pill {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid rgba(191,142,22,0.28);
  background: linear-gradient(180deg, rgba(233,184,64,0.14) 0%, rgba(233,184,64,0.07) 100%);
  color: var(--gold-dk);
  font-size:12.5px;
  font-weight:800;
  box-shadow: 0 10px 22px rgba(191,142,22,0.07), inset 0 1px 0 rgba(255,255,255,0.46);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.combo-link-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(191,142,22,0.5);
  background: linear-gradient(180deg, rgba(233,184,64,0.94) 0%, rgba(233,184,64,0.86) 100%);
  color: var(--ink);
  box-shadow: 0 18px 32px rgba(191,142,22,0.18), 0 8px 16px rgba(0,0,0,0.08);
}

.page-cta .city-link-pill {
  background: rgba(255,255,255,0.05);
  border-color: rgba(233,184,64,0.26);
  color: rgba(245,240,220,0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.page-cta .city-link-pill:hover {
  color: var(--ink);
}
#popular-searches .city-link-pill, #popular-searches .combo-link-pill {
  min-height: 42px;
}
#popular-searches {
  padding-top: 96px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .city-links, .combo-links { gap: 8px; }
  .city-link-pill, .combo-link-pill { width: 100%; justify-content: center; }
}


/* Fortune-pass UI polish */
.btn-gold {
  box-shadow: 0 16px 34px rgba(233,184,64,0.28), 0 8px 18px rgba(0,0,0,0.16);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(233,184,64,0.36), 0 12px 24px rgba(0,0,0,0.18);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(233,184,64,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-ghost:hover {
  border-color: rgba(233,184,64,0.52);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.08);
}
.plan-cta {
  background: linear-gradient(180deg, rgba(233,184,64,0.24) 0%, rgba(233,184,64,0.12) 100%);
  border-color: rgba(233,184,64,0.44);
  color: var(--gold-lt);
  box-shadow: 0 14px 30px rgba(9,22,9,0.22), inset 0 1px 0 rgba(255,255,255,0.1);
}
.plan-cta:hover {
  box-shadow: 0 18px 38px rgba(233,184,64,0.30), 0 10px 20px rgba(0,0,0,0.18);
}
.city-link-pill,
.combo-link-pill {
  border-color: rgba(191,142,22,0.42);
  background: linear-gradient(180deg, rgba(233,184,64,0.26) 0%, rgba(233,184,64,0.14) 100%);
  color: #8f6510;
  box-shadow: 0 16px 30px rgba(191,142,22,0.10), inset 0 1px 0 rgba(255,255,255,0.62);
}
#popular-searches .city-link-pill,
#popular-searches .combo-link-pill {
  min-height: 44px;
}
.service-search-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252,250,245,0.98) 100%);
  border: 1px solid rgba(9,22,9,0.06);
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(0,0,0,0.06);
  padding: 32px;
}
@media (max-width: 768px) {
  .service-search-shell { padding: 22px 18px; border-radius: 22px; }
}
.referral-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.referral-path {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,20,10,0.98) 0%, rgba(10,26,13,0.98) 100%);
  border: 1px solid rgba(233,184,64,0.18);
  border-radius: 26px;
  padding: 24px 22px;
  box-shadow: 0 20px 42px rgba(0,0,0,0.12);
}
.referral-path::before {
  content: '';
  position: absolute;
  inset: auto -20px -40px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(233,184,64,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.referral-path-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(233,184,64,0.12);
  border: 1px solid rgba(233,184,64,0.18);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.referral-path h3 {
  font-family: var(--fh);
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.9px;
  color: var(--cream);
  margin: 0 0 10px;
}
.referral-path p {
  margin: 0;
  color: rgba(245,240,220,0.66);
  font-size: 14px;
  line-height: 1.75;
}
.partner-strip-note {
  margin: 16px 0 0;
  color: rgba(245,240,220,0.54);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 460px;
}
.partner-glow-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,20,10,0.98) 0%, rgba(10,26,13,0.98) 100%);
  border: 1px solid rgba(233,184,64,0.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 46px rgba(0,0,0,0.12);
}
.partner-glow-shell::after {
  content:'';
  position:absolute;
  inset:-40px -20px auto auto;
  width:220px;
  height:220px;
  background: radial-gradient(circle, rgba(233,184,64,0.12) 0%, transparent 72%);
  pointer-events:none;
}
.contact-form-grid {
  display:grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
}
.contact-form-card,
.newsletter-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,20,10,0.98) 0%, rgba(10,26,13,0.98) 100%);
  border: 1px solid rgba(233,184,64,0.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 46px rgba(0,0,0,0.12);
}
.contact-form-card::before,
.newsletter-card::before {
  content:'';
  position:absolute;
  right:-30px;
  top:-50px;
  width:200px;
  height:200px;
  background: radial-gradient(circle, rgba(233,184,64,0.12) 0%, transparent 72%);
  pointer-events:none;
}
.contact-form-card .qf-label,
.newsletter-card .qf-label { color: var(--gold); }
.contact-form-card .qf-input,
.contact-form-card .qf-select,
.contact-form-card .qf-textarea,
.newsletter-card .qf-input,
.newsletter-card .qf-select,
.newsletter-card .qf-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--cream);
}
.contact-form-card .sec-h2,
.newsletter-card .sec-h2 { color: var(--warm); }
.contact-form-card .sec-h2 em,
.newsletter-card .sec-h2 em { color: var(--gold); }
.contact-form-card .sec-p,
.newsletter-card .sec-p { color: rgba(245,240,220,0.72); }
.form-inline-note {
  margin-top: 12px;
  color: rgba(245,240,220,0.36);
  font-size: 12px;
  line-height: 1.65;
}
.wordmark-glow {
  width: min(340px, 72%);
  opacity: 0.13;
  position: absolute;
  right: -20px;
  bottom: -10px;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(233,184,64,0.12));
}
.form-success-note {
  display:none;
  color: rgba(245,240,220,0.72);
  font-size: 13px;
  margin-top: 12px;
}
.hero-note-row {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.hero-note-pill {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(233,184,64,0.18);
  background:rgba(233,184,64,0.08);
  color:rgba(245,240,220,0.78);
  font-size:12px;
  font-weight:700;
}
.hero-note-pill svg { color: var(--gold); }
.cta-wordmark-bg {
  position:absolute;
  right:20px;
  bottom:-14px;
  width:min(320px,45%);
  opacity:0.10;
  pointer-events:none;
}
@media (max-width: 960px) {
  .referral-paths,
  .contact-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .referral-path { padding: 20px 18px; border-radius: 22px; }
  .referral-path h3 { font-size: 24px; }
  .contact-form-card,
  .newsletter-card { padding: 22px 18px; border-radius: 24px; }
  .wordmark-glow,
  .cta-wordmark-bg { width: 220px; opacity: 0.09; }
}


/* Final stability + premium polish pass */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body, section, nav, footer {
  overflow-x: hidden;
}
.inner,
.footer-inner,
.hero-inner,
.page-hero-inner,
.community-layout,
.area-layout,
.faq-layout,
.footer-top,
.contact-grid,
.contact-form-grid,
.referral-paths,
.partner-grid,
.services-grid,
.plans-grid,
.quote-cta-card,
.cta-panel {
  min-width: 0;
}
.footer-top > *,
.page-hero-inner > *,
.community-layout > *,
.area-layout > *,
.faq-layout > *,
.contact-grid > *,
.contact-form-grid > *,
.referral-paths > *,
.partner-grid > *,
.services-grid > *,
.plans-grid > * {
  min-width: 0;
}
.hero-h1,
.page-h1,
.sec-h2,
.wc-title,
.referral-path h3,
.footer-tagline,
.sec-p,
.partner-strip-note,
.footer-contact span,
.footer-contact a,
.footer-col ul li a {
  overflow-wrap: anywhere;
}
.hero-proof {
  margin-top: 30px;
}
.hero-note-row {
  margin-top: 22px;
}
.proof-text {
  font-size: 13px;
  color: rgba(245,240,220,0.52);
}
.proof-text strong {
  color: rgba(245,240,220,0.9);
}
.area-city {
  background: linear-gradient(180deg, rgba(233,184,64,0.18) 0%, rgba(233,184,64,0.08) 100%);
  border: 1px solid rgba(233,184,64,0.28);
  color: rgba(245,240,220,0.92);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
}
.area-city:hover {
  border-color: rgba(233,184,64,0.56);
  background: linear-gradient(180deg, rgba(233,184,64,0.98) 0%, rgba(233,184,64,0.9) 100%);
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(233,184,64,0.24), 0 10px 18px rgba(0,0,0,0.18);
}
.plan-cta {
  background: linear-gradient(180deg, rgba(233,184,64,0.96) 0%, rgba(214,158,34,0.94) 100%);
  border-color: rgba(233,184,64,0.76);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(233,184,64,0.22), 0 10px 20px rgba(0,0,0,0.18);
}
.plan-cta:hover {
  background: linear-gradient(180deg, rgba(245,206,110,1) 0%, rgba(233,184,64,0.98) 100%);
  color: var(--ink);
}
.city-link-pill,
.combo-link-pill {
  border-color: rgba(191,142,22,0.5);
  background: linear-gradient(180deg, rgba(233,184,64,0.26) 0%, rgba(233,184,64,0.16) 100%);
  color: #7b5710;
  box-shadow: 0 18px 30px rgba(191,142,22,0.12), inset 0 1px 0 rgba(255,255,255,0.68);
}
.city-link-pill:hover,
.combo-link-pill:hover {
  box-shadow: 0 20px 36px rgba(191,142,22,0.2), 0 10px 18px rgba(0,0,0,0.08);
}
.partner-glow-shell .sec-h2,
.partner-glow-shell .sec-h2.lt,
.page-cta .partner-glow-shell .sec-h2 {
  color: var(--warm);
}
.partner-glow-shell .sec-h2 em,
.page-cta .partner-glow-shell .sec-h2 em {
  color: var(--gold);
}
.partner-glow-shell .sec-p {
  color: rgba(245,240,220,0.72);
}
.referral-path p,
.partner-strip-note {
  color: rgba(245,240,220,0.72);
}
.footer-tagline {
  color: rgba(245,240,220,0.62);
  max-width: 340px;
}
.footer-top {
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }
  .footer-brand,
  .footer-col,
  .contact-card,
  .service-search-shell,
  .partner-glow-shell,
  .referral-path,
  .contact-form-card,
  .newsletter-card,
  .cta-panel,
  .quote-cta-card {
    width: 100%;
    max-width: 100%;
  }
  .area-cities {
    grid-template-columns: 1fr;
  }
  .footer-contact a,
  .footer-contact span,
  .footer-col ul li a {
    word-break: break-word;
  }
  #footer {
    padding-right: 18px;
    padding-left: 18px;
  }
}
@media (max-width: 640px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-top,
  .contact-form-grid,
  .referral-paths,
  .faq-layout,
  .area-layout,
  .community-layout {
    grid-template-columns: 1fr !important;
  }
  .hero-h1,
  .page-h1,
  .sec-h2 {
    font-size: clamp(28px, 10vw, 42px);
    letter-spacing: -1.2px;
  }
  .hero-note-row {
    gap: 8px;
  }
  .hero-note-pill {
    font-size: 11px;
    padding: 9px 12px;
  }
  .area-city,
  .city-link-pill,
  .combo-link-pill,
  .plan-cta,
  .btn-gold,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}


/* Mobile pricing + builder overflow hardening */
@media (max-width: 768px) {
  #plans,
  #addons,
  #package-builder,
  .plans-grid,
  .plan-card,
  .addons-layout,
  .addon-grid,
  .builder-box,
  .builder-field,
  .builder-checks,
  .builder-summary,
  .builder-select,
  .bs-row {
    min-width: 0;
    max-width: 100%;
  }
  .builder-check {
    min-width: 0;
  }
  .builder-check .bct {
    min-width: 0;
    display: block;
    overflow-wrap: anywhere;
  }
  .bs-row {
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
  }
  .bs-val {
    max-width: 100% !important;
    text-align: left !important;
  }
}

@media (max-width: 560px) {
  .addon-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: flex-start;
  }
  .addon-info,
  .addon-name,
  .addon-note {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .addon-price {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
    white-space: normal;
    font-size: 12px;
  }
  .builder-box {
    padding: 20px 16px;
  }
  .builder-select {
    max-width: 100%;
    min-width: 0;
    font-size: 16px;
    padding-left: 14px;
    padding-right: 36px;
  }
  .builder-check {
    align-items: flex-start;
  }
  .builder-check .bct {
    line-height: 1.42;
  }
  .plans-note,
  .builder-sub,
  .bs-note,
  .sec-p,
  .plan-desc {
    overflow-wrap: anywhere;
  }
}
