/* ============================================================
   AMERICA'S BEST DOG TRAINERS — style.css
   Colors, fonts, and layout variables at the top.
   Each section is clearly labeled for easy editing.
   ============================================================ */

/* ═══ VARIABLES ═══════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --navy:          #0b1930;
  --navy-2:        #122040;
  --navy-3:        #1a2e58;
  --red:           #c8102e;
  --red-dark:      #a30d25;
  --gold:          #c9a547;
  --gold-light:    #e2c06a;
  --white:         #ffffff;
  --off-white:     #f2f1ee;
  --light-border:  #e0ddd8;
  --text:          #1c1c2e;
  --text-mid:      #4a4a5e;
  --text-muted:    #7a7a8e;

  /* Typography */
  --font-display:  'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;

  /* Layout */
  --max-w:         1120px;
  --section-v:     96px;
  --radius:        10px;
  --radius-lg:     18px;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 28px rgba(0,0,0,0.13);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.2);
}


/* ═══ RESET & BASE ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }


/* ═══ UTILITIES ═══════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section headers */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }

.section-eyebrow {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 10px;
}
.section-eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400; /* Bebas Neue is inherently bold */
  letter-spacing: 1.5px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 620px;
}
.section-header--center .section-sub { margin: 0 auto; }
.section-sub--light { color: rgba(255,255,255,0.65); }


/* ═══ BUTTONS ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,16,46,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  flex-direction: column;
  gap: 2px;
  padding: 10px 22px;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn__label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  opacity: 0.7;
  font-weight: 500;
  text-transform: uppercase;
}
.btn__number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn--xl  { padding: 18px 40px; font-size: 1.1rem; }
.btn--full { width: 100%; }


/* ═══ NAVIGATION ═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 10px 0;
  transition: box-shadow 0.3s;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-img { height: 44px; width: auto; }

.nav__logo-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-top {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav__logo-bottom {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--white); }

.nav__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  padding: 6px 16px;
  border: 1px solid rgba(201,165,71,0.4);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav__cta:hover {
  border-color: var(--gold);
  background: rgba(201,165,71,0.08);
}
.nav__cta-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-weight: 700;
}
.nav__cta-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 1.5px;
}


/* ═══ HERO ════════════════════════════════════════════════
   To add a background photo:
   1. Upload your photo to your Hostinger images/ folder
   2. Uncomment the background-image line below
   3. Adjust background-position as needed
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Decorative gradient + gold shimmer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(11,25,48,0.97) 0%,
      rgba(18,32,64,0.92) 50%,
      rgba(11,25,48,0.85) 100%
    );
  z-index: 1;
}

/* Gold diagonal accent stripe */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--red) 70%, transparent);
  z-index: 3;
}

/* Radial glow */
.hero__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,165,71,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,16,46,0.04) 0%, transparent 60%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.hero__eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 860px;
}

.hero__headline-accent {
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero__sub strong {
  color: var(--gold-light);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__proof-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero__proof-strip .divider {
  margin: 0 14px;
  opacity: 0.3;
}


/* ═══ AUTHORITY BAR ═══════════════════════════════════ */
.authority {
  background: var(--white);
  border-bottom: 1px solid var(--light-border);
  padding: 40px 24px;
}

.authority__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.authority__label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.authority__logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.media-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.media-logo:hover { opacity: 0.8; }

/* Subtle style differences per network */
.media-abc { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; }
.media-cbs { font-size: 1.5rem; }

.authority__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.authority__stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.astat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.astat__n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
}
.astat__l {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 160px;
  text-align: center;
}
.astat__sep {
  width: 1px;
  height: 48px;
  background: var(--light-border);
}


/* ═══ AGITATION ══════════════════════════════════════ */
.agitation {
  background: var(--off-white);
  padding: var(--section-v) 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain-card__icon {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.pain-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 14px;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ═══ PROGRAMS ══════════════════════════════════════ */
.programs {
  background: var(--navy);
  padding: var(--section-v) 0;
}

.programs__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

/* Program Card */
.pcard {
  background: var(--navy-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: transform 0.25s;
}
.pcard:hover { transform: translateY(-4px); }

.pcard--featured {
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy-3) 100%);
}

.pcard__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.pcard__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.pcard__tag {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 18px;
}

.pcard__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

/* Pricing tiers */
.pcard__tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.tier:hover { background: rgba(255,255,255,0.07); }
.tier--mid {
  background: rgba(201,165,71,0.06);
  border-color: rgba(201,165,71,0.2);
}

.tier__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tier__name {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}
.tier__dur {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.tier__detail {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

.tier__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tier__price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.tier__price-sub {
  font-size: 0.7rem;
  color: rgba(201,165,71,0.6);
  margin-top: -2px;
}

.pcard__finance {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  padding-left: 2px;
}


/* ═══ ABOUT ═══════════════════════════════════════════ */
.about {
  background: var(--off-white);
  padding: var(--section-v) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

/* Photo block */
.about__photo-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about__photo-placeholder {
  width: 100%;
  height: 520px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  /* 
    REPLACE THIS DIV with your photo:
    Delete this div and use:
    <img src="images/daryl-young.jpg" alt="Daryl Young" class="about__photo">
  */
}

.about__photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--red);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  line-height: 1.1;
  border: 3px solid var(--off-white);
  box-shadow: var(--shadow-md);
}
.about__photo-badge span:first-child {
  font-size: 1.6rem;
  line-height: 1;
}

/* Text block */
.about__text .section-eyebrow { margin-bottom: 10px; }
.about__text .section-title { margin-bottom: 24px; }

.about__text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.credential {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.credential__label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.credential__value {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}


/* ═══ CONTACT ═════════════════════════════════════════ */
.contact {
  background: var(--white);
  padding: var(--section-v) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact__copy .section-eyebrow { margin-bottom: 8px; }
.contact__copy .section-title { margin-bottom: 18px; }

.contact__copy p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.contact__phone-cta {
  display: block;
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background 0.2s;
}
.contact__phone-cta:hover { background: var(--navy-3); }

.contact__phone-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact__phone-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 3px;
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.contact__list li {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
}
.contact__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}


/* Form Box */
.contact__form-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid rgba(201,165,71,0.2);
}

.form-box__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.form-box__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

/* Form Elements */
.form { display: flex; flex-direction: column; gap: 18px; }

.form__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
}

.form__input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--white);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form__input::placeholder { color: rgba(255,255,255,0.25); }
.form__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(201,165,71,0.12);
}
.form__input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}

/* Select arrow */
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 7 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form__select option {
  background: var(--navy-2);
  color: var(--white);
}

.form__textarea {
  resize: vertical;
  min-height: 88px;
}

.form__disclaimer {
  font-size: 0.71rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.55;
  text-align: center;
  padding-top: 4px;
}


/* Form States */
.form__success {
  text-align: center;
  padding: 48px 24px;
}
.form__success-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,165,71,0.15);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form__success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.form__success p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 10px;
}
.form__success a { color: var(--gold); font-weight: 600; }

.form__error {
  padding: 16px 20px;
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.35);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}
.form__error a { color: var(--gold-light); font-weight: 600; }


/* ═══ FOOTER ══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding-top: 56px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer__mission {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-style: italic;
  max-width: 340px;
  margin-bottom: 16px;
}
.footer__locations {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__loc-label {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.7;
}
.footer__loc-list {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

/* Full-width credential variant */
.credential--full {
  grid-column: 1 / -1;
  border-left-color: var(--red);
}
.credential--full .credential__value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  font-style: italic;
}

.footer__info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 2;
}
.footer__info a:hover { color: var(--gold); }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 24px;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }


/* ═══ GLOBAL PHOTO STRIP ═══════════════════════════════ */
.global-strip {
  background: var(--off-white);
  padding: var(--section-v) 0;
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.global-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.global-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.global-card__img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.global-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.global-card:hover .global-card__img {
  transform: scale(1.04);
}

.global-card__caption {
  padding: 20px 22px;
}
.global-card__location {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 8px;
}
.global-card__caption p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}


/* ═══ VIDEOS ═══════════════════════════════════════════ */
.videos {
  background: var(--navy);
  padding: var(--section-v) 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-2);
  box-shadow: var(--shadow-lg);
}

/* Responsive 16:9 embed */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

.video-cta {
  text-align: center;
  padding-top: 8px;
}


/* ═══ RESPONSIVE ADDITIONS ═══════════════════════════ */
@media (max-width: 900px) {
  .global-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .video-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .global-card__img-wrap { height: 200px; }
}


@media (max-width: 960px) {
  :root { --section-v: 72px; }

  .pain-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .programs__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-wrap { max-width: 420px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .nav__link { display: none; }
}

@media (max-width: 640px) {
  :root { --section-v: 56px; }

  .hero { min-height: 75vh; }
  .hero__headline { font-size: clamp(2.4rem, 9vw, 3.5rem); }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn--ghost { align-self: flex-start; }

  .hero__proof-strip { display: none; }

  .authority__stats { gap: 20px; }
  .astat__sep { display: none; }

  .form__row-2 { grid-template-columns: 1fr; }

  .about__credentials { grid-template-columns: 1fr; }
  .about__photo-placeholder { height: 300px; }

  .contact__form-box { padding: 28px 20px; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .pcard { padding: 28px 24px; }
}
