@font-face {
  font-family: 'Baloo 2';
  src: url('fonts/Baloo2-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Baloo 2';
  src: url('fonts/Baloo2-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('fonts/NunitoSans-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('fonts/NunitoSans-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('fonts/NunitoSans-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('fonts/Caveat-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #331229;
  --mulberry: #5C2350;
  --mulberry-deep: #4A1C40;
  --meadow: #4E9257;
  --green-ink: #35663C;
  --green-ink-cream: #2E5A35;
  --sky: #8CB8CC;
  --cream: #F4EFDA;
  --page: #FBF9F0;
  --muted: #6B5E66;
  --on-dark: #F3E9EF;
  --on-dark-accent: #DDBFD6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.5;
  padding-bottom: 0; /* Changed by JS/CSS for mobile */
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

/* Preview Ribbon */
#preview-ribbon {
  background: #000;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  z-index: 9999;
  position: relative;
}
#preview-ribbon a {
  color: #fff;
  text-decoration: none;
  background: #333;
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
}
#preview-ribbon button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  margin-left: auto;
}
@media (max-width: 768px) {
  #preview-ribbon { flex-wrap: wrap; text-align: center; }
  #preview-ribbon button { margin: 0 auto; }
}

/* Masthead */
header.masthead {
  background: var(--page);
  padding: 16px 0;
  position: relative;
  z-index: 100;
}
.masthead .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  width: 56px;
  height: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.brand-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav a.nav-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
}
.desktop-nav a.nav-link:hover {
  color: var(--mulberry);
}
.cta-pill {
  background: var(--mulberry-deep);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-pill:hover {
  background: var(--mulberry);
}

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .brand-text { display: none; } /* Adjust if needed based on comp */
  
  details.mobile-nav-details {
    position: relative;
  }
  summary.mobile-nav-summary {
    list-style: none;
    cursor: pointer;
    font-size: 24px;
    padding: 8px;
    display: flex;
    align-items: center;
  }
  summary.mobile-nav-summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--page);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
    z-index: 200;
  }
  .mobile-nav-content a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 18px;
    padding: 12px 0;
  }
  
  body {
    padding-bottom: 80px; /* Space for sticky bar */
  }
  .sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--mulberry-deep);
    padding: 16px;
    z-index: 999;
    text-align: center;
  }
  .sticky-mobile-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}
@media (min-width: 769px) {
  .sticky-mobile-bar { display: none; }
}

/* Typography elements */
.kicker {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-ink-cream);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.kicker svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

h1 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
@media (max-width: 768px) { h1 { font-size: 48px; } }

h2 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}
@media (max-width: 768px) { h2 { font-size: 32px; } }

.subhead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
}

/* Hero Fold */
.hero {
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0 0; /* Bottom padding handled by SVG */
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg, rgba(140, 184, 204, 0.14) 0deg 15deg, transparent 15deg 30deg);
  -webkit-mask-image: radial-gradient(circle, black 0%, transparent 60%);
  mask-image: radial-gradient(circle, black 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: raysFade 2s ease-out;
  }
  @keyframes raysFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-text {
  flex: 1;
  padding-bottom: 120px;
}
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
}
.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 50% 50% 18px 18px;
  border: 8px solid #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  object-fit: cover;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.cta-outline {
  border: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 16px;
}
.cta-outline:hover {
  background: rgba(51, 18, 41, 0.05);
}

.hero-proof {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-proof svg {
  color: #D9A514;
  fill: currentColor;
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .hero-content { flex-direction: column; gap: 32px; }
  .hero-text { padding-bottom: 32px; text-align: left; }
  .hero-image-wrapper { justify-content: center; margin-bottom: 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cta-pill, .cta-outline { text-align: center; justify-content: center; }
}

.meadow-arc {
  position: relative;
  z-index: 10;
  width: 100%;
  display: block;
  margin-top: -80px;
}

/* Sections Rhythm */
section {
  padding: 96px 0;
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
}
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpAnim 0.8s ease-out forwards;
  }
  @keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Report Cards Section */
.report-cards-section {
  background: #fff;
  overflow: hidden;
}
.report-cards-layout {
  display: flex;
  align-items: center;
  gap: 64px;
}
.report-text {
  flex: 1;
}
.report-visual {
  flex: 1;
  position: relative;
  min-height: 400px;
}
.card-artifact {
  background: #FFFDF6;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  position: absolute;
}
.card-a {
  top: 0;
  left: 0;
  width: 380px;
  transform: rotate(2deg);
  z-index: 2;
}
.card-b {
  top: 140px;
  left: 280px;
  width: 320px;
  transform: rotate(-3deg);
  z-index: 3;
}
.sample-pill {
  background: var(--green-ink-cream);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 99px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.card-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 16px;
}
.card-field {
  margin-bottom: 12px;
}
.card-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.card-value {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 4px;
}
.crew-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.crew-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.crew-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.crew-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.crew-breed {
  font-size: 12px;
  color: var(--muted);
}
.crew-note {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--green-ink);
  margin-top: 16px;
}
@media (max-width: 768px) {
  .report-cards-layout { flex-direction: column; }
  .report-visual { width: 100%; min-height: 700px; }
  .card-a { left: 0; width: 100%; }
  .card-b { left: 0; top: 320px; width: 100%; max-width: 100%; }
}

/* Day at the House */
.day-section {
  text-align: center;
}
.day-photos {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
  align-items: flex-end;
}
.day-photos img {
  width: calc(25% - 18px);
  max-width: 260px;
  object-fit: cover;
}
.photo-arch {
  aspect-ratio: 0.8;
  border-radius: 50% 50% 18px 18px;
}
.photo-round {
  aspect-ratio: 1;
  border-radius: 18px;
}
.day-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.feature-item svg {
  width: 24px;
  height: 24px;
  fill: var(--mulberry);
  margin-bottom: 16px;
}
.feature-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 768px) {
  .day-photos { flex-direction: row; flex-wrap: wrap; }
  .day-photos img { width: calc(50% - 12px); max-width: 100%; }
  .day-features { grid-template-columns: 1fr; }
}

/* Reviews */
.reviews-section {
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.review-card {
  background: #FFFDF6;
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.stars {
  color: #D9A514;
  margin-bottom: 16px;
  font-size: 14px;
}
.review-quote {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--ink);
}
.review-author {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.breed-chip {
  display: inline-block;
  background: #EAF3E4;
  color: var(--green-ink-cream);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}
.reviews-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.reviews-proof svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Meet Sam */
.meet-sam {
  display: flex;
  align-items: center;
  gap: 64px;
}
.meet-sam-img {
  flex: 1;
  border-radius: 50% 50% 18px 18px;
  max-width: 400px;
  width: 100%;
}
.meet-sam-text {
  flex: 1;
}
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.cert-item svg {
  width: 16px;
  height: 16px;
  fill: var(--meadow);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .meet-sam { flex-direction: column; }
}

/* Mary Band */
.mary-band {
  background-color: var(--mulberry);
  color: var(--on-dark);
  text-align: center;
  padding: 96px 0;
}
.mary-band h2 {
  color: #fff;
}
.mary-band p {
  max-width: 600px;
  margin: 0 auto 32px auto;
  color: var(--on-dark-accent);
}
.mary-quote {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  padding: 32px;
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  margin-bottom: 16px;
}
.mary-attr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--on-dark-accent);
  margin-bottom: 32px;
}
.mary-close {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: #fff;
}

/* Rates & Form */
.rates-form-section .container {
  display: flex;
  gap: 64px;
}
.rates-info {
  flex: 1.2;
}
.rates-list {
  margin-bottom: 48px;
}
.rate-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 15px;
}
.rate-item:last-child {
  border-bottom: none;
}
.rate-name {
  color: var(--muted);
}
.rate-price {
  font-weight: 700;
  color: var(--mulberry);
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step-item {
  display: flex;
  gap: 16px;
}
.step-number {
  background: var(--cream);
  color: var(--ink);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.step-text h4 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.step-text p {
  font-size: 13px;
  color: var(--muted);
}

.inquiry-form-wrapper {
  flex: 0.8;
  background: #FFFDF6;
  border-radius: 16px;
  padding: 32px;
}
.inquiry-form-wrapper h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 24px;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-input, .form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}
.form-submit {
  width: 100%;
  background: var(--mulberry-deep);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.form-submit:hover {
  background: var(--mulberry);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
.form-message {
  display: none;
  color: var(--meadow);
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .rates-form-section .container { flex-direction: column; }
}

/* Footer */
.footer-arc {
  width: 100%;
  display: block;
  margin-bottom: -1px;
}
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand img {
  width: 64px;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--on-dark-accent);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
  color: var(--on-dark-accent);
}
.footer-links a:hover {
  color: var(--on-dark-accent);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.footer-signoff {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Boarding & Daycare Page Specific */
.internal-header {
  background: var(--cream);
  padding: 80px 0 120px;
  text-align: center;
  position: relative;
}
.internal-arc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: -1px;
}
.services-blocks {
  display: flex;
  gap: 48px;
  margin-bottom: 64px;
}
.service-block {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.service-block h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--ink);
}
.holiday-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}
.holiday-table th, .holiday-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}
.holiday-table th {
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
}
.policies-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policies-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
}
.policies-list li svg {
  fill: var(--mulberry);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .services-blocks { flex-direction: column; }
}
.feature-image-wide {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 64px;
}
