/* =============================================
   ONE DOG TRAINER — Main Stylesheet
   ============================================= */

:root {
  --navy: #1B3A6B;
  --navy-dark: #122847;
  --amber: #F5A623;
  --amber-dark: #D4891A;
  --white: #ffffff;
  --off-white: #F8F9FA;
  --gray-light: #e9ecef;
  --gray: #6c757d;
  --dark: #1a1a1a;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn--primary { background: var(--amber); color: var(--dark); }
.btn--primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--nav { background: var(--amber); color: var(--dark); padding: 8px 20px; font-size: 0.9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.1rem; }
.btn--xl { padding: 20px 48px; font-size: 1.2rem; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 16px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--navy); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 100px 0 80px;
}
.hero__badge {
  display: inline-block;
  background: rgba(245,166,35,0.2);
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1.2rem;
  max-width: 640px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
}
.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
}
.stat__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section--light { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--cta { text-align: center; padding: 100px 0; }
.section--cta h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.section--cta p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.section__header { text-align: center; margin-bottom: 56px; }
.section__header h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.section__header p { font-size: 1.1rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section--dark .section__header p { color: rgba(255,255,255,0.7); }

/* ---- GRID ---- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--5 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.card p { color: var(--gray); line-height: 1.6; font-size: 0.95rem; }

/* ---- STORY ---- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story__tag {
  display: inline-block;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.story__text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 20px; }
.story__text p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 16px; }
.story__text strong { color: var(--amber); }
.story__quote {
  background: rgba(255,255,255,0.07);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px;
}
.story__quote blockquote { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 16px; }
.story__quote cite { color: var(--amber); font-weight: 600; font-size: 0.9rem; font-style: normal; }

/* ---- PROBLEMS GRID ---- */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.problem__item {
  background: var(--off-white);
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.problem__item:hover { border-color: var(--amber); background: #FFF8ED; color: var(--navy); }
.problems__more { text-align: center; }
.problems__more p { color: var(--gray); margin-bottom: 24px; font-style: italic; }

/* ---- SENSES ---- */
.sense__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.sense__card:hover { transform: translateY(-4px); }
.sense__icon { font-size: 2.5rem; margin-bottom: 12px; }
.sense__card h4 { font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sense__card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; margin-bottom: 16px; }
.sense__card a { font-size: 0.85rem; font-weight: 600; color: var(--amber-dark); text-decoration: none; }
.sense__card a:hover { text-decoration: underline; }

/* ---- PRICING ---- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing__card {
  background: var(--off-white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.pricing__card:hover { transform: translateY(-4px); }
.pricing__card--featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.15), var(--shadow-lg);
  transform: scale(1.03);
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing__card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.pricing__price { font-size: 3rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.pricing__card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }

/* ---- BOOKS ---- */
.books__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.book__card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-light);
}
.book__card h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.book__author { color: var(--gray); font-size: 0.85rem; margin-bottom: 16px; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer__logo { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer__brand p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 8px; }
.footer__links h4 { color: var(--white); font-weight: 700; margin-bottom: 16px; }
.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--amber); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; text-align: center; font-size: 0.85rem; }

/* ---- BRAND LOGO (swap 2026-06-11) ---- */
.nav__logo-img { height: 44px; width: 44px; display: block; }
.footer__logo-img { height: 88px; width: 88px; display: block; margin-bottom: 12px; }
@media (max-width: 640px) {
  .nav__logo-img { height: 36px; width: 36px; }
  .footer__logo-img { height: 64px; width: 64px; }
}

/* ---- ABOUT PAGE ---- */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.content-section { max-width: 800px; margin: 0 auto; padding: 80px 24px; }
.content-section h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.content-section p { font-size: 1.05rem; line-height: 1.8; color: #333; margin-bottom: 20px; }
.content-section strong { color: var(--navy); }
.highlight-box { background: var(--off-white); border-left: 4px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; margin: 32px 0; }
.highlight-box p { margin: 0; font-style: italic; font-size: 1.05rem; color: var(--navy); }
.press-section { background: linear-gradient(135deg, #122847 0%, #1B3A6B 100%); color: #fff; padding: 36px 32px; border-radius: var(--radius); margin: 40px 0; box-shadow: 0 8px 24px rgba(18, 40, 71, 0.18); }
.press-section__eyebrow { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: #F5A623; font-weight: 800; margin-bottom: 12px; }
.press-section__headline { color: #fff; font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 800; margin: 0 0 20px; line-height: 1.25; }
.press-section__video { margin-bottom: 20px; }
.press-section__caption { color: rgba(255, 255, 255, 0.85); font-size: 1rem; line-height: 1.6; margin: 0 0 24px; }
.press-section__caption strong { color: #F5A623; }
.press-section__caption em { color: #fff; }
.press-section__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.press-section__cta .btn { font-size: 0.95rem; padding: 12px 22px; }
@media (max-width: 600px) {
  .press-section { padding: 24px 18px; }
  .press-section__cta { flex-direction: column; align-items: stretch; }
  .press-section__cta .btn { text-align: center; }
}
.press-trust-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px; padding: 24px 20px; background: #f8f9fa; border-top: 1px solid #e9ecef; border-bottom: 1px solid #e9ecef; margin: 0; }
.press-trust-bar__label { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: #6c757d; font-weight: 700; }
.press-trust-bar__item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #1B3A6B; font-weight: 600; }
.press-trust-bar__logo { height: 28px; width: auto; opacity: 0.85; }

/* ---- PRESS MARQUEE (top of every page, clickable, scrolling) ---- */
.press-marquee { display: block; background: linear-gradient(90deg, #122847 0%, #1B3A6B 100%); color: #fff; text-decoration: none; padding: 14px 0; overflow: hidden; white-space: nowrap; position: relative; border-bottom: 3px solid #F5A623; }
.press-marquee:hover { background: linear-gradient(90deg, #1B3A6B 0%, #122847 100%); }
.press-marquee__track { display: inline-block; padding-left: 100%; animation: press-marquee-scroll 35s linear infinite; }
.press-marquee__item { display: inline-block; margin-right: 64px; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.5px; color: #fff; }
.press-marquee__item--accent { color: #F5A623; text-transform: uppercase; letter-spacing: 2px; }
.press-marquee__item--sep { color: rgba(255, 255, 255, 0.4); margin-right: 64px; }
.press-marquee:hover .press-marquee__track { animation-play-state: paused; }
@keyframes press-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .press-marquee__track { animation: none; padding-left: 0; }
  .press-marquee__track::after { content: ""; }
  .press-marquee__item { margin: 0 32px; }
}

/* ---- PROBLEMS PAGE ---- */
.problems__list { max-width: 900px; margin: 0 auto; }
.problem__block { background: var(--white); border-radius: var(--radius); padding: 32px; margin-bottom: 20px; box-shadow: var(--shadow); border-left: 4px solid var(--amber); }
.problem__number { font-size: 0.8rem; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.problem__block h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.problem__why, .problem__fix { margin-bottom: 12px; }
.problem__why strong, .problem__fix strong { color: var(--navy); }
.problem__block .btn { margin-top: 16px; }

/* ---- EXPERTISE BLOCK (Why Experts Say This Works) ---- */
.problem__expertise {
  margin-top: 22px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #F0F4FA 0%, #FAFBFD 100%);
  border-left: 3px solid #5A6E8A;
  border-radius: 6px;
  font-size: 0.92rem;
  color: #2A3B55;
  line-height: 1.55;
}
.expertise__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.expertise__badge {
  display: inline-block;
  background: #122847;
  color: #F5A623;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.expertise__source {
  font-size: 0.82rem;
  color: #5A6E8A;
}
.expertise__blurb {
  margin: 0 0 12px 0;
  font-style: italic;
}
.expertise__frameworks {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}
.expertise__frameworks li {
  padding: 8px 0 8px 14px;
  border-left: 2px solid #C5D1E0;
  margin-bottom: 8px;
  position: relative;
}
.framework__name {
  font-weight: 700;
  color: #122847;
  margin-right: 8px;
}
.framework__tag {
  display: inline-block;
  background: #5A6E8A;
  color: white;
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.framework__short {
  margin-top: 4px;
  font-size: 0.88rem;
  color: #3D4D66;
  line-height: 1.5;
}
.expertise__science {
  margin: 0;
  font-size: 0.85rem;
  color: #3D4D66;
  border-top: 1px dashed #C5D1E0;
  padding-top: 10px;
}
.expertise__science strong { color: #122847; }

/* ---- AUDIO PLAYER (Steve's Notes) ---- */
.problem__audio {
  margin-top: 18px;
  padding: 12px 16px;
  background: #FFF8ED;
  border: 1px solid #F5A623;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.audio__badge {
  display: inline-block;
  background: #F5A623;
  color: #122847;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.problem__audio audio {
  flex: 1 1 280px;
  min-width: 240px;
  height: 38px;
}

/* ---- SHOP PAGE ---- */
.shop__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.video__card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 2px solid var(--gray-light); transition: all 0.2s; }
.video__card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video__number { font-size: 0.75rem; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.video__card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.video__card p { font-size: 0.9rem; color: var(--gray); line-height: 1.5; margin-bottom: 20px; }
.video__price { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.coming-soon { display: inline-block; background: var(--gray-light); color: var(--gray); padding: 6px 14px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }

/* ---- LEARN PAGE ---- */
.sense__section { max-width: 800px; margin: 0 auto 60px; padding: 0 24px; scroll-margin-top: 80px; }
.sense__section h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.sense__section .sense__emoji { font-size: 3rem; margin-bottom: 16px; }
.sense__section p { font-size: 1.05rem; line-height: 1.8; color: #333; margin-bottom: 16px; }
.sense__training { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 28px 32px; margin-top: 24px; }
.sense__training h4 { color: var(--amber); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.sense__training p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 12px; }
.sense__training ul { padding-left: 20px; }
.sense__training li { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 8px; line-height: 1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing__card--featured { transform: none; }
  .hero__stats { gap: 24px; }
  .grid--5 { grid-template-columns: repeat(2, 1fr); }
}


/* ---- SOCIAL: Facebook + Reviews (sitewide) ---- */
.odt-social-bar {
  background: linear-gradient(135deg, #122847 0%, #1B3A6B 100%);
  border-top: 3px solid #F5A623;
  padding: 22px 16px;
  text-align: center;
}
.odt-social-bar__inner { max-width: 920px; margin: 0 auto; }
.odt-social-bar__label {
  color: #fff; font-weight: 800; font-size: 1.05rem; margin: 0 0 6px;
}
.odt-social-bar__sub {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0 0 14px; line-height: 1.45;
}
.odt-social-bar__btns {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center;
}
.odt-social-bar__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; border: 2px solid transparent; transition: transform .15s ease, background .15s ease;
}
.odt-social-bar__btn:hover { transform: translateY(-1px); }
.odt-social-bar__btn--fb { background: #1877F2; color: #fff; }
.odt-social-bar__btn--fb:hover { background: #0f5dc6; color: #fff; }
.odt-social-bar__btn--ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.odt-social-bar__btn--ig:hover { filter: brightness(1.06); color: #fff; }
.odt-social-bar__btn--tt { background: #010101; color: #fff; border-color: #25F4EE; }
.odt-social-bar__btn--tt:hover { background: #111; color: #25F4EE; }
.odt-social-bar__btn--star { background: #F5A623; color: #1a1a1a; }
.odt-social-bar__btn--star:hover { background: #e09512; color: #1a1a1a; }
.odt-social-bar__btn--contact { background: #1B3A6B; color: #fff; }
.odt-social-bar__btn--contact:hover { background: #122847; color: #fff; }
.odt-social-bar__btn--pack { background: #2E7D32; color: #fff; }
.odt-social-bar__btn--pack:hover { background: #1B5E20; color: #fff; }
.odt-social-bar__btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.45);
}
.odt-social-bar__btn--ghost:hover { border-color: #F5A623; color: #F5A623; }
.footer__social { margin-top: 16px; }
.footer__social a {
  display: inline-block; margin: 4px 10px 4px 0; color: #F5A623; font-weight: 700;
  text-decoration: none; font-size: 0.92rem;
}
.footer__social a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .odt-social-bar__btn { width: 100%; justify-content: center; }
}
