/* ===========================
   Special Dog Grooming – Premium Landing
   =========================== */

:root {
  --cream:    #FAF8FC;
  --white:    #FFFFFF;
  --green:    #4A3270;
  --green-2:  #5C4088;
  --gold:     #9B7DC8;
  --gold-lt:  #C8B2E8;
  --text:     #110F18;
  --muted:    #6B6575;
  --border:   rgba(74,50,112,.13);
  --shadow:   0 24px 60px rgba(74,50,112,.13);
  --shadow-sm: 0 8px 24px rgba(74,50,112,.10);

  --radius:    20px;
  --radius-sm: 12px;
  --container: 1140px;
  --gutter:    20px;

  --h1: clamp(2.4rem, 2rem + 2.2vw, 3.8rem);
  --h2: clamp(1.9rem, 1.5rem + 1.6vw, 2.9rem);
  --body: clamp(1rem, 0.96rem + 0.15vw, 1.1rem);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --focus: 0 0 0 3px rgba(155,125,200,.5);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: var(--radius-sm); z-index: 9999;
}
.skip-link:focus { left: 12px; outline: none; box-shadow: var(--focus); }

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,252,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; padding: 14px 0;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  width: 42px; height: 42px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(155,125,200,.3);
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 600; font-size: 1rem;
  letter-spacing: -0.01em; color: var(--green);
}
.brand-city {
  display: block; font-size: .78rem;
  color: var(--muted); margin-top: -2px;
}

.site-nav {
  display: flex; align-items: center; gap: 6px;
}
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .93rem; font-weight: 500; color: var(--muted);
  transition: color .18s, background .18s;
}
.nav-link:hover, .nav-link.is-active {
  color: var(--green); background: rgba(74,50,112,.07);
}
.btn-nav {
  padding: 9px 18px; border-radius: 999px;
  background: var(--green); color: var(--white);
  font-size: .9rem; font-weight: 600;
  transition: background .18s, transform .15s;
  margin-left: 8px;
}
.btn-nav:hover { background: var(--green-2); transform: translateY(-1px); }
.btn-nav:focus { outline: none; box-shadow: var(--focus); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-sans); font-size: .95rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: transform .16s, box-shadow .16s, background .16s;
}
.btn:focus { outline: none; box-shadow: var(--focus); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 20px rgba(74,50,112,.25);
}
.btn-primary:hover { background: var(--green-2); box-shadow: 0 8px 28px rgba(74,50,112,.3); }

.btn-outline {
  background: transparent; color: var(--green);
  border: 1.5px solid rgba(74,50,112,.35);
}
.btn-outline:hover { background: rgba(74,50,112,.06); border-color: var(--green); }

/* ---- EYEBROW ---- */
.eyebrow {
  display: inline-block;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow-dark { color: var(--green); }

/* ---- HERO ---- */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-copy { max-width: 560px; }

h1 {
  font-family: var(--font-serif);
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 1.08rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 32px;
  max-width: 46ch;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--green); letter-spacing: -0.02em;
}
.trust-item span { font-size: .82rem; color: var(--muted); }
.trust-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* Hero media */
.hero-media { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-img {
  width: 100%; height: 540px;
  object-fit: cover; object-position: center top;
  display: block;
}
.hero-badge {
  position: absolute; bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .88rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3DAB6E;
  box-shadow: 0 0 0 3px rgba(61,171,110,.2);
}
.hero-card-float {
  position: absolute; bottom: -24px; right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  width: 130px;
  overflow: hidden;
}
.hero-card-float img {
  width: 100%; height: 80px;
  object-fit: cover; border-radius: var(--radius-sm);
  margin-bottom: 6px;
}
.hero-card-float span {
  display: block; font-size: .76rem;
  font-weight: 600; color: var(--green);
  padding: 0 2px;
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }

.section-head {
  display: flex; flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
}
.section-head.center { align-items: center; text-align: center; }

h2 {
  font-family: var(--font-serif);
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub { font-size: 1.02rem; color: var(--muted); max-width: 52ch; }
.services-info-strip {
  display: flex; align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 28px;
  margin-bottom: 40px;
  width: fit-content; max-width: 100%;
}
.sinfo-item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0 28px;
}
.sinfo-item:first-child { padding-left: 0; }
.sinfo-item:last-child  { padding-right: 0; }
.sinfo-label {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--gold);
}
.sinfo-value {
  font-size: .9rem; font-weight: 500;
  color: var(--text);
}
.sinfo-divider {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.service-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.service-card--featured {
  background: var(--green); color: var(--white);
  border-color: var(--green);
}
.service-card--featured p { color: rgba(255,255,255,.78); }
.service-icon {
  font-size: 1.3rem; color: var(--gold);
  margin-bottom: 16px;
}
.service-card--featured .service-icon { color: var(--gold-lt); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.service-card p { font-size: .95rem; color: var(--muted); line-height: 1.6; }
.service-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--white);
  font-size: .74rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
}

.services-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pill {
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: .88rem; font-weight: 500;
  color: var(--text);
}

.services-notice {
  margin-top: 20px;
  font-size: .9rem;
  font-weight: 500;
  color: #b94a4a;
}

/* ---- BOOKING ---- */
.booking-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.booking-copy {
  padding: 52px 48px;
}
.booking-copy .eyebrow { margin-bottom: 12px; }
.booking-copy h2 { margin-bottom: 14px; }
.booking-copy > p { color: var(--muted); margin-bottom: 32px; }

.steps {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
}
.steps li {
  display: flex; align-items: center; gap: 14px;
  font-size: .95rem;
}
.step-nr {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(74,50,112,.1);
  color: var(--green);
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem;
}
.booking-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.booking-note {
  font-size: .85rem; color: var(--muted);
}
.booking-media {
  position: relative; overflow: hidden;
}
.booking-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.contact-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 28px;
}
.contact-list li {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 12px; padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--cream);
  align-items: center;
}
.contact-label {
  font-weight: 600; font-size: .88rem; color: var(--muted);
}
.contact-list a {
  color: var(--green); text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.chip {
  padding: 10px 20px; border-radius: 999px;
  border: 1.5px solid rgba(74,50,112,.3);
  color: var(--green); font-weight: 600; font-size: .9rem;
  transition: background .18s;
}
.chip:hover { background: rgba(74,50,112,.07); }

.contact-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-img img {
  width: 100%; height: 380px;
  object-fit: cover; object-position: center;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--green); color: var(--white);
  padding: 36px 0 24px;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
}
.footer-logo {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
}
.footer-brand strong { display: block; font-family: var(--font-serif); font-size: 1rem; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.footer-nap { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 3px; }
.footer-nap a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-nap a:hover { color: var(--white); }
.footer-nav {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.footer-nav a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .88rem; color: rgba(255,255,255,.7);
  transition: color .18s, background .18s;
}
.footer-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 20px;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--white); }

/* ---- BACK TO TOP & TOAST ---- */
.back-to-top {
  position: fixed; right: 20px; bottom: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green); color: var(--white);
  border: none; cursor: pointer; font-size: 1rem;
  box-shadow: 0 8px 20px rgba(74,50,112,.3);
  display: none;
  transition: transform .2s;
}
.back-to-top:hover { transform: translateY(-2px); }
.back-to-top.is-visible { display: block; }

.toast {
  position: fixed; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  background: var(--text); color: var(--white);
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: .9rem; pointer-events: none;
  opacity: 0;
  transition: opacity .25s, transform .25s;
}
.toast.is-visible {
  opacity: 1; transform: translateX(-50%) translateY(-4px);
}

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1020px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item { height: 220px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 520px; }
  .hero-copy { max-width: 100%; }
  .hero-card-float { right: 0; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-media { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; flex-direction: column;
    position: absolute; top: 72px;
    left: var(--gutter); right: var(--gutter);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px;
    gap: 4px;
    z-index: 200;
  }
  .site-nav.is-open { display: flex; }
  .nav-link, .btn-nav {
    width: 100%; text-align: center;
    padding: 12px; margin: 0;
    border-radius: var(--radius-sm);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item { height: 180px; }
  .booking-copy { padding: 32px 24px; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
}

@media (max-width: 520px) {
  .hero-trust { flex-direction: column; gap: 12px; width: 100%; }
  .trust-divider { width: 40px; height: 1px; }
  .services-info-strip { flex-direction: column; align-items: flex-start; width: 100%; padding: 18px 20px; gap: 14px; }
  .sinfo-item { padding: 0; }
  .sinfo-divider { width: 100%; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }
  .contact-list li { grid-template-columns: 1fr; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .btn, .gallery-item img { transition: none !important; }
  .btn:hover, .gallery-item:hover img { transform: none; }
}
