/* The Dog Groomery — styles.css
   Brand: warm, established, premium-local. Deep navy + cream + gold.
   (Variable names kept as --green-* to avoid churning every page's inline
   var() references; the values are navy. Swap these four lines to re-theme.) */

:root {
  --green-900: #1b2c49;
  --green-700: #25406b;
  --green-500: #3a5c91;
  --green-100: #e6ebf3;
  --cream: #f8f4ec;
  --sand: #efe6d4;
  --gold: #c19a4b;
  --gold-dark: #a7843a;
  --ink: #1e2a3d;
  --muted: #5a6678;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(20, 35, 60, 0.13);
  --shadow-sm: 0 6px 18px rgba(20, 35, 60, 0.09);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--green-900); }
h3 { font-size: 1.3rem; color: var(--green-900); }
p { color: var(--muted); }
a { color: var(--green-700); text-decoration: none; }

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { scroll-margin-top: 90px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-700); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-900); color: var(--cream); }
.btn-gold { background: var(--gold); color: #2a2410; box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-dark); color: #2a2410; }
.btn-outline { background: transparent; color: var(--green-900); border-color: var(--green-500); }
.btn-outline:hover { background: var(--green-100); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 58, 43, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--green-900);
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 0.97rem; }
.nav-links a:hover { color: var(--green-700); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-900); margin: 5px 0; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-500) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 84px 0 92px;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); color: var(--cream); margin-bottom: 22px; }
.hero p.lede { font-size: 1.18rem; color: rgba(248,244,236,0.86); max-width: 33ch; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-tagline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--gold);
}
.hero-tagline::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

/* Hero image placeholder card */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 14px; padding: 24px;
  box-shadow: var(--shadow);
}
.hero-photo svg { width: 96px; height: 96px; opacity: 0.92; }
.hero-photo .ph-tag {
  font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(248,244,236,0.7);
  background: rgba(0,0,0,0.18); padding: 6px 12px; border-radius: 999px;
}

/* ---------- Trust bar ---------- */
.trust {
  background: var(--green-900);
  color: var(--cream);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.96rem; color: rgba(248,244,236,0.92); }
.trust-item svg { width: 20px; height: 20px; flex: none; color: var(--gold); }

/* ---------- Generic section ---------- */
.section { padding: 88px 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; margin-top: 12px; }
.section-alt { background: var(--sand); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(28,58,43,0.07);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 9px; }
.service-card p { font-size: 0.97rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.why-photo {
  aspect-ratio: 1 / 1; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--green-500), var(--green-900));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,0.85); text-align: center; padding: 24px; box-shadow: var(--shadow);
}
.why-photo svg { width: 88px; height: 88px; }
.why-photo .ph-tag { font-size: 0.78rem; background: rgba(0,0,0,0.2); padding: 6px 12px; border-radius: 999px; }
.why-list { list-style: none; margin-top: 22px; display: grid; gap: 16px; }
.why-list li { display: flex; gap: 13px; align-items: flex-start; }
.why-list svg { width: 24px; height: 24px; color: var(--gold-dark); flex: none; margin-top: 2px; }
.why-list strong { color: var(--green-900); display: block; }
.why-list span { color: var(--muted); font-size: 0.97rem; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid rgba(28,58,43,0.07); box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }
.review-card blockquote { font-family: var(--font-display); font-size: 1.12rem; color: var(--green-900); line-height: 1.5; font-style: italic; }
.review-card cite { display: block; margin-top: 16px; font-style: normal; font-weight: 600; color: var(--muted); font-size: 0.92rem; }
.review-placeholder { border: 2px dashed var(--green-500); background: var(--green-100); }
.review-placeholder blockquote { font-style: normal; font-size: 1rem; color: var(--green-700); }

/* ---------- "Coming soon" notes (booking + reviews, pre-launch) ---------- */
.coming-soon {
  text-align: center; max-width: 640px; margin: 0 auto; padding: 40px 30px;
  background: var(--white); border: 1px solid var(--green-100);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.cs-badge {
  display: inline-block; background: var(--green-100); color: var(--green-700);
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 16px;
  border-radius: 100px; margin-bottom: 18px;
}
.coming-soon h3 { color: var(--green-900); font-size: 1.5rem; margin-bottom: 10px; }
.coming-soon > p { color: var(--muted); margin-bottom: 22px; }
.cs-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* Coming-soon note inside the dark booking band */
.widget-slot .cs-badge { background: rgba(193,154,75,0.18); color: var(--gold); }
.widget-slot strong { display: block; color: var(--cream); font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; }
.widget-slot .cs-phone { display: inline-block; margin-top: 18px; }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.info-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid rgba(28,58,43,0.07); }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(28,58,43,0.08); }
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 22px; height: 22px; color: var(--green-700); flex: none; margin-top: 3px; }
.info-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark); font-weight: 600; }
.info-row .value { color: var(--green-900); font-weight: 500; }
.info-row .value a { color: var(--green-900); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.96rem; }
.hours-list .closed { color: var(--muted); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 340px; border: 1px solid rgba(28,58,43,0.07); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Booking CTA ---------- */
.book {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--cream); border-radius: var(--radius); padding: 64px 40px; text-align: center;
  box-shadow: var(--shadow);
}
.book h2 { color: var(--cream); }
.book p { color: rgba(248,244,236,0.85); font-size: 1.12rem; max-width: 52ch; margin: 14px auto 30px; }
.book-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.widget-slot {
  margin-top: 34px; padding: 28px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px dashed rgba(255,255,255,0.32);
  color: rgba(248,244,236,0.78); font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(248,244,236,0.78); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--gold); margin-bottom: 16px; }
.footer-grid a { color: rgba(248,244,236,0.78); display: block; padding: 4px 0; }
.footer-grid a:hover { color: var(--cream); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { color: rgba(248,244,236,0.6); margin-top: 14px; font-size: 0.92rem; max-width: 34ch; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(248,244,236,0.55); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--cream); padding: 16px 24px 22px;
    border-bottom: 1px solid rgba(28,58,43,0.1); box-shadow: var(--shadow-sm);
  }
  .nav-links.open a { padding: 10px 0; width: 100%; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 64px; }
  .hero-photo { max-width: 360px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-photo { max-width: 380px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 60px 0; }
  .book { padding: 48px 24px; }
}

/* ---------- Quote band ---------- */
.quote-band { background: var(--green-900); text-align: center; }
.quote-band .container { padding-top: 62px; padding-bottom: 62px; }
.quote-band p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 3.2vw, 2.2rem); color: var(--cream); max-width: 24ch; margin: 0 auto; line-height: 1.3; }
.quote-band span { display: block; margin-top: 16px; font-family: var(--font-body); font-style: normal; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ---------- Chips + notes ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip { background: var(--green-100); color: var(--green-900); border-radius: 999px; padding: 7px 15px; font-size: 0.9rem; font-weight: 500; }
.chip-light { background: rgba(255,255,255,0.12); color: var(--cream); }
.note-line { margin-top: 22px; font-size: 0.97rem; color: var(--muted); max-width: 64ch; }
.note-line strong { color: var(--green-900); }

/* ---------- What to expect ---------- */
.expect-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 20px; }
.expect-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid rgba(28,58,43,0.07); border-radius: var(--radius-sm); padding: 24px; box-shadow: var(--shadow-sm); }
.expect-item svg { width: 26px; height: 26px; color: var(--green-700); flex: none; margin-top: 2px; }
.expect-item strong { display: block; color: var(--green-900); margin-bottom: 4px; }
.expect-item span { font-size: 0.93rem; color: var(--muted); }

/* ---------- Active nav state ---------- */
.nav-links a[aria-current="page"] { color: var(--green-900); font-weight: 600; }

/* ---------- Interior page hero ---------- */
.page-hero { background: linear-gradient(160deg, var(--green-900), var(--green-700)); color: var(--cream); padding: 66px 0 58px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0); background-size: 26px 26px; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); color: var(--cream); margin-bottom: 14px; }
.page-hero p { color: rgba(248,244,236,0.86); font-size: 1.14rem; max-width: 62ch; }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 18px; font-size: 1.06rem; color: var(--muted); }
.prose p strong { color: var(--green-900); }
.prose h3 { margin: 34px 0 12px; }

/* ---------- Service detail rows ---------- */
.service-detail { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 36px 0; border-bottom: 1px solid rgba(28,58,43,0.1); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail h3 { font-size: 1.5rem; }
.service-detail .price-note { margin-top: 10px; font-size: 0.88rem; color: var(--gold-dark); font-weight: 600; }
.incl-list { list-style: none; display: grid; gap: 11px; }
.incl-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); }
.incl-list svg { width: 20px; height: 20px; color: var(--green-500); flex: none; margin-top: 3px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.gallery-item { aspect-ratio: 1 / 1; border-radius: var(--radius-sm); background: linear-gradient(160deg, var(--green-100), var(--sand)); border: 1px solid rgba(28,58,43,0.08); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 16px; }
.gallery-item svg { width: 40px; height: 40px; color: var(--green-500); opacity: 0.8; }
.gallery-item span { font-size: 0.8rem; color: var(--muted); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid rgba(28,58,43,0.12); }
.faq-item summary { cursor: pointer; padding: 22px 0; font-family: var(--font-display); font-size: 1.18rem; color: var(--green-900); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.6rem; color: var(--gold-dark); line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 0 22px; color: var(--muted); max-width: 70ch; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--green-900); margin-bottom: 6px; }
.form-field input, .form-field textarea { width: 100%; padding: 13px 15px; border: 1px solid rgba(28,58,43,0.18); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; background: var(--white); color: var(--ink); }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--green-500); border-color: var(--green-500); }
.form-field textarea { min-height: 122px; resize: vertical; }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 10px; }

@media (max-width: 860px) {
  .service-detail { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 48px 0 42px; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1 / 1; }
}

/* ---------- Real photos in image slots ---------- */
.hero-photo, .why-photo, .gallery-item { padding: 0; overflow: hidden; }
.hero-photo img, .why-photo img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo img, .why-photo img { border-radius: var(--radius); }
.hero-photo img { object-position: center 28%; }
.gallery-item img { object-position: center 35%; }
