/* ============================================================
   Silk Challenger Professional Dog Handling — Nicole Mercado
   Design tokens
   ============================================================ */
:root{
  /* Color */
  --ink:        #17140f;   /* near-black warm charcoal — dark bands, footer, nav */
  --ink-2:      #241f19;   /* slightly lighter charcoal — cards on dark bg */
  --gold:       #b8923f;   /* antique gold — primary accent, use on dark backgrounds */
  --gold-bright:#d9b876;   /* light gold — hover states on dark bg */
  --gold-deep:  #7d5f1f;   /* deep gold — text on light backgrounds (AA contrast) */
  --cream:      #f4eee1;   /* warm ivory — section backgrounds */
  --paper:      #faf7f0;   /* near-white warm base */
  --rose:       #d9a9a6;   /* dusty blush — secondary accent */
  --rose-deep:  #c68d8a;   /* blush hover/border */
  --text:       #221d17;   /* body text on light bg */
  --text-soft:  #55493d;   /* muted body text on light bg */
  --line:       rgba(34,29,23,0.14);
  --line-gold:  rgba(184,146,63,0.45);

  /* Type */
  --f-display: 'Oswald', 'Arial Narrow', sans-serif;
  --f-script:  'Playfair Display', Georgia, serif;
  --f-body:    'Jost', 'Segoe UI', sans-serif;

  --tracking-wide: 0.14em;
  --tracking-wider: 0.24em;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

#services, #rates, #about, #gallery, #contact{
  scroll-margin-top: 92px;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4{
  margin: 0;
  font-family: var(--f-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  color: var(--ink);
}

p{ margin: 0; }

section{ position: relative; }

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.eyebrow{
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-deep);
}

.script-line{
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-deep);
}

.cta-band--ink .eyebrow{ color: var(--gold-bright); }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 2em;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  min-height: 44px;
}
.btn-outline{ color: var(--ink); border-color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--paper); }
.btn-outline:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold{ color: var(--paper); background: var(--gold); border-color: var(--gold); }
.btn-gold:hover{ background: var(--gold-bright); border-color: var(--gold-bright); color: var(--ink); }

.btn-light{ color: var(--paper); border-color: var(--paper); }
.btn-light:hover{ background: var(--paper); color: var(--ink); }

.link-underline{
  position: relative;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding-bottom: 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.link-underline::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.4s ease;
}
.link-underline:hover::after{ right: 0; }

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 2px; }

/* ============================================================
   Nav
   ============================================================ */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(184,146,63,0.25);
}
.nav-inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img{ height: 46px; width: auto; }
.nav-logo{ flex-shrink: 0; }

.nav-links{
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}
.nav-links a{
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--cream);
  padding: 10px 2px;
  position: relative;
}
.nav-links a:not(.nav-cta)::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:4px; height:1px;
  background: var(--gold);
  transition: right 0.35s ease;
}
.nav-links a:not(.nav-cta):hover::after{ right: 0; }
.nav-links a:not(.nav-cta):hover{ color: var(--gold-bright); }

.nav-cta{
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-cta:hover{ background: var(--gold); color: var(--ink) !important; }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content: "";
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle::before{ position:absolute; transform: translateY(-8px); }
.nav-toggle::after{ position:absolute; transform: translateY(8px); }
.nav-toggle.is-open span{ opacity: 0; }
.nav-toggle.is-open::before{ transform: rotate(45deg); }
.nav-toggle.is-open::after{ transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  position: relative;
  overflow: hidden;
  min-height: clamp(600px, 98vh, 1000px);
  display: flex;
  align-items: center;
  padding: clamp(96px, 16vh, 140px) 0 clamp(56px, 8vh, 80px);
  text-align: center;
  background: var(--ink);
}
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  z-index: 0;
}
.hero-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,20,15,0.58) 0%, rgba(23,20,15,0.34) 40%, rgba(23,20,15,0.6) 100%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 2;
}
.hero-eyebrow{
  font-family: var(--f-script);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(217, 184, 118, 0.92);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 0.9s ease 0.15s forwards;
}
.hero-title{
  font-size: clamp(3.6rem, 15vw, 11.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: rgba(250, 247, 240, 0.86);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 1s ease 0.35s forwards;
}
.hero-sub{
  margin-top: 22px;
  font-family: var(--f-body);
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(244, 238, 225, 0.82);
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 0.9s ease 0.55s forwards;
}
.hero-actions{
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 0.9s ease 0.75s forwards;
}
.hero-link{ color: var(--paper); }
.hero-link::after{ background: var(--paper); }

@keyframes revealUp{
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions{
    opacity: 1; transform: none; animation: none;
  }
}

/* ============================================================
   Credentials strip
   ============================================================ */
.credentials{
  background: var(--ink);
  padding: 20px 0;
}
.credentials-inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  text-align: center;
}
.credentials-inner span{
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--cream);
}
.credentials-inner .dot{
  color: var(--gold);
  font-size: 0.6rem;
}

/* ============================================================
   Section divider (signature rosette)
   ============================================================ */
.rosette-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin-bottom: 8px;
}
.rosette-divider .rule{
  height: 1px;
  width: clamp(30px, 8vw, 90px);
  background: var(--line-gold);
}
.rosette-divider svg{ color: var(--gold); flex-shrink: 0; }

/* ============================================================
   Services
   ============================================================ */
.services{
  background: var(--paper);
  padding: clamp(64px, 10vw, 120px) 0;
}
.services-head{
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 76px);
}
.services-head h2{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
}
.services-head p{
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 46ch;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}
.service-item{ text-align: left; }
.service-icon{
  width: 52px; height: 52px;
  color: var(--ink);
  margin-bottom: 18px;
}
.service-item h3{
  font-size: 1.02rem;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.service-item p{
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============================================================
   About / bio
   ============================================================ */
.about{
  background: var(--cream);
  padding: clamp(64px, 10vw, 120px) 0;
}
.about-grid{
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.about-text .eyebrow{ display:block; margin-bottom: 14px; }
.about-text h2{
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.about-text p{
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 56ch;
}
.about-list{
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.about-list li{
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.about-list li::before{
  content: "✦";
  color: var(--gold-deep);
  font-size: 0.7rem;
}

.about-photos{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.about-photo-main{
  border: 1px solid var(--line-gold);
  padding: 10px;
  background: var(--paper);
}
.about-photo-main img{
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  object-position: center 42%;
}
.about-photo-tag{
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--ink);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line-gold);
}

/* ============================================================
   CTA bands
   ============================================================ */
.cta-band{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}
.cta-band.reverse{ direction: rtl; }
.cta-band.reverse > *{ direction: ltr; }

.cta-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 72px);
}
.cta-band--rose .cta-copy{ background: var(--rose); }
.cta-band--ink .cta-copy{ background: var(--ink); }

.cta-copy .eyebrow{ margin-bottom: 14px; }
.cta-band--rose .eyebrow{ color: var(--ink); opacity: 0.65; }
.cta-copy h2{
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 18px;
}
.cta-band--rose h2{ color: var(--ink); }
.cta-band--ink h2{ color: var(--paper); }
.cta-copy p{
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 44ch;
}
.cta-band--rose p{ color: #3a2e28; }
.cta-band--ink p{ color: rgba(250,247,240,0.75); }

.cta-photo{ overflow: hidden; min-height: 320px; }
.cta-photo img{ width: 100%; height: 100%; object-fit: cover; }

.cta-photo--tight{ align-self: start; background: var(--rose); }
.cta-photo--tight img.cta-photo-img{
  height: auto;
  aspect-ratio: 4 / 5;
  object-position: 100% 45%;
}

/* ============================================================
   Rates / catalog section
   ============================================================ */
.rates{
  background: var(--paper);
  padding: clamp(64px, 10vw, 120px) 0;
}
.rates-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 7vw, 76px);
}
.rates-head h2{
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  margin: 10px 0 16px;
}
.rates-head p{
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.rates-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  align-items: start;
}
.rate-group{ padding-bottom: 12px; }
.rate-group h3{
  font-size: 0.9rem;
  letter-spacing: var(--tracking-wide);
  color: var(--gold-deep);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-gold);
  margin-bottom: 18px;
}
.rate-group h3.rate-subhead{ margin-top: 36px; }
.rate-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.rate-row:last-child{ border-bottom: none; }
.rate-name{ font-size: 0.95rem; color: var(--text); font-weight: 500; }
.rate-desc{
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 400;
  margin-top: 2px;
}
.rate-price{
  font-family: var(--f-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.rates-footnotes{
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rate-callout{
  background: var(--ink);
  color: var(--cream);
  padding: 26px 28px;
}
.rate-callout h4{
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: var(--tracking-wide);
  margin-bottom: 14px;
}
.rate-callout .rate-row{ border-bottom-color: rgba(244,238,225,0.14); }
.rate-callout .rate-name{ color: var(--cream); }
.rate-callout .rate-price{ color: var(--gold-bright); }
.rate-callout-text{ color: rgba(244,238,225,0.8); font-size: 0.88rem; line-height: 1.7; }

.bonus-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
.bonus-grid .rate-row{ padding: 9px 0; font-size: 0.88rem; }
.bonus-grid .rate-price{ font-size: 0.85rem; }

.rate-note{
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.8;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.rate-note strong{ color: var(--text); }

/* ============================================================
   Gallery / Results
   ============================================================ */
.gallery{
  background: var(--ink);
  padding: clamp(64px, 10vw, 120px) 0;
}
.gallery .rosette-divider .rule{ background: rgba(184,146,63,0.5); }
.gallery-head{
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.gallery-head h2{ color: var(--cream); font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-top: 10px; }
.gallery-head p{ color: rgba(244,238,225,0.65); margin-top: 14px; font-size: 1rem; }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item{
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }

/* ============================================================
   Footer / contact
   ============================================================ */
.site-footer{
  background: var(--ink-2);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid rgba(244,238,225,0.14);
}
.footer-brand img{ height: 64px; margin-bottom: 18px; }
.footer-brand p{
  font-family: var(--f-script);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  max-width: 26ch;
}
.footer-col h4{
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-wide);
  margin-bottom: 18px;
}
.footer-col h4.footer-subhead{ margin-top: 32px; }
.footer-links{ list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links a{ font-size: 0.92rem; color: rgba(244,238,225,0.85); }
.footer-links a:hover{ color: var(--gold-bright); }
.footer-contact{ font-size: 0.92rem; color: rgba(244,238,225,0.85); display:grid; gap:12px; }
.footer-contact a:hover{ color: var(--gold-bright); }

.contact-form{ display: grid; gap: 14px; }
.contact-form label{
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(244,238,225,0.6);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,238,225,0.3);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 8px 2px;
  min-height: 44px;
}
.contact-form textarea{ min-height: 72px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus{
  outline: none;
  border-bottom-color: var(--gold);
}
.contact-form button{ margin-top: 8px; justify-self: start; }
.form-note{ font-size: 0.78rem; color: rgba(244,238,225,0.5); margin-top: 4px; min-height: 1.2em; }

.footer-bottom{
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: rgba(244,238,225,0.45);
  letter-spacing: 0.04em;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .rates-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .rates-grid .rate-group:last-child{ grid-column: 1 / -1; }
  .rates-footnotes{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid .contact-col{ grid-column: 1 / -1; }
}

@media (max-width: 860px){
  .nav-toggle{ display: flex; }
  .nav-links{
    position: fixed;
    inset: 66px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px clamp(20px, 6vw, 40px);
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ width: 100%; padding: 16px 2px; font-size: 0.85rem; border-bottom: 1px solid rgba(244,238,225,0.1); }
  .nav-cta{ margin-top: 10px; text-align: center; border-bottom: 1px solid var(--gold) !important; }

  .services-head{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-photos{ order: -1; max-width: 420px; margin: 0 auto; }

  .cta-band, .cta-band.reverse{ grid-template-columns: 1fr; direction: ltr; }
  .cta-photo{ min-height: 240px; order: -1; }

  .rates-grid{ grid-template-columns: 1fr; }
  .rates-grid .rate-group:last-child{ grid-column: auto; }
  .rates-footnotes{ grid-template-columns: 1fr; }

  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }

  .footer-grid{ grid-template-columns: 1fr; }
}

/* Phone-only hero crop: on narrow/tall screens, cover-fit shows almost the
   entire photo (Nicole's full body + the table legs) with little vertical
   crop, which buries the dog. Zoom in and re-center on her upper body and
   the dog, cropping out the legs below the table. Desktop is untouched. */
@media (max-width: 640px){
  .hero-bg{
    transform: scale(1.4);
    transform-origin: 72% 31%;
  }
}

@media (max-width: 560px){
  .services-grid{ grid-template-columns: 1fr; gap: 34px; }
  .bonus-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .hero-actions{ flex-direction: column; gap: 16px; }
}
