*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 :root {
  --navy:   #1a2d4f;
  --navy2:  #243a60;
  --gold:   #e8a020;
  --gold2:  #f5c842;
  --cream:  #f6f0e4;
  --white:  #ffffff;
  --green:  #3cb85a;
  --red:    #e53935;
  --blue:   #1e88e5;
  --purple: #8e24aa;
  --orange: #fb8c00;
  --shadow: 0 8px 32px rgba(26,45,79,.13);
}
 html { scroll-behavior: smooth; }

[hidden] { display: none !important; }

 body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

.eyebrow--gold2 { color: var(--gold2); }
.text-gold { color: var(--gold); }
 /* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,45,79,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
}
.nav-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.24));
}
.nav-logo-text {
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 24px !important;
  padding: 9px 20px !important;
  box-shadow: 0 3px 12px rgba(232,160,32,.4);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,160,32,.5) !important; background: var(--gold) !important; }
 /* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.hamburger:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
.nav-mobile { display: none; }
 @media(max-width:700px){
  .nav-logo { gap: 10px; }
  .nav-logo-mark {
    width: 50px;
    height: 50px;
  }
  .nav-logo-text { font-size: 0.92rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(26,45,79,.98);
    padding: 16px 24px 24px;
    list-style: none;
  }
  .nav-mobile a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background .2s;
  }
  .nav-mobile a:hover { background: rgba(255,255,255,.1); }
  .nav-mobile .nav-cta { background: var(--gold); color: var(--navy) !important; text-align: center; margin-top: 8px; }
}
 /* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: var(--navy);
  padding-top: 0;
  position: relative;
  overflow: hidden;
  display: block;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 60%, #2a4a7a 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 20%, #1f3a6a 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 86px 40px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero-text {
  position: relative;
  padding-left: 0;
  min-width: 0;
}
.icon-inline {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-inline-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  margin-top: 28px;
  opacity: 0.95;
}
.hero-location .icon-inline {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.9;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(232,160,32,.45);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary .icon-inline {
  width: 1rem;
  height: 1rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232,160,32,.55); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.stat { color: #fff; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
 /* hero image */
.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* decorative circle centred on the image column */
.hero-image::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border: 2px dashed rgba(232,160,32,.22);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -44%);
  pointer-events: none;
  z-index: 0;
}
.hero-image img {
  max-height: 64vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.5));
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.hero-dog-placeholder {
  width: 360px;
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-dog-placeholder .dog-emoji {
  font-size: 10rem;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.4));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-dog-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  font-style: italic;
}
 /* paw prints decoration */
.paw-trail {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0.15;
  font-size: 1.2rem;
  z-index: 1;
}
 .hero-wave {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -2px;
  position: relative;
  z-index: 1;
}
.section-wave {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -2px;
}
.section-wave--navy { background: var(--navy); }
.section-wave--white { background: var(--white); }
 @media(max-width:860px){
  .hero-inner { grid-template-columns: minmax(0, 1fr); padding: 104px 24px 24px; gap: 12px; }
  .hero-text { text-align: left; }
  .hero-sub { margin: 0 0 32px; max-width: 100%; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; gap: 24px; }
  .hero-image { min-height: 260px; justify-content: center; }
  .hero-image::before {
    width: 260px;
    height: 260px;
    left: 50%;
    transform: translate(-50%, -44%);
  }
  .hero-image img { max-height: 280px; }
}
 @media(max-width:520px){
  .hero-text { text-align: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-location { justify-content: center; }
  .hero-location {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    margin-top: 22px;
  }
  .hero-wave { height: 46px; }
  .section-wave { height: 46px; }
  .hero-image { min-height: 220px; }
  .hero-image::before {
    width: 220px;
    height: 220px;
    left: 50%;
    transform: translate(-50%, -44%);
  }
  .hero-image img { max-height: 240px; }
}
 /* ═══════════════════════════════════════
   HOOK QUESTION
═══════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
 /* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features {
  background: var(--white);
  padding: 60px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
}
.section-header h2 span { color: var(--gold); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.card {
  background: var(--cream);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity .25s;
}
.card:nth-child(1)::before { background: var(--red); }
.card:nth-child(2)::before { background: var(--orange); }
.card:nth-child(3)::before { background: var(--blue); }
.card:nth-child(4)::before { background: var(--green); }
.card:hover { border-color: rgba(232,160,32,.3); transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--navy);
}
.card p { font-size: 0.92rem; color: #667; line-height: 1.65; }
 /* ═══════════════════════════════════════
   STEAM STRIP
═══════════════════════════════════════ */
.steam-section {
  background: var(--navy);
  padding: 56px 24px;
}
.steam-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.steam-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.steam-text h2 span { color: var(--gold); }
.steam-text p {
  font-size: 0.98rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.steam-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.steam-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.steam-bubble {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.b-s { background: var(--red); }
.b-t { background: var(--orange); }
.b-e { background: var(--green); }
.b-a { background: var(--blue); }
.b-m { background: var(--purple); }
.steam-row-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.steam-row-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
}
@media(max-width:640px){
  .steam-inner { grid-template-columns: 1fr; gap: 40px; }
}
 /* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how {
  background: var(--cream);
  padding: 56px 24px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  opacity: .3;
}
.step {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(26,45,79,.25);
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1rem; font-weight: 900; margin-bottom: 10px; color: var(--navy); }
.step p { font-size: 0.88rem; color: #667; line-height: 1.6; }
@media(max-width:600px){ .steps::before { display: none; } }
 /* ═══════════════════════════════════════
   DETAILS
═══════════════════════════════════════ */
.details {
  background: var(--white);
  padding: 56px 24px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.detail-box {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.detail-icon {
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  opacity: 0.92;
  flex-shrink: 0;
}
.detail-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-box h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 6px;
}
.detail-box p { font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.detail-box small { font-weight: 400; font-size: 0.85rem; color: #888; }
 /* ═══════════════════════════════════════
   NEWTON SECTION
═══════════════════════════════════════ */
.newton-section {
  background: linear-gradient(135deg, #f0e8d8 0%, #e8dcc8 100%);
  padding: 60px 24px;
  overflow: hidden;
}
.newton-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.newton-text { order: 2; }
.newton-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.newton-text h2 span { color: var(--gold); }
.newton-text p {
  font-size: 1rem;
  color: #5a6478;
  line-height: 1.75;
  margin-bottom: 14px;
}
.newton-why {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newton-why li {
  padding-left: 30px;
  position: relative;
  font-size: 0.95rem;
  color: #5a6478;
  line-height: 1.65;
}
.newton-why li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.8rem;
}
.newton-why li strong {
  color: var(--navy);
  font-weight: 700;
}
.newton-img { order: 1; text-align: center; }
.newton-img img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(26,45,79,.2));
  animation: float 5s ease-in-out infinite;
}
.newton-img .dog-placeholder {
  font-size: 9rem;
  animation: float 5s ease-in-out infinite;
}
@media(max-width:720px){
  .newton-inner { grid-template-columns: 1fr; }
  .newton-img { order: 1; }
  .newton-text { order: 2; text-align: center; }
}
 /* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */ .cta {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '🔍';
  position: absolute;
  font-size: 18rem;
  opacity: .03;
  right: -3rem;
  top: -2rem;
  pointer-events: none;
}
.cta::after {
  content: '🐾';
  position: absolute;
  font-size: 14rem;
  opacity: .04;
  left: -2rem;
  bottom: -3rem;
  pointer-events: none;
}
.cta h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  max-width: 620px;
  margin: 0 auto 18px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.cta h2 span { color: var(--gold); }
.cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta .btn-primary { position: relative; z-index: 1; font-size: 1.05rem; padding: 17px 40px; }
.cta-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  position: relative;
  z-index: 1;
}
 /* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #0f1c30;
  color: rgba(255,255,255,.4);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255,255,255,.7);
}
.footer-logo span { color: var(--gold); }
footer p { font-size: 0.82rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 0.82rem; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.75); }
