/* ============================================
   Annalee's Pet Sitting — Design System
   Soft pastel purple + pastel yellow
   ============================================ */

:root {
  /* Primary: pastel purple scale (token names kept for compatibility) */
  --teal-950: #3d3450;
  --teal-900: #4f4466;
  --teal-800: #6b5f8a;
  --teal-700: #8b7aaf;
  --teal-600: #a090c0;
  --teal-500: #b8a9d4;
  --teal-400: #cfc2e6;
  --teal-100: #ebe4f5;
  --teal-50: #f6f2fb;

  /* Accent: pastel yellow */
  --coral-600: #d4c078;
  --coral-500: #e4d18a;
  --coral-400: #efe0a8;
  --coral-100: #fdf8e8;

  /* Neutrals — soft lavender-gray, white-first */
  --sand-50: #ffffff;
  --sand-100: #f7f5fa;
  --sand-200: #ebe6f2;
  --sand-300: #d8d0e4;

  --ink: #3a3450;
  --ink-soft: #5a5470;
  --ink-muted: #8a84a0;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(90, 80, 120, 0.05);
  --shadow: 0 4px 20px rgba(90, 80, 120, 0.07);
  --shadow-md: 0 12px 40px rgba(90, 80, 120, 0.09);
  --shadow-lg: 0 24px 60px rgba(90, 80, 120, 0.12);

  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --header-h: 72px;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--teal-800);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal-950);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
  line-height: 1.7;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--coral-500);
  border-radius: 2px;
}
.gradient-text {
  background: linear-gradient(120deg, var(--teal-700), var(--teal-500) 50%, var(--coral-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
  color: white;
  box-shadow: 0 4px 16px rgba(139, 122, 175, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(139, 122, 175, 0.36);
}
.btn-coral {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
  color: var(--teal-950);
  box-shadow: 0 4px 16px rgba(212, 192, 120, 0.3);
}
.btn-coral:hover {
  box-shadow: 0 8px 24px rgba(212, 192, 120, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--teal-800);
  border: 1.5px solid var(--sand-300);
}
.btn-ghost:hover {
  border-color: var(--teal-600);
  background: var(--teal-50);
}
.btn-white {
  background: white;
  color: var(--teal-800);
  box-shadow: var(--shadow);
  border: 1px solid var(--sand-200);
}
.btn-white:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-400);
}
.btn-small { padding: 0.65rem 1.2rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--sand-200);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  z-index: 110;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--teal-500), var(--teal-700));
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(139, 122, 175, 0.25);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--teal-950);
}
.logo-text span {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.5rem;
}
.site-nav a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s;
}
.site-nav a:not(.btn):hover,
.site-nav a:not(.btn).is-active {
  color: var(--teal-700);
}
.site-nav a:not(.btn).is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--coral-500);
  border-radius: 2px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 110;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(184, 169, 212, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(228, 209, 138, 0.22), transparent 55%),
    linear-gradient(180deg, var(--teal-50) 0%, var(--white) 70%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand-200);
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--teal-800);
  line-height: 1.2;
}
.hero-meta span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Hero visual card */
.hero-card-wrap {
  position: relative;
  /* Room so side floats don’t clip into the card body */
  padding: 0.35rem 0.85rem 0;
}
.hero-card {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  border: 1px solid var(--sand-200);
  z-index: 1;
}
.hero-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background:
    linear-gradient(160deg, rgba(139, 122, 175, 0.2), rgba(79, 68, 102, 0.35)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Crect fill='%23b8a9d4' width='400' height='300'/%3E%3Ccircle cx='120' cy='180' r='50' fill='%23cfc2e6' opacity='0.55'/%3E%3Ccircle cx='280' cy='100' r='70' fill='%23efe0a8' opacity='0.45'/%3E%3Ccircle cx='200' cy='200' r='40' fill='%23e4d18a' opacity='0.35'/%3E%3C/svg%3E") center/cover;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: visible;
  z-index: 0;
}
.hero-card-image .badge {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-card-body {
  position: relative;
  z-index: 3;
  background: white;
  padding: 1.5rem 1.65rem 1.75rem;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.hero-card-body h3 {
  margin-bottom: 0.35rem;
}
.hero-card-body p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}
.price-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.price-pill {
  background: var(--teal-50);
  color: var(--teal-800);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--teal-100);
}
.price-pill strong {
  color: var(--coral-600);
}
/* Float chips sit on the image only — never over the body copy */
.hero-float {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.7rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--sand-200);
  z-index: 2;
  max-width: min(200px, 48%);
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}
.hero-float.f1 {
  top: 1rem;
  right: 0.85rem;
  left: auto;
  bottom: auto;
  animation-delay: 0s;
}
.hero-float.f2 {
  top: auto;
  bottom: 1rem;
  left: auto;
  right: 0.85rem;
  animation-delay: 1.5s;
}
.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.float-icon.teal { background: var(--teal-100); }
.float-icon.coral { background: var(--coral-100); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}
.section-header {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}
.section-header.center {
  text-align: center;
  margin-inline: auto;
}
.section-header.center .eyebrow {
  justify-content: center;
}
.section-header.center .eyebrow::before { display: none; }
.section-header p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}
.section-alt {
  background: var(--teal-50);
  border-block: 1px solid var(--sand-200);
}
.section-teal {
  background: linear-gradient(160deg, var(--teal-100) 0%, var(--coral-100) 55%, var(--teal-50) 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--sand-200);
}
.section-teal::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  top: -100px;
  right: -80px;
}
.section-teal h2,
.section-teal h3 { color: var(--teal-950); }
.section-teal .lead,
.section-teal p { color: var(--ink-soft); }
.section-teal .eyebrow { color: var(--teal-700); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card.featured {
  border-color: var(--teal-100);
  background: linear-gradient(180deg, white 0%, var(--teal-50) 100%);
}
.service-card.featured::before {
  content: "Most popular for travel";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--coral-400);
  color: var(--teal-950);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
}
.service-card h3 { margin-bottom: 0.5rem; }
.service-card > p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-200);
}
.service-price .amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--teal-800);
  line-height: 1;
}
.service-price .unit {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.925rem;
  color: var(--ink-soft);
}
.service-includes li::before {
  content: "✓";
  color: var(--teal-600);
  font-weight: 700;
  flex-shrink: 0;
}

/* Feature / why us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--sand-200);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--teal-100);
  box-shadow: var(--shadow);
}
.feature-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral-500);
  margin-bottom: 0.75rem;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Pricing table */
.pricing-intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.pricing-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 1.15rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--sand-200);
}
.pricing-table th {
  background: var(--teal-100);
  color: var(--teal-950);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--teal-50); }
.pricing-table .service-name {
  font-weight: 600;
  color: var(--teal-950);
}
.pricing-table .service-desc {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}
.pricing-table .price-cell {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal-700);
  white-space: nowrap;
}
.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-sm);
}
.pricing-card.highlight {
  background: linear-gradient(165deg, var(--teal-100), var(--coral-100));
  color: var(--ink);
  border: 1px solid var(--teal-400);
}
.pricing-card.highlight h3,
.pricing-card.highlight .amount { color: var(--teal-950); }
.pricing-card.highlight p,
.pricing-card.highlight .unit,
.pricing-card.highlight li { color: var(--ink-soft); }
.pricing-card.highlight li::before { color: var(--teal-700); }
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card > p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.pricing-card .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--teal-800);
  line-height: 1;
}
.pricing-card .unit {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-left: 0.25rem;
}
.pricing-card ul {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pricing-card li {
  display: flex;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.pricing-card li::before {
  content: "✓";
  color: var(--teal-600);
  font-weight: 700;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--sand-200);
  text-align: center;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-800);
  font-weight: 700;
  font-family: var(--font-display);
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open],
.faq-item:hover {
  border-color: var(--teal-100);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  color: var(--teal-950);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--teal-600);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item .faq-body {
  padding: 0 1.35rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(184, 169, 212, 0.35), rgba(107, 95, 138, 0.4)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='500' viewBox='0 0 400 500'%3E%3Crect fill='%23b8a9d4' width='400' height='500'/%3E%3Ccircle cx='200' cy='220' r='90' fill='%23cfc2e6' opacity='0.5'/%3E%3Cellipse cx='200' cy='400' rx='120' ry='80' fill='%23efe0a8' opacity='0.45'/%3E%3C/svg%3E") center/cover;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
}
.about-photo-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--teal-900);
  font-size: 1.05rem;
}
.about-photo-badge span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.about-content .lead { margin: 1rem 0 1.5rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat {
  background: var(--teal-50);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
  border: 1px solid var(--teal-100);
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-800);
}
.about-stat span {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* CTA band */
.cta-band {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band .lead {
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info {
  background: linear-gradient(165deg, var(--teal-100), var(--coral-100) 70%, var(--teal-50));
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sand-200);
}
.contact-info::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  bottom: -60px;
  right: -40px;
}
.contact-info h2 { color: var(--teal-950); margin-bottom: 0.75rem; }
.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.contact-info a { color: var(--teal-800); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.contact-detail {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contact-detail a:hover { text-decoration: underline; }
.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  margin-bottom: 0.35rem;
}
.contact-form-card > p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--sand-200);
  border-radius: var(--radius-sm);
  background: var(--sand-100);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(184, 169, 212, 0.35);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success,
.form-error {
  display: none;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.form-success {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-900);
}
.form-success a {
  color: var(--teal-800);
  font-weight: 600;
  text-decoration: underline;
}
.form-error {
  background: #fdf2f2;
  border: 1px solid #f0d0d0;
  color: #6b3a3a;
}
.form-error a {
  color: #8b4a4a;
  font-weight: 600;
  text-decoration: underline;
}
.form-success.is-visible,
.form-error.is-visible {
  display: block;
}
.form-success[hidden],
.form-error[hidden] {
  display: none !important;
}
.form-delivery-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
#form-submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(184, 169, 212, 0.25), transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(228, 209, 138, 0.18), transparent),
    linear-gradient(180deg, var(--teal-50), var(--white));
  border-bottom: 1px solid var(--sand-200);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb span[aria-current] { color: var(--teal-800); font-weight: 600; }

/* Content blocks */
.content-block {
  max-width: 720px;
}
.content-block h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.65rem;
}
.content-block h3 {
  margin: 1.5rem 0 0.5rem;
}
.content-block p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.content-block ul {
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.content-block li {
  display: flex;
  gap: 0.6rem;
  color: var(--ink-soft);
}
.content-block li::before {
  content: "🐾";
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Two-col service detail */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.service-detail:nth-child(even) {
  direction: rtl;
}
.service-detail:nth-child(even) > * {
  direction: ltr;
}
.service-detail-visual {
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--teal-100), var(--teal-50));
  border: 1px solid var(--teal-100);
  display: grid;
  place-items: center;
  font-size: 5rem;
  box-shadow: var(--shadow);
}
.service-detail-visual.overnight {
  background: linear-gradient(145deg, var(--coral-100), #fffef6);
  border-color: var(--coral-100);
}
.service-detail-content .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin: 1rem 0 1.25rem;
}
.service-detail-content .price-tag .amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal-800);
}
.service-detail-content .price-tag .unit {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Footer */
.site-footer {
  background: var(--teal-50);
  color: var(--ink-soft);
  padding: 3.5rem 0 0;
  border-top: 1px solid var(--sand-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--sand-200);
}
.footer-brand .logo-text { color: var(--teal-950); }
.footer-brand .logo-text span { color: var(--ink-muted); }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--teal-950);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.925rem;
  padding: 0.3rem 0;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-800); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-item span:first-child {
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }
  #service-areas .features-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .service-detail:nth-child(even) { direction: ltr; }
  .hero-float { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid,
  .pricing-cards { grid-template-columns: 1fr; }
  .service-card.featured::before {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
  }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 2rem;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .site-nav a {
    font-size: 1.25rem;
    padding: 0.75rem;
  }
  .site-nav a:not(.btn).is-active::after { display: none; }
  .features-grid,
  .process-steps,
  .about-stats,
  .form-row,
  .footer-grid,
  #service-areas .features-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-meta { gap: 1.25rem; }
  .pricing-table th,
  .pricing-table td {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }
  .pricing-table .price-cell { font-size: 1.1rem; }
  .pricing-table .service-desc { display: none; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Calendly / Availability */
.cal-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: white;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.cal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.35fr;
  gap: 2rem;
  align-items: start;
}
.cal-sidebar h2 {
  margin-bottom: 0.75rem;
}
.cal-sidebar > p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.cal-tips {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.cal-tips li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: 0;
  line-height: 1.55;
}
.cal-tips a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cal-rate-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.cal-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--teal-100);
}
.cal-embed-wrap {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 480px;
}
.cal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1rem 0;
  background: var(--sand-50);
  border-bottom: 1px solid var(--sand-200);
}
.cal-tab {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: white;
  border: 1.5px solid var(--sand-200);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.cal-tab:hover {
  border-color: var(--teal-400);
  color: var(--teal-800);
}
.cal-tab.is-active {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: white;
}
.cal-embed {
  width: 100%;
}
.cal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 3.5rem) 1.75rem;
  min-height: 420px;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 169, 212, 0.2), transparent),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(228, 209, 138, 0.15), transparent),
    white;
}
.cal-placeholder[hidden],
.cal-embed[hidden] {
  display: none !important;
}
.cal-placeholder-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}
.cal-placeholder h3 {
  margin-bottom: 0.5rem;
}
.cal-placeholder p {
  color: var(--ink-soft);
  max-width: 28rem;
  margin-bottom: 1.25rem;
}
.cal-placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cal-setup-hint {
  font-size: 0.8rem !important;
  color: var(--ink-muted) !important;
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  max-width: 32rem !important;
  text-align: left;
  line-height: 1.55;
}
.cal-setup-hint code {
  font-size: 0.78rem;
  background: white;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  border: 1px solid var(--sand-200);
  word-break: break-all;
}
.setup-steps {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.setup-steps li {
  display: list-item;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.setup-steps li::before { content: none; }

/* Apple Calendar month grid */
.apple-cal-panel {
  padding: 0;
}
.apple-cal {
  padding: 1.25rem 1.25rem 1.5rem;
}
.apple-cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.apple-cal-toolbar h3 {
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
  flex: 1;
}
.apple-cal-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--sand-200);
  background: white;
  color: var(--teal-800);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s;
}
.apple-cal-nav:hover {
  border-color: var(--teal-400);
  background: var(--teal-50);
}
.apple-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.apple-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.apple-cal-day {
  min-height: 64px;
  border-radius: 12px;
  border: 1px solid var(--sand-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.35rem 0.2rem;
  background: white;
  font-size: 0.9rem;
}
.apple-cal-day.is-empty {
  border: none;
  background: transparent;
  min-height: 64px;
}
.apple-cal-day.is-open {
  background: #f4faf4;
  border-color: #c5e0c8;
  color: #3d6b45;
}
.apple-cal-day.is-busy {
  background: var(--coral-100);
  border-color: #ecd89a;
  color: #7a6a30;
}
.apple-cal-day.is-past {
  background: var(--sand-100);
  color: var(--ink-muted);
  opacity: 0.7;
}
.apple-cal-day.is-today {
  box-shadow: 0 0 0 2px var(--teal-500);
}
.apple-cal-num {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
}
.apple-cal-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}
.apple-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.apple-cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.apple-cal-legend i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  display: inline-block;
}
.apple-cal-legend .lg-open {
  background: #c5e0c8;
  border: 1px solid #9ec9a4;
}
.apple-cal-legend .lg-busy {
  background: var(--coral-400);
  border: 1px solid var(--coral-600);
}
.apple-cal-legend .lg-today {
  background: white;
  box-shadow: 0 0 0 2px var(--teal-500);
}
.apple-cal-upcoming-wrap {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-200);
}
.apple-cal-upcoming-wrap h4 {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: 0.75rem;
}
.apple-cal-upcoming ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.apple-cal-upcoming li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.75rem;
  background: var(--coral-100);
  border-radius: var(--radius-sm);
  border: 1px solid #f0e4b8;
}
.apple-cal-upcoming li .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-600);
  flex-shrink: 0;
}
.apple-cal-upcoming li em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8a7638;
  margin-left: auto;
}
.apple-cal-list-empty {
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.cal-note.is-error {
  background: #fdf2f2;
  border-color: #f0d0d0;
  color: #6b3a3a;
}

@media (max-width: 600px) {
  .apple-cal-day {
    min-height: 52px;
    border-radius: 8px;
  }
  .apple-cal-tag {
    font-size: 0.55rem;
  }
  .apple-cal-num {
    font-size: 0.9rem;
  }
}

@media (max-width: 960px) {
  .cal-layout {
    grid-template-columns: 1fr;
  }
}

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
