/* ===========================================================
   PAWS & PICNIC — Luxury Dog Picnics
   Pastel Peach-Pink Aesthetic
   =========================================================== */

:root {
  /* Core palette */
  --peach-50:  #FFF8F5;
  --peach-100: #FFEDE4;
  --peach-200: #FFD9CA;
  --peach-300: #F7C6C0;
  --peach-400: #EFB0A8;
  --peach-500: #E29A92;
  --peach-600: #C87A70;

  --pink-50:   #FFF4F6;
  --pink-100:  #FFE1E7;
  --pink-200:  #FFC8D4;
  --pink-300:  #F5A5B8;
  --pink-400:  #E6839B;

  --cream:     #FFFAF3;
  --ivory:     #FDF6EC;
  --sand:      #F4E3D3;

  --blue-50:   #F2F7FB;
  --blue-100:  #DDE9F3;
  --blue-200:  #B8D3E6;
  --blue-300:  #8FB8D3;

  --ink-900:   #3A2A2A;
  --ink-700:   #5C4646;
  --ink-500:   #8A7070;
  --ink-300:   #C4B0B0;

  /* Semantic */
  --bg:        var(--peach-50);
  --surface:   #FFFFFF;
  --text:      var(--ink-900);
  --muted:     var(--ink-500);
  --accent:    var(--peach-400);
  --accent-dk: var(--peach-600);
  --gold:      #D4A574;

  /* Typography */
  --font-body:    'Nunito', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(226, 154, 146, 0.08);
  --shadow:    0 8px 24px rgba(226, 154, 146, 0.12);
  --shadow-lg: 0 20px 50px rgba(226, 154, 146, 0.18);
  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 32px;

  --max-w: 1200px;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }

/* ============== DECOR BACKGROUND ============== */
.decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.decor-item {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.14;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(226, 154, 146, 0.3));
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-20px) rotate(5deg); }
}

/* Soft gradient orbs in background */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink-200), transparent);
  top: -150px; right: -150px;
}
body::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--peach-200), transparent);
  bottom: -100px; left: -100px;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--peach-400), var(--pink-300));
  color: white;
  box-shadow: 0 6px 18px rgba(226, 131, 155, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(226, 131, 155, 0.45);
}
.btn-outline {
  background: white;
  color: var(--accent-dk);
  border: 2px solid var(--peach-300);
}
.btn-outline:hover {
  background: var(--peach-300);
  color: white;
  border-color: var(--peach-300);
}
.btn-ghost {
  background: transparent;
  color: var(--accent-dk);
  border: 1.5px solid var(--peach-300);
}
.btn-ghost:hover {
  background: var(--peach-100);
}
.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 154, 146, 0.1);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink-900);
  flex-shrink: 0;
}
.nav-logo img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--peach-200);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--accent-dk); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border-top: 1px solid var(--peach-100);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-weight: 600;
  padding: 0.5rem 0;
  color: var(--ink-700);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 1.5rem 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg.no-img {
  background:
    radial-gradient(ellipse at top left, var(--pink-200), transparent 50%),
    radial-gradient(ellipse at bottom right, var(--peach-200), transparent 50%),
    linear-gradient(135deg, var(--cream), var(--peach-50));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,248,245,0.4) 0%, rgba(255,248,245,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: heroIn 1s ease-out;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dk);
  background: rgba(255,255,255,0.7);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--peach-200);
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dk);
  background: linear-gradient(135deg, var(--peach-500), var(--pink-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-700);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--ink-700);
  font-weight: 600;
}
.hero-badges span {
  background: rgba(255,255,255,0.7);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--peach-100);
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--accent-dk);
  border-radius: 12px;
  opacity: 0.6;
}
.hero-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--accent-dk);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============== SECTIONS ============== */
.section {
  padding: 100px 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 1rem;
}
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ============== PACKAGES ============== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.pkg-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(247, 198, 192, 0.3);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pkg-card.featured {
  background: linear-gradient(180deg, var(--cream), white);
  border: 2px solid var(--peach-300);
  transform: scale(1.02);
}
.pkg-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}
.pkg-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.pkg-ribbon-basic { background: var(--blue-100); color: var(--blue-300); }
.pkg-ribbon-lux   { background: linear-gradient(135deg, var(--peach-400), var(--pink-300)); color: white; }
.pkg-ribbon-bday  { background: var(--pink-200); color: var(--pink-400); }

.pkg-name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  text-align: center;
}
.pkg-price {
  text-align: center;
  font-family: var(--font-display);
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.pkg-price span {
  font-size: 3rem;
  color: var(--ink-900);
  font-weight: 600;
}
.pkg-desc {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.pkg-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}
.pkg-feat li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px dashed var(--peach-100);
  font-size: 0.95rem;
  color: var(--ink-700);
}
.pkg-feat li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 0.6rem;
  font-size: 0.9rem;
}
.pkg-feat li:last-child { border-bottom: none; }
.pkg-btn {
  width: 100%;
  margin-bottom: 0.5rem;
}
.pkg-min {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}
.pkg-footer {
  text-align: center;
}
.pkg-details {
  margin-top: 3rem;
  padding: 3rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--peach-100);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}
.details-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-dk);
}
.details-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.details-col li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--ink-700);
  font-size: 0.95rem;
}
.details-col li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ============== ADD-ONS ============== */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.addon-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  border: 1px solid rgba(247, 198, 192, 0.3);
}
.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--peach-300);
}
.addon-card.highlight {
  background: linear-gradient(135deg, var(--peach-100), var(--pink-100));
  border-color: var(--peach-300);
}
.addon-card.premium {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
  color: white;
}
.addon-card.premium .addon-price { color: var(--gold); }
.addon-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dk);
  margin-bottom: 0.3rem;
}
.addon-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.addon-card small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}
.addon-card.premium small { color: var(--peach-200); }

/* ============== LOCATIONS ============== */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.loc-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(247, 198, 192, 0.3);
}
.loc-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow);
}
.loc-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(1deg);
}
.loc-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(226, 154, 146, 0.2));
}
.loc-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--ink-900);
}
.loc-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============== HOW IT WORKS ============== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.how-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.how-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 2px var(--peach-300);
  margin-bottom: 1rem;
  line-height: 1;
}
.how-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.how-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============== GALLERY ============== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--peach-100);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--peach-100), var(--pink-100));
  opacity: 0.6;
}
.gallery-cta {
  text-align: center;
  color: var(--muted);
}
.gallery-cta a {
  color: var(--accent-dk);
  font-weight: 700;
  border-bottom: 1px dashed var(--accent);
}

/* ============== TESTIMONIALS ============== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.test-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
  position: relative;
  border: 1px solid rgba(247, 198, 192, 0.3);
}
.test-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--peach-300);
  line-height: 1;
}
.test-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.test-card p {
  font-style: italic;
  color: var(--ink-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.test-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-dk);
  font-size: 0.9rem;
}

/* ============== FAQ ============== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(247, 198, 192, 0.3);
}
.faq-item summary {
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent-dk); }
.faq-item p {
  padding: 0 1.75rem 1.5rem;
  color: var(--ink-700);
  line-height: 1.7;
}

/* ============== CONTACT ============== */
.contact {
  background: linear-gradient(135deg, var(--cream), var(--peach-100));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  margin: 3rem auto;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.contact-left > p {
  color: var(--ink-700);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  color: var(--ink-900);
  padding: 0.5rem 0;
  transition: transform 0.2s;
}
.contact-info a:hover { transform: translateX(4px); color: var(--accent-dk); }
.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dk);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.cc-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contact-card > p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.cc-hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--peach-200);
  font-size: 0.95rem;
}
.cc-hours strong {
  color: var(--accent-dk);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.cc-hours span { color: var(--ink-700); }

/* ============== FOOTER ============== */
.footer {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  background: var(--ink-900);
  color: var(--peach-100);
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: white;
}
.footer-brand img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--peach-300);
}
.footer p {
  color: var(--peach-200);
  font-size: 0.9rem;
  margin: 0.3rem 0;
}
.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============== FAB ============== */
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  background: linear-gradient(135deg, var(--peach-400), var(--pink-300));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(226, 131, 155, 0.45);
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.fab span { font-size: 1.2rem; }

/* ============== MODAL ============== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(58, 42, 42, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  animation: fadeIn 0.25s ease;
}
.modal-backdrop[hidden] {
  display: none !important;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: auto;
  animation: slideUp 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--ink-900);
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
  line-height: 1;
}
.modal-close:hover { transform: rotate(90deg); }
.modal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--peach-200);
}
.modal-header h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.modal-header p { color: var(--muted); font-size: 0.9rem; }

/* ============== FORM ============== */
.hp-field { display: none; }

.fs {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}
.fs legend {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-dk);
  margin-bottom: 1rem;
  padding: 0;
}
.fs-waiver legend { color: var(--ink-900); }

.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.radio-card {
  position: relative;
  cursor: pointer;
}
.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-card div {
  background: white;
  border: 2px solid var(--peach-100);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.radio-card div strong { font-size: 1rem; color: var(--ink-900); }
.radio-card div span { font-size: 0.85rem; color: var(--muted); }
.radio-card input:checked + div {
  border-color: var(--accent);
  background: var(--peach-50);
  box-shadow: 0 0 0 4px rgba(239, 176, 168, 0.2);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.field span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-700);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--peach-100);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(239, 176, 168, 0.18);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.5rem;
}
.check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: white;
  border: 2px solid var(--peach-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.check:hover { border-color: var(--peach-300); }
.check input { accent-color: var(--accent); }
.check span em {
  font-style: normal;
  color: var(--accent-dk);
  font-weight: 700;
  font-size: 0.8rem;
  margin-left: 0.25rem;
}
.check input:checked ~ span {
  color: var(--accent-dk);
  font-weight: 700;
}

.fs-waiver {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--peach-200);
}
.waiver-text {
  background: var(--cream);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 1rem;
  max-height: 140px;
  overflow-y: auto;
  border: 1px dashed var(--peach-200);
}
.check-waiver {
  background: var(--peach-50);
  border-color: var(--peach-200);
  font-weight: 600;
}

.deposit-notice {
  background: var(--pink-100);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-submit { width: 100%; }

.booking-success {
  text-align: center;
  padding: 2rem 0;
}
.success-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.booking-success h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-dk);
}
.booking-success p {
  color: var(--ink-700);
  margin-bottom: 2rem;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .fab { display: inline-flex; }
  .hero { min-height: 85vh; padding-top: 100px; }
  .hero-badges { gap: 0.5rem; font-size: 0.8rem; }
  .hero-badges span { padding: 0.4rem 0.8rem; }
  .section { padding: 70px 1.25rem; }
  .section-head { margin-bottom: 2.5rem; }
  .pkg-card.featured { transform: none; }
  .pkg-details { padding: 2rem 1.25rem; }
  .contact { padding: 2.5rem 1.5rem; margin: 1.5rem auto; }
  .modal { padding: 1.5rem; border-radius: var(--radius); }
  .radio-group { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .modal-header h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .decor-item { animation: none; }
}

/* Hidden attribute overrides */
[hidden] { display: none !important; }

/* ============== PKG ADD-ON TOGGLES ============== */
.pkg-expand {
  border-top: 1px dashed var(--peach-200);
  margin: 0 -2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 248, 245, 0.6);
}
.pkg-expand[hidden] { display: none !important; }
.pkg-feat-preview { /* shown by default, hidden when expanded */ }
.pkg-addons-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dk);
  margin: 1.5rem 0 0.75rem;
  letter-spacing: 0.05em;
}
.pkg-addon-grid {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pkg-addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 198, 192, 0.25);
  transition: all 0.2s;
}
.pkg-addon-row.on {
  background: var(--peach-100);
  border-color: var(--peach-300);
}
.pkg-addon-row .addon-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-900);
}
.pkg-addon-row .addon-left .ao-ico {
  font-size: 1rem;
}
.pkg-addon-row .addon-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.pkg-addon-row .addon-price-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}
.ao-toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: var(--peach-200);
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ao-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.ao-toggle.on { background: var(--peach-400); }
.ao-toggle.on::after { transform: translateX(16px); }

.pkg-addon-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.sel-ao-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  background: var(--peach-100);
  border: 1px solid var(--peach-300);
  border-radius: 999px;
  color: var(--accent-dk);
  font-weight: 700;
}
.sel-ao-chip .chip-x {
  cursor: pointer;
  color: var(--ink-300);
  font-size: 0.9rem;
  margin-left: 0.15rem;
}
.sel-ao-chip .chip-x:hover { color: var(--accent-dk); }

.pkg-showbtn {
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  padding: 0.6rem 1rem;
  background: var(--peach-100);
  color: var(--accent-dk);
  border: 1.5px solid var(--peach-300);
  font-weight: 700;
}
.pkg-showbtn:hover {
  background: var(--peach-200);
  border-color: var(--peach-400);
}

.pkg-card-extra {
  padding: 1.5rem 2rem;
}
.pkg-card-extra .pkg-extra-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pkg-card-extra .pkg-name { margin-bottom: 0; }
.pkg-card-extra .pkg-desc { margin-bottom: 0; text-align: left; }
