:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-500: #ec4899;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-500: #a855f7;
  --slate-700: #374151;
  --slate-800: #1f2937;
  --slate-600: #4b5563;
  --slate-500: #6b7280;
  --slate-400: #9ca3af;
  --white: #ffffff;
  --shadow-sm: 0 4px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.14);
  --max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--orange-50), var(--blue-50));
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
  background: linear-gradient(to bottom, var(--orange-50), var(--blue-50));
}

.site-header,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.site-header {
  padding: 16px 0;
}

.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-600);
}

.brand-subtitle {
  margin: 2px 0 0;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--slate-700);
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--orange-500);
}

.section {
  padding: 80px 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, var(--orange-100), var(--orange-50), var(--blue-100));
  padding: 80px 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.hero-pattern .paw {
  position: absolute;
  color: #fb923c;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--slate-700);
}

.hero-title {
  margin: 0 0 24px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  line-height: 1.05;
}

.hero-title .accent {
  color: var(--orange-500);
}

.hero-copy {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--slate-700);
  margin: 0 0 24px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.hero-trust-item span {
  color: var(--slate-700);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
  opacity: 0.55;
}

.button-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.button-primary:hover {
  background: var(--orange-600);
}

.button-primary:disabled,
.button-primary[disabled] {
  background: #fdba74;
  color: rgba(255, 255, 255, 0.92);
}

.button-secondary {
  background: var(--white);
  color: var(--orange-500);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
}

.button-secondary:disabled,
.button-secondary[disabled] {
  background: #f9fafb;
  color: var(--slate-400);
  border-color: #d1d5db;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-col.offset {
  padding-top: 32px;
}

.hero-frame {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.18);
  transition: transform 180ms ease;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame.h-64 {
  height: 256px;
}

.hero-frame.h-48 {
  height: 192px;
}

.hero-frame.rotate-2 {
  transform: rotate(2deg);
}

.hero-frame.rotate-neg-2 {
  transform: rotate(-2deg);
}

.hero-frame:hover {
  transform: rotate(0deg);
}

.section-heading {
  text-align: center;
  margin: 0 0 64px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.875rem;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  line-height: 1.1;
}

.section-heading p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--slate-500);
  line-height: 1.7;
}

.inline-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.icon-18 { width: 18px; height: 18px; }
.icon-20 { width: 20px; height: 20px; }
.icon-24 { width: 24px; height: 24px; }
.icon-28 { width: 28px; height: 28px; }
.icon-32 { width: 32px; height: 32px; }
.icon-40 { width: 40px; height: 40px; }

.icon-orange { color: var(--orange-500); }
.icon-blue { color: var(--blue-500); }
.icon-green { color: var(--green-500); }
.icon-pink { color: var(--pink-500); }
.icon-red { color: var(--red-500); }
.icon-purple { color: var(--purple-500); }
.icon-white { color: white; }

.icon-fill-red { fill: var(--red-500); }
.icon-fill-orange { fill: var(--orange-500); }
.icon-fill-white { fill: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  padding: 32px;
  border: 2px solid #f3f4f6;
  border-radius: 24px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 24px;
  transition: transform 180ms ease;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

.service-bg-green { background: var(--green-100); }
.service-bg-pink { background: var(--pink-50); }
.service-bg-blue { background: var(--blue-50); }
.service-bg-red { background: var(--red-50); }
.service-bg-purple { background: var(--purple-50); }
.service-bg-orange { background: var(--orange-50); }

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
}

.service-card p {
  margin: 0;
  color: var(--slate-500);
  line-height: 1.7;
}

.benefits-section {
  background: linear-gradient(to bottom, var(--orange-50), var(--blue-50));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.benefit-card {
  text-align: center;
}

.benefit-bubble {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.benefit-bg-green { background: var(--green-100); }
.benefit-bg-emerald { background: #d1fae5; }
.benefit-bg-blue { background: var(--blue-100); }
.benefit-bg-pink { background: var(--pink-100); }
.benefit-bg-orange { background: var(--orange-100); }

.benefit-card h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
}

.benefit-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.9rem;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  position: relative;
  padding: 24px;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  background: white;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.pricing-card.popular {
  border-color: var(--orange-500);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--orange-500);
  color: white;
  font-size: 0.875rem;
}

.pricing-card h3 {
  margin: 8px 0 12px;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
}

.pricing-price {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  color: var(--orange-500);
}

.pricing-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.95rem;
}

.addons-title {
  margin: 0 0 24px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.addon-card {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: linear-gradient(to bottom right, var(--orange-50), var(--blue-50));
  transition: box-shadow 180ms ease;
}

.addon-card:hover {
  box-shadow: var(--shadow-md);
}

.addon-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.addon-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
}

.addon-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.95rem;
}

.addon-price {
  color: var(--orange-500);
  font-weight: 700;
  white-space: nowrap;
}

.weekend-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--blue-100);
  color: #1d4ed8;
}

.how-section {
  position: relative;
  overflow: hidden;
}

.how-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.how-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), rgba(255,255,255,0.35), rgba(255,255,255,0.45));
}

.how-content {
  position: relative;
  z-index: 1;
}

.how-heading h2 {
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.how-heading p {
  color: var(--slate-700);
  text-shadow: 0 1px 3px rgba(255,255,255,0.9);
}

.orange-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--orange-500);
  border: 2px solid var(--orange-600);
  color: white;
  box-shadow: var(--shadow-md);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.step-wrap {
  position: relative;
}

.step-card {
  position: relative;
  height: 100%;
  padding: 56px 24px 24px;
  border: 2px solid var(--orange-200);
  border-radius: 24px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--orange-500);
  line-height: 1;
}

.step-card h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  text-align: center;
}

.step-card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.95rem;
  text-align: center;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--orange-500);
}

.timeline-card {
  max-width: 768px;
  margin: 48px auto 0;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.timeline-bubble {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-copy h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}

.timeline-copy p {
  margin: 0;
  color: var(--slate-500);
}

.cta-center {
  margin-top: 32px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.testimonial-card {
  padding: 32px;
  border: 2px solid var(--orange-200);
  border-radius: 24px;
  background: linear-gradient(to bottom right, var(--orange-50), var(--blue-50));
  transition: box-shadow 180ms ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.heart-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
}

.testimonial-card p {
  margin: 0;
  color: var(--slate-700);
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid var(--orange-500);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.2rem;
}

.testimonial-meta {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--slate-500);
}

.trust-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, var(--orange-500), var(--blue-500));
  color: white;
}

.trust-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.trust-pattern .heart {
  position: absolute;
  color: white;
  fill: white;
}

.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  text-align: center;
}

.trust-number {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.trust-label {
  margin-top: 8px;
  color: rgba(255,255,255,0.82);
}

.contact-section {
  background: linear-gradient(to bottom, var(--orange-50), var(--blue-100));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.contact-copy h2 {
  margin: 0 0 24px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.contact-copy p {
  margin: 0 0 16px;
  color: var(--slate-700);
  line-height: 1.7;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 32px;
  background: var(--blue-100);
  border: 2px solid var(--blue-500);
  color: #1d4ed8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-detail-label {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.contact-detail-value {
  color: var(--slate-800);
}

.contact-card {
  padding: 32px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  margin: 0 0 24px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.team-panel {
  display: grid;
  gap: 24px;
}

.team-stack {
  display: grid;
  gap: 18px;
}

.team-member-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  border: 1px solid rgba(249, 115, 22, 0.14);
}

.team-member-photo {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.team-member-copy h4 {
  margin: 0 0 6px;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--slate-900);
}

.team-member-role {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin: 0 0 8px;
  color: var(--slate-700);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: white;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.site-nav a.is-current {
  color: var(--orange-500);
  font-weight: 700;
}

.faq-hero {
  background: linear-gradient(to right, var(--orange-100), var(--orange-50), var(--blue-100));
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: start;
}

.faq-title {
  max-width: 12ch;
}

.faq-copy {
  max-width: 60ch;
}

.faq-quick-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.faq-quick-card h2 {
  margin: 0 0 20px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.faq-quick-list {
  display: grid;
  gap: 16px;
}

.faq-quick-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.faq-quick-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
}

.faq-quick-item p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.faq-column {
  display: grid;
  gap: 18px;
}

.faq-item {
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  line-height: 1.15;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--orange-500);
  background: var(--orange-50);
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.75;
}

.faq-answer ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--slate-700);
}

.faq-answer li {
  margin: 0 0 10px;
  line-height: 1.7;
}

.faq-cta {
  margin-top: 36px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(59, 130, 246, 0.12));
  text-align: center;
}

.faq-cta h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.faq-cta p {
  max-width: 60ch;
  margin: 0 auto 20px;
  color: var(--slate-700);
  line-height: 1.7;
}

.faq-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  background: #111827;
  color: white;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand-title {
  font-size: 1.25rem;
}

.footer-brand-subtitle,
.footer-note,
.footer-subnote {
  color: var(--slate-400);
}

.booking-drawer {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr min(640px, 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 90;
}

.booking-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-backdrop {
  background: rgba(15, 23, 42, 0.4);
  border: 0;
}

.drawer-panel {
  position: relative;
  overflow-y: auto;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,247,237,0.98));
  box-shadow: -20px 0 48px rgba(15, 23, 42, 0.16);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.booking-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: white;
  color: var(--orange-500);
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-header {
  padding-right: 48px;
}

.drawer-header h2 {
  margin: 0 0 14px;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.drawer-header p {
  margin: 0;
  color: var(--slate-500);
  line-height: 1.7;
}

.booking-form {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  background: white;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.form-span-2 {
  grid-column: 1 / -1;
}

.schedule-grid {
  align-items: start;
}

.pet-section,
.pets-container {
  display: grid;
  gap: 16px;
}

.pet-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field-note {
  color: var(--slate-500);
  font-size: 0.85rem;
}

.pet-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 18px;
  padding-top: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
}

.pet-card legend {
  color: var(--orange-500);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-right: 8px;
}

.pet-remove {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--orange-500);
  cursor: pointer;
  font-weight: 700;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 237, 213, 0.45);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
}

.form-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.summary-label {
  margin: 0 0 10px;
  color: var(--orange-500);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.form-summary strong {
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.form-message {
  min-height: 24px;
  color: var(--orange-500);
  line-height: 1.6;
}

.hidden {
  display: none;
}

@media (max-width: 1180px) {
  .hero-grid,
  .faq-hero-grid,
  .faq-layout,
  .services-grid,
  .benefits-grid,
  .pricing-grid,
  .steps-grid,
  .testimonials-grid,
  .trust-grid,
  .contact-grid,
  .footer-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-images,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    font-size: 1.2rem;
  }

  .hero-col.offset {
    padding-top: 0;
  }

  .booking-drawer {
    grid-template-columns: 1fr;
  }

  .drawer-backdrop {
    display: none;
  }

  .pet-card {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-inner,
  .footer-inner {
    width: min(var(--max), calc(100% - 20px));
  }

  .section {
    padding: 64px 0;
  }

  .hero-section {
    padding: 64px 0;
  }

  .hero-title {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .faq-title {
    max-width: none;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
}
