/* ===== Muddy Hounds Grooming — styles ===== */

:root {
  --cream: #FAF8F6;
  --cream-alt: #FBEEF0;
  --brown: #5A3825;
  --brown-deep: #3E2717;
  --pink: #FBD4DC;
  --turquoise: #38C6DE;
  --turquoise-deep: #1FA3BD;
  --coral: #FF6F8E;
  --coral-deep: #F04E72;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(90, 56, 37, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-display: "Baloo 2", "Segoe UI", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown-deep);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--brown-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1em; }

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--coral-deep);
  margin-bottom: 0.6em;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lede.center { max-width: 620px; }

.section { padding: 88px 0; position: relative; }
.alt-bg { background: var(--cream-alt); }

/* Decorative floating bubbles */
.bubble-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(155,198,222,0.25));
  border: 1px solid rgba(155,198,222,0.4);
  opacity: 0.5;
}
.b1 { width: 60px; height: 60px; top: 12%; left: 4%; }
.b2 { width: 24px; height: 24px; top: 30%; right: 8%; }
.b3 { width: 40px; height: 40px; top: 65%; left: 10%; }
.b4 { width: 18px; height: 18px; top: 80%; right: 14%; }
.b5 { width: 32px; height: 32px; top: 48%; right: 3%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 246, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(90, 56, 37, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brown-deep);
}
.brand-name.small { font-size: 1rem; }
.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-family: var(--font-display);
}
.site-nav a { color: var(--brown); transition: color 0.2s; }
.site-nav a:hover { color: var(--coral-deep); }
.nav-cta {
  background: var(--coral);
  color: var(--brown-deep) !important;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.nav-cta:hover { background: var(--coral-deep); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--brown-deep);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 64px;
  padding-bottom: 120px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-alt) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.status-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.status-badge.open { color: #2E7D4F; }
.status-badge.closed { color: #B4472F; }
.status-badge .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}
.status-badge.open .dot { background: #2E7D4F; }
.status-badge.closed .dot { background: #B4472F; }

.hero-lede { font-size: 1.15rem; max-width: 46ch; color: var(--brown); }
.hero-note { font-size: 0.9rem; color: var(--coral-deep); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 16px;
}

.btn {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 999px;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brown-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--coral-deep); }
.btn-outline {
  background: transparent;
  color: var(--brown-deep);
  border: 2px solid var(--brown-deep);
}
.btn-outline:hover { background: var(--brown-deep); color: var(--white); }

.hero-art { display: flex; justify-content: center; }
.hero-art-circle {
  width: min(380px, 80vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--turquoise) 0%, var(--turquoise-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-art-circle::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 111, 142, 0.55);
}
.hero-art-circle img { width: 88%; }

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.wave svg { width: 100%; height: 80px; display: block; }
.wave path { fill: var(--cream-alt); }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-photo-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--coral) 0%, var(--turquoise) 100%);
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
}
.about-copy p:not(.eyebrow) { color: var(--brown); font-size: 1.05rem; max-width: 60ch; }
.link-arrow {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral-deep);
  display: inline-block;
  margin-top: 8px;
}
.link-arrow:hover { color: var(--brown-deep); }

/* ===== Services ===== */
.section-lede { color: var(--brown); font-size: 1.05rem; margin: 0 auto 48px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.card-grid-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.card-grid-4 .service-card { flex: 0 1 300px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-icon {
  font-size: 2rem;
  width: 68px;
  height: 68px;
  line-height: 68px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--coral);
}
.service-card:nth-child(2) .service-icon { background: var(--turquoise); }
.service-card:nth-child(3) .service-icon { background: var(--coral-deep); }
.service-card:nth-child(4) .service-icon { background: var(--turquoise-deep); }
.service-card:nth-child(5) .service-icon { background: var(--coral); }
.service-card p { color: var(--brown); font-size: 0.98rem; margin: 0; }

.info-banner {
  background: var(--turquoise);
  color: var(--brown-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
}
.info-banner.warn {
  background: var(--pink);
  margin: 40px 0;
}

.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(90,56,37,0.18);
  font-size: 0.95rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li span { color: var(--brown); }
.price-list li span::before {
  content: "🐾";
  font-size: 0.75rem;
  margin-right: 10px;
  opacity: 0.7;
}

.menu-note {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral-deep);
  margin-top: 36px;
  font-size: 1.05rem;
}

.size-section { margin-top: 48px; }
.size-section h3 { font-size: 1.3rem; margin-bottom: 20px; }
.size-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 4px 28px;
}
.size-item {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(90,56,37,0.18);
}
.size-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brown-deep);
  font-size: 0.95rem;
  margin: 0 0 4px;
}
.size-item p {
  color: var(--brown);
  opacity: 0.85;
  font-size: 0.82rem;
  margin: 0;
}

.two-col-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.table-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.table-block h3 { margin-bottom: 12px; color: var(--coral-deep); }

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px 26px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--coral);
  position: relative;
}
.testimonial-card.accent-turquoise { border-top-color: var(--turquoise); }
.testimonial-card.accent-coral { border-top-color: var(--coral); }
.testimonial-card.accent-coral-deep { border-top-color: var(--coral-deep); }
.testimonial-card.accent-turquoise-deep { border-top-color: var(--turquoise-deep); }
.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.35;
  display: block;
  margin-bottom: -10px;
}
.testimonial-card.accent-turquoise::before { color: var(--turquoise); }
.testimonial-card.accent-coral::before { color: var(--coral); }
.testimonial-card.accent-coral-deep::before { color: var(--coral-deep); }
.testimonial-card.accent-turquoise-deep::before { color: var(--turquoise-deep); }
.testimonial-quote {
  color: var(--brown);
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brown-deep);
  margin: 0;
}

/* ===== Hours ===== */
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hours-copy p:not(.eyebrow) { color: var(--brown); max-width: 46ch; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 14px 22px;
  font-size: 1rem;
}
.hours-table th { font-family: var(--font-display); font-weight: 700; color: var(--brown-deep); }
.hours-table td { text-align: right; color: var(--brown); font-weight: 700; }
.hours-table td.closed { color: #B4472F; opacity: 0.75; }
.hours-table tr { border-bottom: 1px solid rgba(90,56,37,0.08); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr.today {
  background: var(--cream-alt);
}
.hours-table tr.today th,
.hours-table tr.today td { color: var(--coral-deep); }

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.5rem;
  background: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.fb-icon { width: 26px; height: 26px; object-fit: contain; }
.contact-list strong { font-family: var(--font-display); display: block; margin-bottom: 2px; }
.contact-list p { margin: 0; color: var(--brown); }
.contact-list a:hover { color: var(--coral-deep); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--turquoise-deep);
  color: var(--white);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  padding: 4px;
}
.footer-brand p { margin: 0; color: var(--white); }
.footer-brand p:first-child { font-family: var(--font-display); font-weight: 700; }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer-social:hover { opacity: 1; text-decoration: underline; }
.footer-social .fb-icon { width: 22px; height: 22px; }
.footer-copy { font-size: 0.85rem; opacity: 0.85; margin: 0; text-align: right; }
.footer-copy a { color: var(--white); font-weight: 700; text-decoration: underline; }
.footer-copy a:hover { opacity: 0.8; }

@media (max-width: 600px) {
  .footer-right { align-items: center; width: 100%; }
  .footer-copy { text-align: center; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .hours-inner, .contact-inner {
    grid-template-columns: 1fr;
  }
  .about-photo-frame { max-width: 260px; margin: 0 auto; }
  .hero-art { order: -1; }
  .card-grid { grid-template-columns: 1fr; }
  .two-col-tables { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; }
  .site-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(90,56,37,0.08); }
  .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
}
