/* ═══════════════════════════════════════════
   CSS VARIABLES — WARM LUXURY PALETTE
   ═══════════════════════════════════════════ */
:root {
  --sage: #8A7285;
  --sage-light: #A3909F;
  --sage-pale: #D6CDD4;
  --sage-mist: #F3F0F2;
  --cream: #FAF7F2;
  --cream-warm: #F5F0E8;
  --ivory: #FFFDF9;
  --brown-deep: #3E3028;
  --charcoal: #2C2824;
  --charcoal-soft: #4A4440;
  --gold: #C9A96E;
  --gold-light: #D9C089;
  --gold-pale: #F0E6D0;
  --taupe: #B8A99A;
  --taupe-light: #D4C8BC;
  --white: #FFFFFF;
  --shadow-soft: 0 2px 20px rgba(62, 48, 40, 0.06);
  --shadow-medium: 0 8px 40px rgba(62, 48, 40, 0.1);
  --shadow-hover: 0 12px 48px rgba(62, 48, 40, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--brown-deep);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pawAppear {
  0% { opacity: 0; transform: scale(0.5) rotate(var(--paw-rot)); }
  12% { opacity: var(--paw-opacity); transform: scale(1) rotate(var(--paw-rot)); }
  80% { opacity: var(--paw-opacity); transform: scale(1) rotate(var(--paw-rot)); }
  100% { opacity: 0; transform: scale(0.9) rotate(var(--paw-rot)); }
}

.paw-print {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: pawAppear 5s ease-in-out forwards;
  --paw-opacity: 0.18;
  opacity: 0;
  user-select: none;
  width: var(--paw-size, 28px);
  height: var(--paw-size, 28px);
}
.paw-print svg {
  width: 100%;
  height: 100%;
  fill: #000;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 2px 30px rgba(62, 48, 40, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-brand-icon svg { width: 20px; height: 20px; }
.nav-brand-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--brown-deep);
}
.nav-brand-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--brown-deep); }
.nav-links a:hover::after { width: 100%; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(139, 158, 126, 0.3);
}
.btn-primary:hover {
  background: var(--brown-deep);
  box-shadow: 0 6px 24px rgba(62, 48, 40, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown-deep);
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid var(--brown-deep);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--brown-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown-deep);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 50%, var(--sage-mist) 100%);
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(139, 158, 126, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Paw prints are generated dynamically by JS */

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--brown-deep);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 480px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--taupe);
  margin-bottom: 36px;
}
.hero-location svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.hero-image-wrapper {
  position: relative;
  animation: scaleIn 1s ease-out 0.3s both;
}

.hero-image {
  /* INSERT HERO PHOTO */
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--sage-pale) 0%, var(--taupe-light) 50%, var(--cream-warm) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 5;
}
.hero-image svg { width: 64px; height: 64px; opacity: 0.4; }

.hero-image img.carousel-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 15s infinite ease-in-out;
  z-index: 1;
}

@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.05); }
  5%   { opacity: 1; transform: scale(1); }
  33%  { opacity: 1; transform: scale(1); }
  38%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; }
}

/* Floating review badge on hero image */
.hero-float-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1s ease-out 0.8s both;
}
.hero-float-badge .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.hero-float-badge .badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown-deep);
}
.hero-float-badge .badge-sub {
  font-size: 0.7rem;
  color: var(--taupe);
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   DIFFERENTIATORS
   ═══════════════════════════════════════════ */
.differentiators {
  background: var(--white);
  position: relative;
}
.differentiators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}

.diff-header {
  text-align: center;
  margin-bottom: 64px;
}
.diff-header .section-subtitle {
  margin: 0 auto;
}

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

.diff-card {
  text-align: center;
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--transition);
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 169, 110, 0.25);
}
.diff-card:hover::before { opacity: 1; }

.diff-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-mist), var(--sage-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition);
}
.diff-card:hover .diff-icon {
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
}
.diff-icon svg {
  width: 32px;
  height: 32px;
  color: var(--sage);
  transition: color var(--transition);
}
.diff-card:hover .diff-icon svg { color: var(--white); }

.diff-card h3 {
  font-size: 1.35rem;
  color: var(--brown-deep);
  margin-bottom: 12px;
}
.diff-card p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  font-weight: 300;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SERVICES & PRICING
   ═══════════════════════════════════════════ */
.services {
  background: var(--cream);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-eyebrow { justify-content: center; }
.services-header .section-eyebrow::before { display: none; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 169, 110, 0.2);
}

.service-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(201, 169, 110, 0.15));
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.6rem;
  color: var(--brown-deep);
  margin-bottom: 6px;
}
.service-card .service-tagline {
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 16px;
}

.service-includes {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  font-weight: 300;
  padding: 14px 0;
  border-top: 1px solid var(--sage-mist);
  border-bottom: 1px solid var(--sage-mist);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-includes strong {
  font-weight: 500;
  color: var(--charcoal);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.92rem;
}
.price-row:not(:last-child) {
  border-bottom: 1px dashed rgba(201, 169, 110, 0.15);
}
.price-label {
  color: var(--charcoal-soft);
  font-weight: 400;
}
.price-value {
  color: var(--brown-deep);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Add-Ons card */
.addons-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all var(--transition);
}
.addons-card:hover {
  box-shadow: var(--shadow-hover);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.addon-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.addon-item:hover {
  background: var(--sage-mist);
  transform: translateY(-3px);
}
.addon-item h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 6px;
}
.addon-item .addon-price {
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 500;
}

.services-note {
  text-align: center;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--taupe);
  margin-top: 28px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-photo {
  /* INSERT TRACY'S PHOTO */
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--sage-pale), var(--taupe-light), var(--cream-warm));
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-medium);
  position: relative;
}
.about-photo svg { width: 56px; height: 56px; opacity: 0.4; }

.about-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold-pale);
  opacity: 0.5;
  z-index: -1;
}

.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 28px; }

.about-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--charcoal-soft);
  font-weight: 300;
}
.about-text p + p {
  margin-top: 16px;
}

.about-signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-sig-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
}
.about-sig-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown-deep);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 158, 126, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials .section-eyebrow { color: var(--gold-light); justify-content: center; }
.testimonials .section-eyebrow::before { background: var(--gold-light); display: none; }
.testimonials .section-title { color: var(--cream); text-align: center; }
.testimonials .section-subtitle { color: rgba(250, 247, 242, 0.6); text-align: center; margin: 0 auto 64px; }

.testimonials-header { text-align: center; margin-bottom: 64px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.85);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card blockquote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}
.testimonial-label {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.4);
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   BOOKING / CONTACT
   ═══════════════════════════════════════════ */
.booking {
  background: var(--cream);
}

.booking-header {
  text-align: center;
  margin-bottom: 64px;
}
.booking-header .section-eyebrow { justify-content: center; }
.booking-header .section-eyebrow::before { display: none; }
.booking-header .section-subtitle { margin: 0 auto; }

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.booking-form-card h3 {
  font-size: 1.5rem;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.booking-form-card .form-sub {
  font-size: 0.88rem;
  color: var(--taupe);
  margin-bottom: 32px;
  font-weight: 300;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 14px 18px;
  border: 1.5px solid var(--sage-pale);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(139, 158, 126, 0.1);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B9E7E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 12px;
}
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 0.95rem;
}

/* Contact info column */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(201, 169, 110, 0.08);
  box-shadow: var(--shadow-soft);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.info-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--sage);
}

.info-card h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-card p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  font-weight: 300;
}
.info-card p strong {
  font-weight: 500;
  color: var(--charcoal);
}

/* Map placeholder */
.map-placeholder {
  /* INSERT GOOGLE MAPS EMBED */
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--sage-mist), var(--cream-warm));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 500;
  gap: 8px;
  border: 1px dashed var(--sage-pale);
}
.map-placeholder svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.6);
  padding: 20px 0 16px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand .nav-brand-text {
  color: var(--cream);
  margin-bottom: 12px;
  display: block;
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  font-weight: 300;
  margin-top: 12px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--cream);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social a:hover {
  background: var(--sage);
  border-color: var(--sage);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  color: rgba(250, 247, 242, 0.7);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  font-weight: 300;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
}
.footer-badge svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrapper { max-width: 500px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-sub { margin: 0 auto 12px; }
  .hero-location { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-float-badge { left: 20px; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-col { max-width: 400px; margin: 0 auto; }
  .about-content { text-align: center; }
  .about-content .section-eyebrow { justify-content: center; }
  .about-content .section-eyebrow::before { display: none; }
  .about-signature { justify-content: center; }

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

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links { 
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 0 72px; }
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); }

  .diff-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

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

  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .form-grid { grid-template-columns: 1fr; }
  .booking-form-card { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .hero-badge { font-size: 0.7rem; }
  .section-title { font-size: 1.8rem; }
  .service-card { padding: 32px 24px; }
  .diff-card { padding: 36px 24px; }
  .shop-filters { gap: 8px; }
  .shop-filter-btn { padding: 8px 16px; font-size: 0.75rem; }
  .product-card-body { padding: 20px 16px; }
}

/* ═══════════════════════════════════════════
   TRACY'S PICKS — SHOP / AFFILIATE SECTION
   ═══════════════════════════════════════════ */
.shop {
  background: var(--white);
  position: relative;
}
.shop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}

.shop-header {
  text-align: center;
  margin-bottom: 48px;
}
.shop-header .section-eyebrow { justify-content: center; }
.shop-header .section-eyebrow::before { display: none; }
.shop-header .section-subtitle { margin: 0 auto; }

.shop-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--taupe);
  font-weight: 300;
  font-style: italic;
  max-width: 600px;
  margin: -28px auto 48px;
  line-height: 1.6;
}

/* Filter tabs */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.shop-filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--sage-pale);
  background: transparent;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all var(--transition);
}
.shop-filter-btn:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-mist);
}
.shop-filter-btn.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  box-shadow: 0 4px 16px rgba(139, 158, 126, 0.3);
}

/* Product grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card.hidden {
  display: none;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 169, 110, 0.2);
}

.product-card-image {
  /* INSERT PRODUCT PHOTO */
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, var(--sage-mist), var(--cream-warm));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--sage-light);
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.product-card-image svg {
  width: 36px;
  height: 36px;
  opacity: 0.35;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.product-card-category {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  color: var(--charcoal-soft);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card-body .product-desc {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-body .product-tracy-note {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--sage);
  font-weight: 400;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: var(--sage-mist);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage-pale);
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-deep);
}

.product-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.product-shop-btn:hover {
  background: var(--brown-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(62, 48, 40, 0.2);
}
.product-shop-btn svg { width: 13px; height: 13px; }

/* "Load more" / expandable */
.shop-load-more {
  text-align: center;
  margin-top: 44px;
}
.shop-load-more .btn-outline {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}
