/* ═══════════════════════════════════════════════════════
   ALPHA KENNELS.COM — Premium Dutch Shepherd Puppies
   Design: High-end, clean, refined working-dog professionalism
   Palette: Deep charcoal · Warm off-white · Antique gold
   Typography: Cormorant Garamond (display) · Inter (body)
═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --gold:        #B8973A;
  --gold-light:  #D4B05A;
  --gold-dim:    #8A6E28;
  --charcoal:    #1A1A18;
  --charcoal-2:  #252522;
  --charcoal-3:  #2E2E2B;
  --off-white:   #F5F2EC;
  --warm-white:  #FDFAF5;
  --text-dark:   #1A1A18;
  --text-mid:    #4A4A45;
  --text-light:  #8A8A82;
  --border-light:#E8E4DC;
  --border-dark: #3A3A36;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --transition:  0.25s ease;

  --max-w:       1160px;
  --max-w-narrow:740px;
}

/* ── 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);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, iframe { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── LOGO WORDMARK ── */
.logo-alpha {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--off-white);
}
.logo-k9 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.section-light .logo-alpha { color: var(--charcoal); }
.section-light .logo-k9   { color: var(--gold-dim); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 26, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.7);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

/* Subtle textured background using CSS pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,151,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(184,151,58,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24,0.3) 0%, rgba(26,26,24,0.1) 40%, rgba(26,26,24,0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: rgba(245, 242, 236, 0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245, 242, 236, 0.8);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.hero-litter-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.hero-phone-display {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.08em;
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border: 1px solid rgba(245, 242, 236, 0.35);
  color: rgba(245, 242, 236, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-deposit-note {
  font-size: 0.75rem;
  color: rgba(245, 242, 236, 0.45);
  letter-spacing: 0.04em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(245, 242, 236, 0.3);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ── */
.section { padding: 6rem 1.5rem; }
.section-light { background: var(--warm-white); }
.section-dark  { background: var(--charcoal-2); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}
.section-eyebrow-light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.section-title-light { color: var(--off-white); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.section-intro-light { color: rgba(245, 242, 236, 0.7); }

/* ── BREED COMPARISON ── */
.breed-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.breed-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.breed-card-ds {
  background: var(--charcoal);
  border-color: var(--gold-dim);
}

.breed-card-mal {
  background: var(--off-white);
}

.breed-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.breed-card-ds .breed-card-label { color: var(--gold); }
.breed-card-mal .breed-card-label { color: var(--text-light); }

.breed-trait-list { display: flex; flex-direction: column; gap: 0.7rem; }

.breed-trait-list li {
  font-size: 0.9rem;
  line-height: 1.4;
  padding-left: 1.5rem;
  position: relative;
}
.breed-trait-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.trait-check { color: rgba(245, 242, 236, 0.9); }
.trait-check::before { background: var(--gold); }

.trait-x { color: var(--text-mid); }
.trait-x::before { background: #C4A882; opacity: 0.5; }

.trait-neutral { color: var(--text-mid); }
.trait-neutral::before { background: #C4C4B8; }

.breed-summary {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--gold-dim);
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── IMMERSIVE DOG PANELS ── */
.section-dogs { }

.dog-panel {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.dog-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,24,0.85) 0%,
    rgba(26,26,24,0.6) 40%,
    rgba(26,26,24,0.1) 100%
  );
}

.dog-panel-overlay-right {
  background: linear-gradient(
    to left,
    rgba(26,26,24,0.85) 0%,
    rgba(26,26,24,0.6) 40%,
    rgba(26,26,24,0.1) 100%
  );
}

.dog-panel-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 5rem 4rem 5rem 5rem;
}

.dog-panel-content-right {
  margin-left: auto;
  padding: 5rem 5rem 5rem 4rem;
}

.dog-panel-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.dog-panel-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.dog-panel-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.45);
  margin-bottom: 1.5rem;
}

.dog-panel-desc {
  font-size: 1rem;
  color: rgba(245,242,236,0.8);
  line-height: 1.8;
  max-width: 420px;
}

.dog-panels-footer {
  background: var(--charcoal-2);
  text-align: center;
  padding: 1.5rem;
}

.dog-panel-media-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.dog-panel-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(184,151,58,0.3);
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.dog-panel-thumb:hover {
  border-color: var(--gold);
  transform: scale(1.06);
}

.dog-panel-video {
  background: var(--charcoal-3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: var(--transition);
}

.dog-panels-note {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}


.dog-showcase {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
}
.dog-showcase:last-child { margin-bottom: 0; }

.dog-showcase-reverse {
  grid-template-columns: 2fr 3fr;
}
.dog-showcase-reverse .dog-showcase-photos { order: 2; }
.dog-showcase-reverse .dog-showcase-info   { order: 1; }

.dog-showcase-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
}

.dog-photo-primary {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.dog-photo-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.dog-showcase-info { padding: 0.5rem 0; }



.dog-video-placeholder {
  aspect-ratio: 16/9;
  background: var(--charcoal-3);
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.placeholder-inner svg { color: var(--border-dark); }
.placeholder-inner p {
  color: rgba(245, 242, 236, 0.3);
  font-size: 0.9rem;
}
.placeholder-note {
  font-size: 0.65rem;
  color: rgba(245, 242, 236, 0.15);
  letter-spacing: 0.06em;
  font-family: monospace;
}

.dog-info { padding: 0.5rem 0; }

.dog-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.dog-role {
  font-size: 1rem;
  color: rgba(245, 242, 236, 0.4);
  font-weight: 400;
}

.dog-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(184, 151, 58, 0.15);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.dog-desc {
  font-size: 0.95rem;
  color: rgba(245, 242, 236, 0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.dog-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.credential {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border-dark);
  color: rgba(245, 242, 236, 0.45);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

/* ── LINEAGE ── */
.lineage-block {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-light);
}
.lineage-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.lineage-header { margin-bottom: 1rem; }

.lineage-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
}

.lineage-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.lineage-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* ── DOG PHOTOS ── */
.dog-photo-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dog-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


.dog-video-wrap {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal-3);
}

.video-placeholder-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius-md);
}

/* When the placeholder is replaced with an actual iframe embed,
   the .video-responsive wrapper provides the 16/9 ratio */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.video-placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(245, 242, 236, 0.2);
}
.video-placeholder-overlay svg { opacity: 0.35; }
.video-placeholder-overlay span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-caption {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}



/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border-dark);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.75rem;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--border-dark);
  background: var(--charcoal-2);
}

.timeline-active .timeline-marker {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 151, 58, 0.2);
}

.timeline-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 0.35rem;
}

.timeline-desc {
  font-size: 0.88rem;
  color: rgba(245, 242, 236, 0.5);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--off-white);
  position: relative;
}

.pricing-card-working {
  background: var(--charcoal);
  border-color: var(--gold-dim);
}

.pricing-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.pricing-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.pricing-card-working .pricing-card-label { color: rgba(245, 242, 236, 0.5); }

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pricing-card-working .pricing-amount { color: var(--gold-light); }

.pricing-amount-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.pricing-card-working .pricing-amount-label { color: rgba(245,242,236,0.4); }

.pricing-deposit-callout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.deposit-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--charcoal);
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 20px;
}

.deposit-pill-dark {
  background: rgba(184,151,58,0.15);
  color: var(--gold-light);
  border-color: var(--gold-dim);
}

.deposit-balance {
  font-size: 0.82rem;
  color: var(--text-mid);
}
.deposit-balance-dark { color: rgba(245,242,236,0.45); }

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.pricing-desc-working,
.pricing-card-working .pricing-desc { color: rgba(245, 242, 236, 0.6); }

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pricing-includes li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}
.pricing-card-working .pricing-includes li { color: rgba(245, 242, 236, 0.65); }
.pricing-card-working .pricing-includes li::before { color: var(--gold); }

.pricing-working-note {
  font-size: 0.72rem;
  color: rgba(245, 242, 236, 0.35);
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-top: 1px solid var(--border-dark);
  padding-top: 0.75rem;
}

.pricing-includes li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

/* Working Home Incentive Banner */
.working-incentive-block {
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.working-incentive-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.working-incentive-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.working-incentive-discount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.working-incentive-desc {
  font-size: 0.92rem;
  color: rgba(245, 242, 236, 0.7);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.working-incentive-qualify {
  font-size: 0.88rem;
  color: rgba(245, 242, 236, 0.5);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.working-incentive-sports {
  font-size: 0.72rem;
  color: rgba(245, 242, 236, 0.3);
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-top: 1px solid var(--border-dark);
  padding-top: 0.75rem;
}

/* ── DEPOSIT BOX ── */
.deposit-box {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-dim);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 3rem;
}

.deposit-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.deposit-terms {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.deposit-terms li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.deposit-terms li::before {
  content: '·';
  position: absolute;
  left: 0.25rem;
  color: var(--gold-dim);
  font-weight: 700;
}

/* ── CALL CTA ── */
.call-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.call-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.call-cta-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.call-cta-number:hover { color: var(--gold-light); }

.call-cta-sub {
  font-size: 0.85rem;
  color: rgba(245, 242, 236, 0.45);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── RESERVATION FORM ── */
.form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  background: rgba(184, 151, 58, 0.06);
  border-left: 3px solid var(--gold-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(184, 151, 58, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-form-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-form-submit:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
.faq-item:first-child { border-top: 1px solid var(--border-dark); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--off-white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover { color: var(--gold-light); }

.faq-answer {
  padding: 0 0 1.5rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: rgba(245, 242, 236, 0.6);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 1.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.45);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}

.footer-location {
  font-size: 0.78rem;
  color: rgba(245, 242, 236, 0.3);
  letter-spacing: 0.04em;
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold-light); }

.footer-email {
  display: block;
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.45);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--gold-light); }

.footer-deposit-reminder {
  font-size: 0.72rem;
  color: rgba(245, 242, 236, 0.25);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.45);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(245, 242, 236, 0.2);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(26,26,24,0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-dark);
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; }
  .nav-hamburger { display: flex; }

  .breed-comparison {
    grid-template-columns: 1fr;
  }

  .dog-panel {
    min-height: 70vh;
    background-attachment: scroll;
    align-items: flex-end;
  }
  .dog-panel-content,
  .dog-panel-content-right {
    padding: 3rem 2rem;
    margin-left: 0;
    max-width: 100%;
  }
  .dog-panel-overlay,
  .dog-panel-overlay-right {
    background: linear-gradient(
      to top,
      rgba(26,26,24,0.92) 0%,
      rgba(26,26,24,0.5) 50%,
      rgba(26,26,24,0.1) 100%
    );
  }



  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card { padding: 1.75rem; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-nav { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 4rem 1.25rem; }

  .nav-inner { padding: 0 1.25rem; }
  .nav-cta {
    padding: 0.45rem 1rem;
    font-size: 0.72rem;
  }

  .hero { padding: 5rem 1.25rem 3.5rem; }

  .hero-phone-display { font-size: 1.6rem; }

  .btn-primary {
    font-size: 0.82rem;
    padding: 0.9rem 1.5rem;
  }

  .form-row { grid-template-columns: 1fr; }

  .form-wrap { padding: 1.75rem 1.25rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .call-cta { padding: 2.5rem 1.25rem; }

  .deposit-box { padding: 1.5rem; }

  .pricing-card { padding: 1.5rem; }
}

/* Tap targets — minimum 44px on mobile */
@media (max-width: 600px) {
  .faq-question { min-height: 44px; }
  .nav-cta { min-height: 44px; display: flex; align-items: center; }
  .btn-primary { min-height: 52px; }
  .call-cta-number { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ── UTILITY ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
