:root {
    --cream:      #FCEBE2;
    --cream-2:    #F7DECF;
    --coral:      #E8836E;
    --coral-deep: #D96A54;
    --brown:      #6E2A1D;
    --brown-soft: #8A4432;
    --sage:       #8A9A7E;
    --sage-deep:  #6C7A5F;
    --white:      #FFFBF7;
    --shadow:     0 8px 24px rgba(110, 42, 29, 0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, .display {
    font-family: 'Fredoka', sans-serif;
    color: var(--brown);
    line-height: 1.15;
  }

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

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

  .wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- Decorative paw ---------- */
  .paw {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
  }

  /* ---------- Header ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(252, 235, 226, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(110, 42, 29, 0.08);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--coral-deep);
    letter-spacing: -0.01em;
  }

  .brand svg { width: 30px; height: 30px; }

  .nav-links {
    display: flex;
    gap: 28px;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .nav-links a {
    color: var(--brown-soft);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--coral-deep); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--coral);
    color: var(--white);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .btn:hover { background: var(--coral-deep); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    border: 2px solid var(--coral);
    color: var(--coral-deep);
    box-shadow: none;
  }
  .btn-outline:hover { background: var(--coral); color: var(--white); }

  .nav-cta { display: none; }
  @media (min-width: 720px) { .nav-cta { display: inline-flex; } }
  @media (max-width: 720px) { .nav-links { display: none; } }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: 64px 0 96px;
    overflow: hidden;
  }

  .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.35;
    z-index: 0;
  }
  .hero-blob.b1 { width: 340px; height: 340px; background: var(--cream-2); top: -120px; right: -80px; }
  .hero-blob.b2 { width: 220px; height: 220px; background: var(--sage); opacity: 0.18; bottom: -60px; left: -60px; }

  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--coral-deep);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .hero h1 .accent { color: var(--coral); }

  .hero p.lead {
    font-size: 1.15rem;
    color: var(--brown-soft);
    max-width: 46ch;
    margin-bottom: 32px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-stat .paw-badge {
    width: 38px; height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
  }
  .hero-stat .paw-badge svg { width: 18px; height: 18px; }
  .hero-stat-text { font-size: 0.9rem; font-weight: 700; color: var(--brown-soft); }
  .hero-stat-text span { display: block; font-size: 0.78rem; font-weight: 600; color: var(--sage-deep); }

  .hero-photo-wrap {
    position: relative;
  }
  .hero-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(110, 42, 29, 0.22);
    transform: rotate(-2deg);
    border: 6px solid var(--white);
  }
  .hero-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 20%;
  }

  .hero-tape {
    position: absolute;
    top: -18px;
    left: 40px;
    width: 90px;
    height: 32px;
    background: var(--sage);
    opacity: 0.55;
    transform: rotate(-6deg);
    border-radius: 2px;
    z-index: 2;
  }

  .hero-chip {
    position: absolute;
    bottom: -22px;
    right: -18px;
    background: var(--white);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(3deg);
    z-index: 2;
  }
  .hero-chip .stars { color: var(--coral); font-size: 1.1rem; letter-spacing: 1px; }
  .hero-chip .chip-label { font-size: 0.78rem; font-weight: 700; color: var(--brown-soft); }

  /* ---------- Section shell ---------- */
  section { padding: 88px 0; position: relative; }

  .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
  }
  .section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .section-head p {
    color: var(--brown-soft);
    font-size: 1.05rem;
  }

  .divider {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 24px;
  }
  .divider svg { width: 20px; height: 20px; opacity: 0.55; }

  /* ---------- About ---------- */
  .about {
    background: var(--white);
    border-radius: 32px;
    margin: 0 24px;
    max-width: 1092px;
    padding: 72px 48px;
  }
  @media (max-width: 640px) { .about { padding: 48px 24px; } }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 880px) {
    .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  }

  .about-photo {
    position: relative;
  }
  .about-photo img {
    border-radius: 24px;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow);
  }
  .about-photo .paw-scatter {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 48px; height: 48px;
    opacity: 0.9;
  }

  .about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.3rem); margin-bottom: 18px; }
  .about-copy p { color: var(--brown-soft); margin-bottom: 16px; font-size: 1.02rem; }

  .trait-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }
  .trait {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--brown-soft);
  }
  .trait svg { width: 15px; height: 15px; flex-shrink: 0; }

  /* ---------- Services ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  @media (min-width: 720px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  .service-card:hover { transform: translateY(-6px); }

  .service-card::before {
    content: "";
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    background: var(--cream);
    border-radius: 50%;
  }

  .service-icon {
    width: 56px; height: 56px;
    background: var(--coral);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .service-icon svg { width: 28px; height: 28px; stroke: var(--white); }

  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    position: relative; z-index: 1;
  }
  .service-card p {
    color: var(--brown-soft);
    font-size: 0.96rem;
    position: relative; z-index: 1;
  }

  /* ---------- Gallery ---------- */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  @media (min-width: 720px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .polaroid {
    background: var(--white);
    padding: 10px 10px 20px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
  }
  .polaroid:nth-child(odd) { transform: rotate(-2deg); }
  .polaroid:nth-child(even) { transform: rotate(2deg); }
  .polaroid:hover { transform: rotate(0deg) scale(1.03); z-index: 2; }

  .polaroid img {
    border-radius: 3px;
    aspect-ratio: 4/5;
    object-fit: cover;
  }

  /* ---------- Reviews strip ---------- */
  .reviews {
    background: var(--brown);
    color: var(--cream);
    border-radius: 32px;
    margin: 0 24px;
    max-width: 1092px;
    padding: 64px 48px;
    text-align: center;
  }
  @media (max-width: 640px) { .reviews { padding: 48px 24px; } }
  .reviews h2 { color: var(--white); font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 12px; }
  .reviews .stars { color: var(--coral); font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 16px; }
  .reviews p { color: var(--cream-2); max-width: 50ch; margin: 0 auto; font-size: 1.05rem; }

  /* ---------- Contact ---------- */
  .contact-card {
    background: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }
  @media (min-width: 780px) {
    .contact-card { grid-template-columns: 1.2fr 0.8fr; padding: 64px 64px; }
  }
  @media (max-width: 640px) { .contact-card { padding: 40px 24px; } }

  .contact-info h2 { margin-bottom: 14px; }
  .contact-info > p { color: var(--brown-soft); margin-bottom: 28px; }

  .contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.05rem;
  }
  .contact-line .icn {
    width: 40px; height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-line .icn svg { width: 18px; height: 18px; stroke: var(--coral-deep); }
  .contact-line a:hover { color: var(--coral-deep); }

  .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

  .qr-block {
    background: var(--cream);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
  }
  .qr-block img {
    width: 100%;
    max-width: 190px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: var(--cream);
  }
  .qr-block p { font-size: 0.85rem; font-weight: 700; color: var(--brown-soft); }

  .form-card {
    background: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 56px 48px;
    margin-top: 28px;
  }
  @media (max-width: 640px) { .form-card { padding: 40px 24px; } }

  .form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
  .form-card > p { color: var(--brown-soft); margin-bottom: 28px; }

  .contact-form { max-width: 560px; }
  .hidden-field { position: absolute; left: -9999px; }

  .form-row { margin-bottom: 20px; display: flex; flex-direction: column; }
  .form-row label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brown-soft);
    margin-bottom: 8px;
  }
  .form-row input,
  .form-row textarea {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    padding: 13px 16px;
    border: 2px solid var(--cream-2);
    border-radius: 14px;
    background: var(--cream);
    color: var(--brown);
    resize: vertical;
    transition: border-color 0.2s;
  }
  .form-row input:focus,
  .form-row textarea:focus {
    outline: none;
    border-color: var(--coral);
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 24px;
  }
  .form-success.show { display: block; }
  .form-success .paw-badge {
    width: 56px; height: 56px;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
  }
  .form-success .paw-badge svg { width: 26px; height: 26px; }
  .form-success h3 { margin-bottom: 8px; }
  .form-success p { color: var(--brown-soft); }

  .form-error {
    display: none;
    color: var(--coral-deep);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 12px;
  }
  .form-error.show { display: block; }

  /* ---------- Footer ---------- */
  footer {
    padding: 40px 0 32px;
    text-align: center;
  }
  footer .brand { justify-content: center; margin-bottom: 10px; }
  footer p { color: var(--brown-soft); font-size: 0.85rem; }

  /* ---------- Reveal animation ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .service-card, .polaroid, .btn { transition: none; }
  }

  a:focus-visible, button:focus-visible {
    outline: 3px solid var(--coral-deep);
    outline-offset: 3px;
    border-radius: 4px;
  }

/* ============ BLOG ============ */
.blog-hero {
  padding: 64px 0 40px;
  text-align: center;
}
.blog-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 12px;
}
.blog-hero p {
  color: var(--brown-soft);
  max-width: 50ch;
  margin: 0 auto;
  font-size: 1.05rem;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px 0 96px;
}
@media (min-width: 720px) {
  .blog-list { grid-template-columns: repeat(2, 1fr); }
}

.blog-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); }

.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card-body { padding: 24px 26px 28px; }

.blog-card .blog-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  display: block;
}

.blog-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-card p.excerpt {
  color: var(--brown-soft);
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.blog-card .read-more {
  color: var(--coral-deep);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-empty {
  text-align: center;
  padding: 60px 24px 100px;
  color: var(--brown-soft);
}
.blog-empty .paw-badge {
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
}
.blog-empty .paw-badge svg { width: 30px; height: 30px; }

/* ---- Single post ---- */
.post-header {
  padding: 56px 0 32px;
  max-width: 760px;
  margin: 0 auto;
}
.post-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral-deep);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.post-header .blog-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 12px;
}
.post-header h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
}

.post-hero-img {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.post-hero-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 96px;
  font-size: 1.08rem;
  color: var(--brown);
}
.post-body p { margin-bottom: 22px; }
.post-body h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}
.post-body h3 {
  font-size: 1.2rem;
  margin: 32px 0 14px;
}
.post-body ul, .post-body ol {
  margin: 0 0 22px 24px;
}
.post-body li { margin-bottom: 8px; }
.post-body img {
  border-radius: 16px;
  margin: 12px 0 28px;
}
.post-body a { color: var(--coral-deep); text-decoration: underline; }

.post-footer-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 96px;
  border-top: 1px solid rgba(110, 42, 29, 0.12);
  padding-top: 32px;
}
.post-footer-nav a {
  color: var(--coral-deep);
  font-weight: 700;
}
