/* ===================================
   SUNSHINE PUMPKINS — styles.css
   =================================== */

/* --- Custom Properties --- */
:root {
  --pumpkin: #E8621A;
  --pumpkin-dark: #C7510F;
  --pumpkin-glow: rgba(232, 98, 26, 0.18);
  --pumpkin-border: rgba(232, 98, 26, 0.35);
  --gold: #D4A017;
  --gold-soft: rgba(212, 160, 23, 0.15);
  --bark: #3D2B1F;
  --bark-deep: #2A1E16;
  --cream: #FDF6EC;
  --cream-muted: rgba(253, 246, 236, 0.72);
  --cream-faint: rgba(253, 246, 236, 0.6);
  --cream-ghost: rgba(253, 246, 236, 0.1);
  --mist: #F5EDE0;
  --leaf: #6B7C3A;
  --white: #FFFDF9;
  --overlay-light: rgba(255, 255, 255, 0.05);
  --overlay-input: rgba(253, 246, 236, 0.08);
  --overlay-input-border: rgba(253, 246, 236, 0.15);
  --overlay-card: rgba(253, 246, 236, 0.07);
  --shadow-card: 0 4px 24px rgba(61, 43, 31, 0.10);
  --shadow-card-hover: 0 12px 32px rgba(61, 43, 31, 0.18);
  --radius-card: 20px;
  --radius-pill: 40px;
  --radius-input: 12px;
  --nav-blur: rgba(61, 43, 31, 0.92);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--bark);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

button {
  font-family: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--pumpkin);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

*:focus-visible {
  outline: 3px solid var(--pumpkin);
  outline-offset: 3px;
  border-radius: 4px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* --- Section Label (shared) --- */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pumpkin);
  border-radius: 1px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: all 0.35s ease;
}

.navbar.nav-scrolled {
  background: var(--nav-blur);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-ghost);
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-sunshine {
  color: var(--pumpkin);
}

.logo-pumpkins {
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--pumpkin);
  color: #fff;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--pumpkin-dark);
  transform: translateY(-1px);
}

/* --- Hero --- */
.hero {
  background: var(--bark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(253,246,236,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  gap: 40px;
  align-items: center;
  position: relative;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left {
  animation: fadeUp 0.9s ease both;
}

.hero-right {
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-stats {
  animation: fadeUp 0.9s ease 0.4s both;
}

.eyebrow-badge {
  background: var(--pumpkin-glow);
  color: var(--gold);
  border: 1px solid var(--pumpkin-border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--cream);
  margin-top: 24px;
}

.hero-title em {
  color: var(--pumpkin);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.hero-sub {
  color: var(--cream-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--pumpkin);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--pumpkin-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--bark);
}

/* Hero right — floating pumpkins */
.hero-right {
  position: relative;
  min-height: 400px;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-14px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.floating-pumpkin {
  position: absolute;
  user-select: none;
}

.floating-pumpkin.large {
  font-size: 7.5rem;
  left: 50%;
  top: 20%;
  animation: float 6s ease-in-out infinite;
}

.floating-pumpkin.medium {
  font-size: 5.5rem;
  left: 72%;
  top: 50%;
  animation: float 6s ease-in-out 1.5s infinite;
}

.floating-pumpkin.small {
  font-size: 4rem;
  left: 28%;
  top: 62%;
  animation: float 6s ease-in-out 3s infinite;
}

.floating-leaf {
  position: absolute;
  font-size: 2.5rem;
  right: 10%;
  bottom: 10%;
  animation: spin 20s linear infinite;
  user-select: none;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--overlay-light);
  border-top: 1px solid var(--cream-ghost);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--cream-ghost);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--pumpkin);
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-faint);
  margin-top: 4px;
}

/* --- How It Works --- */
.how-section {
  background: var(--white);
  padding: 100px 0;
}

.how-section .section-label {
  color: var(--pumpkin);
}

.how-section h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bark);
}

.how-section .section-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(61,43,31,0.65);
  max-width: 600px;
  margin-top: 12px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pumpkin), var(--gold));
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  color: var(--pumpkin);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.step-card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bark);
  margin-bottom: 8px;
}

.step-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  color: rgba(61,43,31,0.7);
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--mist);
  padding: 80px 0;
}

.testimonials-section .section-label {
  color: var(--pumpkin);
}

.testimonials-section h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--pumpkin);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bark);
  line-height: 1.7;
  padding-top: 24px;
}

.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--pumpkin);
  margin-top: 16px;
}

.testimonials-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(61,43,31,0.45);
  font-style: italic;
  text-align: center;
  margin-top: 32px;
}

/* --- Packages --- */
.packages-section {
  background: var(--bark);
  padding: 100px 0;
}

.packages-section .section-label {
  color: var(--gold);
}

.packages-section .section-label::before {
  background: var(--gold);
}

.packages-section h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream);
}

.packages-section .section-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--cream-muted);
  max-width: 600px;
  margin-top: 12px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.package-card {
  background: var(--bark-deep);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  border: 1px solid var(--cream-ghost);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.package-card.featured {
  background: var(--pumpkin);
  border-color: var(--pumpkin);
}

.package-card.featured .package-name {
  color: #fff;
}

.package-card.featured .package-price {
  color: #fff;
}

.package-card.featured .package-tag {
  color: rgba(255,255,255,0.75);
}

.package-card.featured .package-desc {
  color: rgba(255,255,255,0.85);
}

.package-card.featured .feature-item {
  color: #fff;
}

.package-card.featured .feature-check {
  color: #fff;
  opacity: 0.9;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  z-index: 1;
}

.package-icon {
  font-size: 2.4rem;
}

.package-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--cream-faint);
  margin-top: 8px;
}

.package-price {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--cream);
  margin: 16px 0 4px;
}

.package-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.package-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--cream-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.feature-item {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-check {
  color: var(--pumpkin);
  font-weight: 700;
  flex-shrink: 0;
}

.package-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--pumpkin);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.package-btn:hover {
  background: var(--pumpkin-dark);
  transform: translateY(-2px);
}

.package-card.featured .package-btn {
  background: var(--bark);
  color: #fff;
}

.package-card.featured .package-btn:hover {
  background: var(--bark-deep);
}

.secure-note {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--cream-faint);
  text-align: center;
  margin-top: 10px;
}

.package-card.featured .secure-note {
  color: rgba(255,255,255,0.6);
}

/* Add-ons */
.addons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  justify-content: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.addon-card {
  background: var(--overlay-card);
  border: 1px solid var(--cream-ghost);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.addon-name {
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
}

.addon-price {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.92rem;
}

.addons-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--cream-faint);
  text-align: center;
  margin-top: 20px;
}

/* --- Service Area --- */
.service-area-section {
  background: var(--mist);
  padding: 100px 0;
}

.service-area-section .section-label {
  color: var(--pumpkin);
}

.service-area-section h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bark);
}

.service-area-section .section-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(61,43,31,0.65);
  max-width: 600px;
  margin-top: 12px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.area-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pumpkin), var(--gold));
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.area-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.area-card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bark);
  margin-bottom: 8px;
}

.area-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  color: rgba(61,43,31,0.7);
  line-height: 1.6;
}

/* --- FAQ --- */
.faq-section {
  background: var(--white);
  padding: 100px 0;
}

.faq-section .section-label {
  color: var(--pumpkin);
}

.faq-section h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bark);
}

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(61,43,31,0.1);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bark);
  line-height: 1.4;
}

.faq-icon {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--pumpkin);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 24px 0;
}

.faq-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(61,43,31,0.7);
  line-height: 1.7;
  margin: 0;
}

/* --- Book / Contact --- */
.book-section {
  background: var(--bark);
  padding: 100px 0;
}

.book-section .section-label {
  color: var(--gold);
  justify-content: center;
  text-align: center;
}

.book-section .section-label::before {
  background: var(--gold);
}

.book-section h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream);
  text-align: center;
}

.book-section .section-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--cream-muted);
  text-align: center;
  max-width: 600px;
  margin: 12px auto 0;
}

/* Quick book cards */
.quick-book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}

.quick-book-card {
  background: var(--overlay-card);
  border: 1px solid var(--cream-ghost);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.quick-book-card:hover {
  border-color: var(--pumpkin-border);
  transform: translateY(-4px);
}

.quick-book-card.qb-featured {
  border-color: var(--pumpkin);
  background: rgba(232,98,26,0.08);
}

.qb-icon {
  font-size: 2rem;
}

.qb-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 8px;
}

.qb-price {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--cream);
  margin: 8px 0;
}

.qb-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--cream-faint);
  margin-bottom: 16px;
}

.qb-btn {
  display: inline-block;
  background: var(--pumpkin);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.qb-btn:hover {
  background: var(--pumpkin-dark);
  transform: translateY(-2px);
}

.qb-secure {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--cream-faint);
  margin-top: 10px;
}

/* Divider */
.book-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px auto;
  max-width: 400px;
}

.book-divider-line {
  flex: 1;
  height: 1px;
  background: var(--cream-ghost);
}

.book-divider-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--cream-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Inquiry form */
.inquiry-header h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
  text-align: center;
}

.inquiry-header p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--cream-muted);
  text-align: center;
  max-width: 500px;
  margin: 12px auto 0;
}

.inquiry-form {
  max-width: 580px;
  margin: 32px auto 0;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  flex: 1;
}

.form-group.full {
  width: 100%;
}

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--pumpkin);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--overlay-input);
  border: 1px solid var(--overlay-input-border);
  border-radius: var(--radius-input);
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--cream-faint);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pumpkin);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FDF6EC' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bark);
  color: var(--cream);
}

.form-checkbox {
  margin-bottom: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--cream-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--pumpkin);
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  background: var(--pumpkin);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--pumpkin-dark);
  transform: translateY(-2px);
}

.form-submit:disabled {
  background: var(--leaf);
  cursor: default;
  transform: none;
}

.form-errors {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #e74c3c;
  margin-bottom: 12px;
}

/* --- Footer --- */
.site-footer {
  background: var(--bark-deep);
  padding: 60px 0 32px;
  border-top: 1px solid var(--cream-ghost);
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--pumpkin);
}

.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--cream-faint);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 24px;
  list-style: none;
}

.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--cream-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--pumpkin);
}

.footer-copyright {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--cream-faint);
  margin-top: 24px;
}

.footer-contact {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  margin-top: 8px;
}

.footer-contact a {
  color: var(--gold);
}

.footer-contact a:hover {
  color: var(--pumpkin);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bark);
  color: var(--cream);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  border-top: 1px solid var(--cream-ghost);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
  max-width: 600px;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--pumpkin);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.cookie-btn:hover {
  background: var(--pumpkin-dark);
}

/* --- Secondary Pages Shared --- */
.page-hero-band {
  background: var(--bark);
  padding: 140px 0 40px;
  text-align: center;
}

.page-hero-band h1 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--cream);
}

.page-hero-band .page-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--cream-faint);
  margin-top: 8px;
}

.legal-content {
  background: var(--white);
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bark);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(61,43,31,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(61,43,31,0.75);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--pumpkin);
  text-decoration: underline;
}

/* --- Thank You Page --- */
.thankyou-section {
  background: var(--bark);
  position: relative;
  padding: 140px 24px 100px;
  min-height: 100vh;
}

.thankyou-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(253,246,236,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.thankyou-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.thankyou-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.thankyou-content h1 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
}

.thankyou-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--cream-muted);
  margin-top: 16px;
}

.thankyou-steps {
  text-align: left;
  max-width: 480px;
  margin: 40px auto 0;
}

.thankyou-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.thankyou-step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--pumpkin);
  flex-shrink: 0;
  width: 28px;
}

.thankyou-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

.thankyou-cta {
  margin-top: 40px;
}

.thankyou-cta .btn-outline {
  margin-bottom: 16px;
}

.thankyou-contact {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--cream-faint);
  margin-top: 16px;
}

.thankyou-contact a {
  color: var(--gold);
}

/* --- 404 Page --- */
.error-section {
  background: var(--bark);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
}

.error-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(253,246,236,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.error-content {
  max-width: 480px;
  text-align: center;
  position: relative;
}

.error-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: float 6s ease-in-out infinite;
}

.error-content h1 {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--cream);
}

.error-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--cream-muted);
  margin-top: 12px;
}

.error-content .btn-outline {
  margin-top: 32px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    position: static;
    margin-top: 40px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .addons-row {
    flex-direction: column;
    align-items: center;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-book-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    flex-direction: column;
  }
}

/* --- Promotional Pricing --- */
.promo-banner {
  background: linear-gradient(135deg, rgba(232,98,26,0.15), rgba(212,160,23,0.15));
  border: 1px solid var(--pumpkin-border);
  border-radius: var(--radius-card);
  padding: 16px 24px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-badge {
  background: var(--pumpkin);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-regular {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream-faint);
  text-decoration: line-through;
  margin-right: 8px;
  opacity: 0.6;
}

.package-card.featured .price-regular {
  color: rgba(255,255,255,0.5);
}

.promo-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}

.package-card.featured .promo-label {
  color: rgba(255,255,255,0.8);
}

.price-regular-sm {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream-faint);
  text-decoration: line-through;
  margin-right: 6px;
  opacity: 0.5;
}