/* ===================================================
   SALINACRUZ CHIHUAHUAS — Stylesheet
   =================================================== */

/* ---- TOKENS ---- */
:root {
  --yellow:       #F5C500;
  --yellow-dark:  #C49A00;
  --yellow-light: #FFFBDE;
  --orange:       #E05A1A;
  --orange-dark:  #B84614;
  --orange-light: #FFF0E8;
  --black:        #1A1A1A;
  --dark:         #2B1A0F;
  --cream:        #FFFEF5;
  --white:        #FFFFFF;
  --muted:        #6B6557;
  --border:       #E8DFA0;
  --shadow:       0 2px 12px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.16);
  --r:            12px;
  --r-sm:         8px;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 16px; color: var(--black); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.25; }

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--yellow-light); }
.section--dark { background: var(--dark); color: var(--white); }
.eyebrow { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow-dark); margin-bottom: .5rem; }
.section--dark .eyebrow { color: var(--yellow); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section__desc { color: var(--muted); max-width: 600px; margin: .75rem auto 0; }
.section--dark .section__desc { color: rgba(255,255,255,.7); }
.btn { display: inline-block; padding: .75rem 1.75rem; border-radius: 50px; font-weight: 600; font-size: .9rem; transition: all .2s; cursor: pointer; border: none; }
.btn--primary { background: linear-gradient(135deg, var(--orange) 0%, #F07820 100%); color: var(--white); box-shadow: 0 4px 16px rgba(224,90,26,.35); }
.btn--primary:hover { background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%); box-shadow: 0 6px 20px rgba(224,90,26,.45); }
.btn--outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn--outline:hover { background: var(--black); color: var(--yellow); }
.btn--outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn--outline-light:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn--dark { background: var(--black); color: var(--yellow); }
.btn--dark:hover { background: var(--dark); }
.tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--yellow); color: var(--black); border-radius: 4px; padding: .2rem .6rem; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ---- NAV ---- */
#site-header { position: sticky; top: 0; z-index: 100; background: var(--black); transition: box-shadow .3s; border-bottom: 2px solid transparent; background-clip: padding-box; }
#site-header::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--orange), var(--yellow)); }
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 2rem; }
.nav__logo { display: flex; align-items: center; gap: .75rem; }
.nav__logo-img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--yellow); }
.nav__logo-name { font-family: var(--serif); font-size: 1.1rem; color: var(--white); line-height: 1.2; }
.nav__logo-name span { display: block; font-size: .7rem; font-family: var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--orange); font-style: normal; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a { font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.8); transition: color .2s; }
.nav__links a:hover { color: var(--yellow); }
.nav__links a.active { color: var(--orange); }
.nav__dropdown-btn { background: none; border: none; cursor: pointer; font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.8); transition: color .2s; padding: 0; font-family: var(--sans); display: flex; align-items: center; gap: .3rem; }
.nav__dropdown-btn::after { content: '▾'; font-size: .7rem; }
.nav__dropdown-btn:hover { color: var(--yellow); }
.nav__item { position: relative; }
.nav__submenu { display: none; position: absolute; top: calc(100% + .5rem); left: 0; background: var(--black); border: 1px solid rgba(245,197,0,.2); border-radius: var(--r-sm); padding: .5rem 0; min-width: 180px; box-shadow: var(--shadow-lg); }
.nav__item.open .nav__submenu { display: block; }
.nav__submenu li a { display: block; padding: .6rem 1.2rem; font-size: .85rem; color: rgba(255,255,255,.8); transition: all .15s; }
.nav__submenu li a:hover { color: var(--yellow); background: rgba(245,197,0,.08); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav__cta { white-space: nowrap; }

/* ---- HERO ---- */
.hero { min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--black); }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,10,0,.20) 0%, rgba(43,26,15,.20) 50%, rgba(26,10,0,.20) 100%); z-index: 2; }
.hero__photo { position: absolute; inset: 0; background: url('../assets/images/hero-bg.jpg') center center / cover no-repeat; z-index: 1; }
.hero__accent { position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(224,90,26,.3) 0%, rgba(245,197,0,.12) 45%, transparent 70%); pointer-events: none; z-index: 3; }
.hero__accent2 { position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(245,197,0,.12) 0%, transparent 65%); pointer-events: none; z-index: 3; }
.hero__content { position: relative; z-index: 4; max-width: 680px; }
.hero__eyebrow { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); background: rgba(245,197,0,.12); border: 1px solid rgba(245,197,0,.3); border-radius: 50px; padding: .35rem 1rem; margin-bottom: 1.5rem; }
.hero__title { font-size: clamp(2.4rem, 6vw, 4.2rem); color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; }
.hero__title em { color: var(--yellow); font-style: normal; }
.hero__subtitle { font-size: 1.1rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; max-width: 500px; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badge { position: absolute; right: 6%; bottom: 10%; z-index: 4; background: linear-gradient(135deg, var(--orange) 0%, #F07820 100%); color: var(--white); border-radius: var(--r); padding: 1.25rem 1.75rem; text-align: center; box-shadow: 0 8px 32px rgba(224,90,26,.4); }
.hero__badge-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; line-height: 1; display: block; }
.hero__badge-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: block; margin-top: .2rem; }

/* ---- STATS BAR ---- */
.stats-bar { background: linear-gradient(90deg, var(--orange) 0%, #F07820 40%, var(--yellow) 100%); padding: 1.25rem 0; }
.stats-bar__grid { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--black); display: block; }
.stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,.55); }

/* ---- ABOUT ---- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__img { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; background: var(--yellow-light); }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--yellow); color: var(--black); border-radius: var(--r-sm); padding: .75rem 1.25rem; font-weight: 700; font-size: .85rem; box-shadow: var(--shadow); }
.about__text .lead { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--dark); line-height: 1.7; margin-bottom: 1.25rem; }
.about__text p { color: var(--muted); margin-bottom: 1rem; }
.about__highlights { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0; }
.highlight { display: flex; align-items: center; gap: .75rem; font-size: .92rem; }
.highlight::before { content: '★'; color: var(--yellow); font-size: 1rem; flex-shrink: 0; }

/* ---- DOG CARDS ---- */
.dogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .25s, box-shadow .25s; position: relative; }
.dog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--yellow)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.dog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dog-card:hover::before { transform: scaleX(1); }
.dog-card__photo { height: 240px; background: var(--yellow-light); overflow: hidden; position: relative; }
.dog-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dog-card:hover .dog-card__photo img { transform: scale(1.05); }
.dog-card__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--yellow-dark); opacity: .35; }
.dog-card__body { padding: 1.25rem; }
.dog-card__nickname { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--yellow-dark); margin-bottom: .25rem; }
.dog-card__name { font-family: var(--serif); font-size: 1rem; color: var(--black); margin-bottom: .5rem; line-height: 1.35; }
.dog-card__titles { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .75rem; }
.dog-card__title-badge { font-size: .68rem; font-weight: 700; background: var(--yellow-light); color: var(--yellow-dark); border: 1px solid var(--border); border-radius: 4px; padding: .15rem .5rem; text-transform: uppercase; letter-spacing: .05em; }
.dog-card__desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ---- ACHIEVEMENT BAND ---- */
.achieve-band { background: linear-gradient(135deg, var(--orange) 0%, #F07820 50%, var(--yellow) 100%); padding: 4rem 0; }
.achieve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.achieve-item { text-align: center; }
.achieve-num { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--black); display: block; line-height: 1; }
.achieve-label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(0,0,0,.65); margin-top: .4rem; display: block; }

/* ---- PUPPIES CTA ---- */
.puppies-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
.puppies-cta__img { position: relative; min-height: 320px; background: var(--yellow-light); }
.puppies-cta__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.puppies-cta__text { background: var(--black); padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.puppies-cta__text h2 { font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.puppies-cta__text p { color: rgba(255,255,255,.7); margin-bottom: 1.75rem; }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--black); padding: 5rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(245,197,0,.15) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: .75rem; position: relative; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 580px; margin: 0 auto; position: relative; }
.page-hero .eyebrow { color: var(--yellow); }

/* ---- FOOTER ---- */
.footer { background: var(--black); color: rgba(255,255,255,.8); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer__logo-img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--yellow); }
.footer__logo-name { font-family: var(--serif); font-size: 1rem; color: var(--white); }
.footer p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer h5 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer__links a:hover { color: var(--yellow); }
.footer__contact p, .footer__contact a { font-size: .88rem; color: rgba(255,255,255,.6); display: block; line-height: 1.8; }
.footer__contact a:hover { color: var(--yellow); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: .8rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: .5rem; }
.footer__bottom a { color: rgba(255,255,255,.35); }
.footer__bottom a:hover { color: var(--yellow); }

/* ---- BREADCRUMB ---- */
.breadcrumb-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; transition: color .2s; }
.breadcrumb-link:hover { color: var(--yellow); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .dogs-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--black); flex-direction: column; padding: 1.5rem; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
  .nav__links.nav__links--open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__submenu { position: static; border: none; padding: .25rem 0 .25rem 1rem; box-shadow: none; }
  .hero__badge { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .puppies-cta { grid-template-columns: 1fr; }
  .puppies-cta__img { min-height: 250px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .dogs-grid { grid-template-columns: 1fr; }
  .stats-bar__grid { gap: 2rem; }
  .achieve-grid { grid-template-columns: 1fr 1fr; }
}
