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

:root {
  --forest:      #1a3d0a;
  --green:       #4d7a38;
  --green-dark:  #2a5018;
  --green-light: #deebd4;
  --cream:       #faf6ed;
  --parchment:   #f2e8d5;
  --amber:       #cc8c22;
  --amber-light: #fef5e4;
  --amber-dark:  #a36c10;
  --brown:       #5c3317;
  --text:        #1c1812;
  --text-muted:  #6b6050;
  --white:       #ffffff;
  --radius:      16px;
  --shadow:      0 2px 20px rgba(26,61,10,0.10);
  --shadow-lg:   0 10px 40px rgba(26,61,10,0.16);
  --transition:  0.22s ease;
  --font-display: 'Fraunces', Georgia, serif;
  --font:        'DM Sans', 'Nunito', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}

/* Subtle paper grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.06) 1px, transparent 0);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

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

img { max-width: 100%; }

/* =========================================
   UTILITIES
   ========================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--forest);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--amber);
  border-radius: 99px;
  margin: 14px auto 0;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2.5px solid var(--text);
  box-shadow: 4px 4px 0 var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2.5px solid var(--text);
  box-shadow: 3px 3px 0 var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-outline:hover {
  background: var(--green-light);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--text);
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
  border: 2.5px solid var(--text);
  box-shadow: 4px 4px 0 var(--text);
  font-family: var(--font);
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-amber:hover {
  background: var(--amber-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--text);
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 1.1rem;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

.nav-links a {
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a:last-child {
  color: var(--white);
  background: var(--green);
  padding: 8px 20px;
  border-radius: 50px;
}

.nav-links a:last-child:hover {
  background: var(--green-dark);
}

/* Tab buttons */
.tab-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 4px;
  transition: color var(--transition), box-shadow var(--transition);
}

.tab-btn:hover {
  color: var(--green);
}

.tab-btn.active {
  color: var(--green);
  box-shadow: 0 3px 0 var(--green);
}

.tab-btn-cta {
  color: var(--white) !important;
  background: var(--amber);
  padding: 8px 22px;
  border-radius: 50px;
  box-shadow: none !important;
}

.tab-btn-cta:hover {
  background: var(--amber-dark);
}

.tab-btn-cta.active {
  background: var(--amber-dark);
}

/* Tab pages */
.tab-page {
  display: none;
}

.tab-page.active {
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 3px;
  transition: all var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--forest);
  overflow: hidden;
  padding: 80px 24px 80px;
}

/* Cream right panel with diagonal cut */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  background:
    radial-gradient(ellipse at 60% 35%, rgba(204,140,34,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 75%, rgba(77,122,56,0.18) 0%, transparent 50%),
    var(--cream);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 0 auto 0 max(24px, calc((100vw - 1100px)/2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.90);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.7;
}

/* Decorative art */
.hero-art {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 1;
}

.art-blob {
  position: absolute;
  inset: 30px;
  background: radial-gradient(ellipse at 40% 40%, rgba(204,140,34,0.18) 0%, rgba(77,122,56,0.20) 50%, transparent 80%);
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; }
  33%       { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
  66%       { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
}

.art-emoji {
  position: absolute;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.10));
  line-height: 1;
  user-select: none;
}

/* 9 emojis spread across the blob area */
.art-emoji.e1 { font-size: 4.8rem; top: 36%; left: 34%; animation-delay: 0s;   }
.art-emoji.e2 { font-size: 3rem;   top: 12%; left: 55%; animation-delay: 0.7s; }
.art-emoji.e3 { font-size: 3.4rem; top: 62%; left: 58%; animation-delay: 1.4s; }
.art-emoji.e4 { font-size: 2.6rem; top: 16%; left: 26%; animation-delay: 2.1s; }
.art-emoji.e5 { font-size: 2.8rem; top: 72%; left: 26%; animation-delay: 2.8s; }
.art-emoji.e6 { font-size: 2.4rem; top: 48%; left: 78%; animation-delay: 1s;   }
.art-emoji.e7 { font-size: 3.2rem; top: 24%; left: 72%; animation-delay: 1.8s; }
.art-emoji.e8 { font-size: 2.4rem; top: 78%; left: 66%; animation-delay: 0.4s; }
.art-emoji.e9 { font-size: 2.8rem; top: 52%; left: 18%; animation-delay: 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-strip {
  background: var(--amber);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.2px;
}

.marquee-dot {
  opacity: 0.6;
  font-size: 0.7rem !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-strip-dark {
  background: var(--forest);
}

.marquee-track-reverse {
  animation-direction: reverse;
}

/* =========================================
   HERO BADGES ROW
   ========================================= */
.hero-top-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.weather-badge, .avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
}

.weather-badge {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}

.avail-badge-open {
  background: rgba(82,168,96,0.25);
  border: 1.5px solid rgba(82,168,96,0.5);
  color: #a8ffb8;
}

.avail-badge-busy {
  background: rgba(220,80,80,0.25);
  border: 1.5px solid rgba(220,80,80,0.4);
  color: #ffb8b8;
}

/* =========================================
   STATS STRIP
   ========================================= */
.stats-strip {
  background: var(--forest);
  padding: 56px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--amber);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .stats-grid { gap: 32px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 16px; }
  .stat-number { font-size: 2.6rem; }
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
  padding: 96px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 2.5px solid var(--text);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--text);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 22px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--green-light);
}

.faq-question.open {
  background: var(--green-light);
  color: var(--forest);
}

.faq-arrow {
  font-size: 0.75rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--white);
  padding: 0 22px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 16px 22px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   FLOATING BOOK BUTTON
   ========================================= */
.floating-book-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: var(--amber);
  color: var(--white);
  border: 2.5px solid var(--text);
  box-shadow: 4px 4px 0 var(--text);
  border-radius: 50px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: floatBtn 3s ease-in-out infinite;
}

.floating-book-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--text);
}

@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 96px 0;
  background: var(--cream);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Bento layout — featured cards span wider */
.cards-grid .card:nth-child(1) { grid-column: span 2; }
.cards-grid .card:nth-child(2) { grid-column: span 2; }
.cards-grid .card:nth-child(7) { grid-column: span 2; }
.cards-grid .card:nth-child(8) { grid-column: span 2; }
.cards-grid .card:nth-child(9) { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; text-align: center; }

/* Per-card colored icon bg */
.cards-grid .card:nth-child(1) .card-icon { background: #fff3d4; }
.cards-grid .card:nth-child(2) .card-icon { background: #daeeff; }
.cards-grid .card:nth-child(3) .card-icon { background: #d8f0d8; }
.cards-grid .card:nth-child(4) .card-icon { background: #d8f0d8; }
.cards-grid .card:nth-child(5) .card-icon { background: #f0ead8; }
.cards-grid .card:nth-child(6) .card-icon { background: #daeeff; }
.cards-grid .card:nth-child(7) .card-icon { background: #daeeff; }
.cards-grid .card:nth-child(8) .card-icon { background: #d8ead0; }

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2.5px solid var(--text);
  box-shadow: 5px 5px 0 var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--text);
}

.card-icon {
  font-size: 1.9rem;
  background: var(--green-light);
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
}

.card-price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.card p {
  color: var(--text-muted);
  flex: 1;
}

.card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 96px 0;
  background: var(--cream);
}

.about-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.about-badge {
  font-size: 4.8rem;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.about-list li {
  font-weight: 700;
  color: var(--text);
}

/* =========================================
   ADMIN PANEL
   ========================================= */
.admin-page {
  padding: 80px 0;
  background: var(--cream);
  min-height: calc(100vh - 64px);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.admin-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.admin-card-full {
  grid-column: 1 / -1;
}

.admin-jobs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.88rem;
}

.add-job-form {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
  border: 1.5px solid rgba(0,0,0,0.07);
}

.job-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}

.job-item:last-child { border-bottom: none; }

.job-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.job-date-label {
  font-weight: 800;
  color: var(--forest);
  font-size: 0.95rem;
}

.job-name-label {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

.job-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.admin-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 18px;
}

.blocked-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}

.blocked-item:last-child {
  border-bottom: none;
}

.blocked-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blocked-date-label {
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}

.blocked-reason-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.unblock-btn {
  background: #fff0f0;
  border: 1px solid #f5c6c6;
  color: #d9534f;
  border-radius: 8px;
  padding: 4px 10px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}

.unblock-btn:hover {
  background: #f5c6c6;
}

.no-blocked-msg {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
}

.terms-label {
  align-items: flex-start;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
}

.terms-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  cursor: pointer;
}

.block-time-range[hidden] { display: none; }

.block-time-range {
  margin-top: 10px;
  background: var(--cream);
  border-radius: 10px;
  padding: 12px;
}

.time-range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 768px) {
  .admin-grid { grid-template-columns: 1fr; }
  .admin-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page {
  padding: 0 0 96px;
  background: var(--cream);
  min-height: calc(100vh - 64px);
}

.page-header {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(204,140,34,0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(77,122,56,0.18) 0%, transparent 50%),
    linear-gradient(135deg, #d8ead0 0%, #e8f0e4 60%, var(--cream) 100%);
  padding: 72px 24px 60px;
  text-align: center;
  margin-bottom: 56px;
}

.page-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(92,138,74,0.15);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 4px;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  word-break: break-all;
}

.contact-hint {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
}

.contact-note {
  text-align: center;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.hours-box {
  max-width: 700px;
  margin: 0 auto 36px;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.hours-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 16px;
  text-align: center;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.hours-day {
  font-weight: 700;
  color: var(--text);
}

.hours-time {
  font-weight: 800;
  color: var(--green);
  font-size: 1rem;
}

.hours-divider {
  height: 1px;
  background: #eee;
}

.hours-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
}

.link-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: inherit;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  padding: 96px 0;
  background: var(--parchment);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.step-card {
  background: var(--white);
  border: 2.5px solid var(--text);
  box-shadow: 5px 5px 0 var(--text);
  border-radius: 16px;
  padding: 36px 28px;
  flex: 1;
  max-width: 300px;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--text);
}

.step-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-connector {
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector {
    transform: rotate(90deg);
  }
  .step-card {
    max-width: 100%;
    width: 100%;
  }
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews {
  padding: 32px 0 80px;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.review-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.review-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.no-reviews-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 32px;
  font-size: 1rem;
}

.no-reviews-msg span {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.leave-review-box {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  margin-top: 48px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.leave-review-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
}

.star-picker {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.star-btn {
  font-size: 2rem;
  color: #ddd;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.1s, transform 0.1s;
  padding: 0;
  line-height: 1;
}

.star-btn:hover,
.star-btn.active {
  color: #f5a623;
  transform: scale(1.15);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-page {
  padding: 0 0 96px;
  background: var(--cream);
  min-height: calc(100vh - 64px);
}

.about-page-header {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(204,140,34,0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(77,122,56,0.18) 0%, transparent 50%),
    linear-gradient(135deg, #d8ead0 0%, #e8f0e4 60%, var(--cream) 100%);
  padding: 72px 24px 60px;
  text-align: center;
  margin-bottom: 56px;
}

.about-page-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.about-page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.goal-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 24px 0;
  border-left: 4px solid var(--amber);
  box-shadow: var(--shadow);
}

.goal-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.goal-box strong {
  display: block;
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1rem;
  margin-bottom: 5px;
}

.goal-box p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* =========================================
   PAYMENT RADIO GROUP
   ========================================= */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.radio-option {
  cursor: pointer;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
}

.radio-option input[type="radio"]:checked + .radio-box {
  border-color: var(--green);
  background: var(--green-light);
}

.radio-icon {
  font-size: 1.5rem;
}

.radio-label {
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}

.radio-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.venmo-link[hidden] {
  display: none;
}

.venmo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  background: #e8f4ff;
  border: 2px solid #008CFF;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--text);
}

.venmo-link a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #008CFF;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}

.venmo-link a:hover {
  text-decoration: underline;
}

.venmo-badge {
  background: #008CFF;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.82rem;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.3px;
}

/* =========================================
   BOOKING FORM
   ========================================= */
.book {
  padding: 0 0 96px;
  background: var(--green-light);
}

.booking-form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row[hidden] { display: none; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

input, select, textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 11px 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: var(--cream);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(92,138,74,0.15);
  background: var(--white);
}

input.invalid, select.invalid, textarea.invalid {
  border-color: #d9534f;
}

.field-hint {
  font-size: 0.79rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.error-msg {
  color: #d9534f;
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 18px;
}

.form-success[hidden] {
  display: none;
}

.form-success {
  margin-top: 24px;
  background: var(--green-light);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  color: var(--green-dark);
}

.success-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

/* =========================================
   LABEL NOTE
   ========================================= */
.label-note {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--green);
  margin-left: 4px;
}

/* =========================================
   TOO FAR POPUP
   ========================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}

.popup-overlay[hidden] {
  display: none;
}

.popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border-top: 5px solid #d9534f;
  animation: slideUp 0.25s ease;
}

.popup-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.popup-box h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #d9534f;
  margin-bottom: 12px;
}

.popup-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.popup-box p strong {
  color: var(--text);
}

.popup-contact-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.popup-dismiss {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* =========================================
   FOOTER
   ========================================= */
.footer-wave {
  line-height: 0;
  background: var(--cream);
}

.footer-wave svg {
  display: block;
  width: 100%;
}

.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.80);
  text-align: center;
  padding: 56px 24px 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.footer-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-hours-dot {
  opacity: 0.5;
}

.footer-small {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* =========================================
   SEASONAL BANNER
   ========================================= */
.seasonal-banner[hidden] { display: none; }
.seasonal-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: var(--amber);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  z-index: 90;
}
.seasonal-banner span:first-child { font-size: 1.1rem; }
.seasonal-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.7;
  padding: 2px 6px;
  border-radius: 4px;
}
.seasonal-close:hover { opacity: 1; background: rgba(0,0,0,0.1); }

/* =========================================
   REPEAT CUSTOMER NOTICE
   ========================================= */
.repeat-customer-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--amber-light);
  border: 2px solid var(--amber);
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--amber-dark);
  box-shadow: 3px 3px 0 var(--amber);
}
.repeat-customer-notice span:first-child { font-size: 1.2rem; }

/* =========================================
   BOOKING CONFIRMATION COPY
   ========================================= */
.confirmation-details {
  background: var(--parchment);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: left;
  white-space: pre-wrap;
  font-family: monospace;
}

/* =========================================
   EARNINGS STRIP (admin)
   ========================================= */
.earnings-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--forest);
  border-radius: 10px;
  margin: 14px 0 0;
  overflow: hidden;
  border: 2px solid var(--text);
}
.earning-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
}
.earning-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.earning-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  margin-top: 4px;
}
.earning-value.earning-paid { color: #7dcf7d; }
.earning-value.earning-unpaid { color: #f5a7a7; }
.earning-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* Paid/unpaid toggle on job items */
.job-paid-toggle {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.toggle-paid-btn, .toggle-unpaid-btn {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 2px solid currentColor;
  cursor: pointer;
  background: none;
  transition: background 0.15s, color 0.15s;
}
.toggle-paid-btn { color: #2d8a2d; }
.toggle-paid-btn:hover, .toggle-paid-btn.active { background: #2d8a2d; color: #fff; }
.toggle-unpaid-btn { color: var(--text-muted); }
.toggle-unpaid-btn:hover, .toggle-unpaid-btn.active { background: var(--text-muted); color: #fff; }
.job-item.is-paid { opacity: 0.6; }
.job-item.is-paid .job-date-label::after { content: ' ✓ PAID'; color: #2d8a2d; font-size: 0.75rem; font-weight: 700; }

/* =========================================
   WEEKLY CALENDAR (#37)
   ========================================= */
.week-cal-wrap {
  background: var(--parchment);
  padding: 16px 0 20px;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}
.week-cal-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.week-cal {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.week-day {
  flex: 1;
  min-width: 52px;
  border-radius: 10px;
  border: 2px solid var(--text);
  padding: 10px 6px 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: default;
}
.week-day-name { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.6; display: block; margin-bottom: 4px; }
.week-day-num  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; display: block; }
.week-day.available   { background: #d4f0d4; border-color: #2d8a2d; color: #1a5c1a; }
.week-day.blocked     { background: #f5c4c4; border-color: #c0392b; color: #7a1f1f; }
.week-day.partial     { background: #fef3cd; border-color: var(--amber); color: var(--amber-dark); }
.week-day.today       { box-shadow: 0 0 0 3px var(--forest); }
.week-day-status { font-size: 0.65rem; margin-top: 4px; display: block; }

/* =========================================
   RAIN WARNING (#41)
   ========================================= */
.rain-warning[hidden] { display: none; }
.rain-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #e8f4fd;
  border: 2px solid #3498db;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: #1a5276;
  font-weight: 600;
  box-shadow: 3px 3px 0 #3498db;
}
.rain-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

/* =========================================
   YEAR IN REVIEW (#42)
   ========================================= */
.year-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.yr-stat {
  background: var(--forest);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  border: 2px solid var(--text);
  box-shadow: 3px 3px 0 var(--text);
}
.yr-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  display: block;
}
.yr-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}
.yr-month-bars {
  grid-column: 1 / -1;
  background: var(--white);
  border: 2px solid var(--text);
  border-radius: 10px;
  padding: 16px;
}
.yr-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.yr-bar-label { width: 32px; font-weight: 700; flex-shrink: 0; }
.yr-bar-track { flex: 1; background: var(--parchment); border-radius: 4px; height: 14px; overflow: hidden; }
.yr-bar-fill  { height: 100%; background: var(--green); border-radius: 4px; transition: width 0.6s ease; }
.yr-bar-count { width: 24px; text-align: right; color: var(--text-muted); flex-shrink: 0; }

/* =========================================
   EMERGENCY BANNER (#29)
   ========================================= */
.emergency-banner[hidden] { display: none; }
.emergency-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  background: #c0392b;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  position: relative;
  z-index: 91;
  animation: emergencyPulse 2s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { background: #c0392b; }
  50%       { background: #e74c3c; }
}
.emergency-banner .seasonal-close { color: #fff; }

/* =========================================
   PROMO BANNER (Feature 13)
   ========================================= */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  background: var(--amber);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
  position: relative;
  z-index: 92;
}
.promo-banner[hidden] { display: none; }
.promo-banner .seasonal-close { color: var(--forest); }

/* =========================================
   BOOKING CONFIRMATION DETAILS (Feature 2)
   ========================================= */
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--parchment);
  font-size: 0.9rem;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row span { color: var(--text-muted); }
.confirm-row strong { text-align: right; color: var(--forest); }
.confirmation-details {
  background: var(--cream);
  border: 2px solid var(--green-light);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 14px 0 4px;
  text-align: left;
  width: 100%;
}

/* Toggle switch */
.toggle-switch { display: inline-flex; align-items: center; cursor: pointer; }
.toggle-switch input { display: none; }
.toggle-slider {
  width: 48px; height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  transition: background 0.2s;
}
.toggle-slider::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: left 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: #c0392b; }
.toggle-switch input:checked + .toggle-slider::after { left: 25px; }

/* =========================================
   WHAT'S INCLUDED CARD DETAIL (#28)
   ========================================= */
.card-details-toggle {
  background: none;
  border: none;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 0;
  margin: 4px 0 6px;
  font-family: var(--font);
  transition: color 0.15s;
}
.card-details-toggle:hover { color: var(--amber-dark); }
.card-details-toggle[aria-expanded="true"] { color: var(--amber-dark); }

.card-details {
  list-style: none;
  padding: 10px 12px;
  margin: 0 0 10px;
  background: var(--green-light);
  border-radius: 8px;
  border-left: 3px solid var(--green);
  font-size: 0.82rem;
  line-height: 1.7;
}
.card-details li::before { content: '✓ '; color: var(--green-dark); font-weight: 700; }

/* =========================================
   CONTACT FORM BOX (#27)
   ========================================= */
.contact-form-box {
  background: var(--white);
  border: 2.5px solid var(--text);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--text);
  padding: 28px 28px 24px;
  margin-bottom: 32px;
}
.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--forest);
}
.contact-subject-preview {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 6px;
  min-height: 1.2em;
}

/* =========================================
   REVIEW PHOTO (#30)
   ========================================= */
.review-card-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 2px solid var(--parchment);
}

/* =========================================
   INVOICE (#31)
   ========================================= */
.invoice-box {
  max-width: 540px;
  text-align: left;
}
.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 3px solid var(--forest);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.invoice-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--forest);
}
.invoice-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.invoice-label {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}
.invoice-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--parchment);
  font-size: 0.9rem;
}
.invoice-row:last-child { border-bottom: none; }
.invoice-row .inv-label { color: var(--text-muted); }
.invoice-row .inv-val { font-weight: 700; }
.invoice-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 10px;
  border-top: 2.5px solid var(--text);
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}
.invoice-total .inv-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--forest); }
.invoice-footer {
  background: var(--parchment);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  margin-top: 16px;
}

/* =========================================
   COST ESTIMATE
   ========================================= */
.cost-estimate {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--amber-light);
  border: 2.5px solid var(--amber);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
  box-shadow: 4px 4px 0 var(--amber);
}
.cost-estimate-icon { font-size: 1.6rem; flex-shrink: 0; }
.cost-estimate-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cost-estimate-text span {
  font-size: 0.82rem;
  color: var(--amber-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cost-estimate-text strong {
  font-size: 1.45rem;
  font-family: var(--font-display);
  color: var(--forest);
  font-weight: 900;
  line-height: 1.1;
}

/* =========================================
   REBOOK BAR (Feature 3)
   ========================================= */
.rebook-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-light);
  border: 2.5px solid var(--green);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.rebook-icon { font-size: 1.3rem; flex-shrink: 0; }
.rebook-text { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.rebook-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--green-dark); }
.rebook-text span:last-child { font-size: 0.88rem; font-weight: 600; color: var(--forest); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rebook-dismiss { background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--text-muted); padding: 2px 6px; border-radius: 4px; flex-shrink: 0; }
.rebook-dismiss:hover { background: rgba(0,0,0,0.08); }

/* =========================================
   NEXT JOB COUNTDOWN (Feature 2)
   ========================================= */
.next-job-countdown {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--forest);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.countdown-icon { font-size: 1.8rem; flex-shrink: 0; }
.countdown-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.countdown-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; font-weight: 700; }
.countdown-text span:last-child { font-size: 0.92rem; font-weight: 600; }
.countdown-timer {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--amber);
  text-align: right;
  flex-shrink: 0;
  min-width: 120px;
}

/* =========================================
   MULTI-DAY BOOKING
   ========================================= */
.flexible-toggle-row {
  margin: -6px 0 14px;
}
.flexible-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  transition: background 0.15s;
}
.flexible-label:hover { background: #c8e0bc; }
.flexible-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  flex-shrink: 0;
}

.multi-day-hint {
  background: var(--amber-light);
  border: 2px solid var(--amber);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--amber-dark);
  font-weight: 600;
  margin-top: 24px;
}

/* =========================================
   NEIGHBORHOOD BADGE (#14)
   ========================================= */
.neighborhood-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  border: 1.5px solid var(--green);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* =========================================
   NEXT AVAILABLE BANNER (#16)
   ========================================= */
.next-avail-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
  margin-top: 16px;
  box-shadow: 3px 3px 0 var(--forest);
}

/* =========================================
   TESTIMONIAL REEL (#21)
   ========================================= */
.testimonial-reel {
  background: var(--forest);
  padding: 60px 0;
  text-align: center;
}
.reel-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 28px;
}
.reel-track {
  position: relative;
  overflow: hidden;
  min-height: 120px;
}
.reel-slide {
  transition: opacity 0.5s, transform 0.5s;
}
.reel-slide.fade-out {
  opacity: 0;
  transform: translateY(12px);
}
.reel-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.reel-author {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  font-weight: 600;
}
.reel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.reel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.reel-dot.active {
  background: var(--amber);
  transform: scale(1.3);
}

/* =========================================
   PHOTO GALLERY (#17)
   ========================================= */
.gallery-section {
  padding: 80px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.gallery-pair {
  border: 2.5px solid var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--text);
  background: var(--white);
}
.gallery-pair-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gallery-pair-imgs img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.gallery-pair-label {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--text);
}
.gallery-label-before, .gallery-label-after {
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gallery-label-before { background: #f5a7a7; color: #7a1f1f; border-right: 1px solid var(--text); }
.gallery-label-after  { background: #a7f5b0; color: #1a5c25; }
.gallery-caption {
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* =========================================
   WAITLIST BOX (#13)
   ========================================= */
.waitlist-box {
  background: var(--amber-light);
  border: 2px solid var(--amber);
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  text-align: left;
}
.waitlist-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--amber-dark);
  margin-bottom: 4px;
}
.waitlist-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.waitlist-fields {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.waitlist-input {
  flex: 1;
  min-width: 120px;
  padding: 8px 12px;
  border: 2px solid var(--amber);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.88rem;
  background: var(--white);
}
.waitlist-success {
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 8px;
}

/* =========================================
   PRINT FLYER (#22)
   ========================================= */
.print-flyer { display: none; }

@media print {
  body > *:not(#printFlyer) { display: none !important; }

  .print-flyer {
    display: block !important;
    font-family: 'Georgia', serif;
    padding: 20px;
    max-width: 650px;
    margin: 0 auto;
    color: #1c1812;
  }

  .flyer-border {
    border: 3px solid #1a3d0a;
    border-radius: 16px;
    padding: 36px 32px 28px;
  }

  .flyer-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 2px solid #e8e0d4;
  }

  .flyer-goat {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 4px;
  }

  .flyer-logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a3d0a;
    letter-spacing: -0.5px;
  }

  .flyer-tagline {
    font-size: 0.95rem;
    color: #6b6050;
    margin-top: 6px;
    font-style: italic;
  }

  .flyer-intro {
    text-align: center;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 22px;
    padding: 0 16px;
  }

  .flyer-section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #1a3d0a;
    margin-bottom: 8px;
  }

  .flyer-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    margin-bottom: 24px;
  }

  .flyer-service {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    padding: 7px 0;
    border-bottom: 1px solid #e8e0d4;
  }

  .flyer-service-icon {
    flex-shrink: 0;
    width: 22px;
    text-align: center;
  }

  .flyer-service span:nth-child(2) {
    flex: 1;
    font-weight: 600;
  }

  .flyer-price {
    font-weight: 700;
    color: #1a3d0a;
    white-space: nowrap;
  }

  .flyer-service-other {
    grid-column: 1 / -1;
    text-align: center;
    justify-content: center;
    border-bottom: none;
    font-style: italic;
    color: #6b6050;
    padding-top: 10px;
  }

  .flyer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
    padding-top: 4px;
  }

  .flyer-contact {
    flex: 1;
  }

  .flyer-contact-row {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a3d0a;
    margin-bottom: 6px;
  }

  .flyer-qr {
    text-align: center;
    flex-shrink: 0;
  }

  .flyer-qr img {
    display: block;
    margin: 0 auto 6px;
    border: 2px solid #1a3d0a;
    border-radius: 10px;
    padding: 4px;
  }

  .flyer-qr p {
    font-size: 0.75rem;
    color: #6b6050;
  }

  .flyer-footer {
    text-align: center;
    font-size: 0.8rem;
    color: #6b6050;
    border-top: 2px solid #e8e0d4;
    padding-top: 14px;
    letter-spacing: 0.02em;
  }
}

/* =========================================
   PRICE CALCULATOR
   ========================================= */
.price-calc-section {
  padding: 72px 0;
  background: var(--parchment);
}

.price-calc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--white);
  border: 2.5px solid var(--text);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--text);
  padding: 40px 44px;
  align-items: center;
}

.price-calc-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.price-calc-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.calc-row {
  margin-bottom: 20px;
}

.calc-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--text);
}

.calc-select {
  width: 100%;
  padding: 12px 14px;
  border: 2.5px solid var(--text);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231c1812' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  box-shadow: 3px 3px 0 var(--text);
}
.calc-select:focus { outline: 3px solid var(--amber); }

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

.stepper-btn {
  width: 40px;
  height: 40px;
  border: 2.5px solid var(--text);
  border-radius: 8px;
  background: var(--cream);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--text);
  transition: transform 0.1s, box-shadow 0.1s;
  line-height: 1;
}
.stepper-btn:hover { background: var(--amber-light); }
.stepper-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--text); }

.stepper-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  min-width: 2.2ch;
  text-align: center;
  color: var(--text);
}

.stepper-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-calc-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-result {
  width: 100%;
  background: var(--forest);
  border-radius: var(--radius);
  border: 2.5px solid var(--text);
  box-shadow: 6px 6px 0 var(--text);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.calc-result-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

.calc-result-price {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
}
.calc-result-price.pop {
  transform: scale(1.12);
  color: #f5c45a;
}

.calc-result-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  max-width: 200px;
}

@media (max-width: 768px) {
  .price-calc-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
  }
}

/* =========================================
   SHARE SITE BUTTON (footer)
   ========================================= */
.share-site-btn {
  background: none;
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin: 14px 0 4px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: var(--font);
}
.share-site-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.share-site-btn.copied {
  border-color: #7dcf7d;
  color: #7dcf7d;
}

.share-hint {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
  margin-bottom: 6px;
}

.share-subhint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a:last-child {
    margin-top: 8px;
    display: inline-block;
    align-self: flex-start;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 56px 24px 56px;
    flex-direction: column;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 45%;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-content {
    margin: 0;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

  .hero-art {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 200px;
    height: 200px;
    margin: 32px auto 0;
  }

  .art-emoji.e1 { font-size: 2.2rem; }
  .art-emoji.e2 { font-size: 1.4rem; }
  .art-emoji.e3 { font-size: 1.6rem; }
  .art-emoji.e4 { font-size: 1.2rem; }
  .art-emoji.e5 { font-size: 1.4rem; }
  .art-emoji.e6 { font-size: 1.1rem; }
  .art-emoji.e7 { font-size: 1.6rem; }
  .art-emoji.e8 { font-size: 1.1rem; }
  .art-emoji.e9 { font-size: 1.3rem; }

  /* About */
  .about-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .goal-box {
    text-align: left;
  }

  /* Payment radios */
  .radio-group {
    grid-template-columns: 1fr;
  }

  /* Form */
  .booking-form {
    padding: 32px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid .card:nth-child(1),
  .cards-grid .card:nth-child(2),
  .cards-grid .card:nth-child(7),
  .cards-grid .card:nth-child(8) {
    grid-column: span 2;
  }
  .cards-grid .card:nth-child(9) { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid .card:nth-child(1),
  .cards-grid .card:nth-child(2),
  .cards-grid .card:nth-child(7),
  .cards-grid .card:nth-child(8),
  .cards-grid .card:nth-child(9) {
    grid-column: span 1;
  }
}

/* =========================================
   HOME AVAILABILITY CALENDAR (Feature 5)
   ========================================= */
.home-avail-section {
  padding: 72px 0 60px;
  background: var(--cream);
}

/* =========================================
   HOME WEATHER (Feature 10)
   ========================================= */
.home-weather-section {
  padding: 60px 0 48px;
  background: var(--parchment);
}
.home-weather-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}
.weather-day-card {
  background: #fff;
  border: 2.5px solid var(--text);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--text);
}
.weather-day-name { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; color: var(--text-muted); display: block; margin-bottom: 8px; }
.weather-day-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.weather-day-temp { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--forest); display: block; }
.weather-day-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; display: block; }
.weather-day-rain { font-size: 0.78rem; color: #3498db; font-weight: 600; margin-top: 4px; display: block; }

/* =========================================
   ADD SECOND SERVICE
   ========================================= */
.add-service-row {
  margin: -4px 0 8px;
}
.add-service-btn {
  background: none;
  border: 2px dashed var(--green);
  border-radius: 10px;
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.add-service-btn:hover {
  background: var(--green-light);
}
.remove-service-btn {
  background: none;
  border: 2px solid #e0d6c8;
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.remove-service-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
}

/* =========================================
   SERVICE DURATION HINT (Feature 1)
   ========================================= */
.service-duration-hint {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 5px;
  display: block;
  background: var(--green-light);
  border-radius: 6px;
  padding: 4px 10px;
  width: fit-content;
}

/* =========================================
   MONTH CALENDAR
   ========================================= */
.month-cal {
  margin-top: 16px;
}

.month-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.month-cal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
}

.month-cal-nav {
  background: none;
  border: 2px solid var(--text);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
}

.month-cal-nav:hover {
  background: var(--green-light);
}

.month-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.month-cal-day-header {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 0;
}

.month-cal-day {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid transparent;
}

.month-cal-day.available {
  background: #d4f0d4;
  border-color: #2d8a2d;
  color: #1a5c1a;
  cursor: pointer;
}

.month-cal-day.available:hover {
  background: #b8e6b8;
}

.month-cal-day.blocked {
  background: #f5c4c4;
  border-color: #c0392b;
  color: #7a1f1f;
}

.month-cal-day.partial {
  background: #fef3cd;
  border-color: var(--amber);
  color: var(--amber-dark);
  cursor: pointer;
}

.month-cal-day.partial:hover {
  background: #fde9a0;
}

.month-cal-day.empty {
  visibility: hidden;
}

.month-cal-day.past {
  opacity: 0.3;
}

@media (max-width: 600px) {
  .home-weather-strip { grid-template-columns: 1fr; }
}

/* =========================================
   BOOK PAGE WEATHER STRIP
   ========================================= */
.book-weather-strip {
  background: var(--forest);
  padding: 14px 0;
}
.book-weather-inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.book-weather-inner::-webkit-scrollbar { display: none; }
.book-weather-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 7px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}
.book-weather-chip .bwc-icon { font-size: 1.1rem; }
.book-weather-chip .bwc-name { opacity: 0.75; font-weight: 400; font-size: 0.8rem; }
.book-weather-chip .bwc-rain { color: #7ec8e3; font-size: 0.78rem; }

/* =========================================
   PHOTO LIGHTBOX (Feature 1)
   ========================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  border: 3px solid rgba(255,255,255,0.15);
  object-fit: contain;
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.gallery-pair img { cursor: zoom-in; transition: transform 0.15s; }
.gallery-pair img:hover { transform: scale(1.03); }

/* Admin Login Box */
.admin-login-box {
  max-width: 400px;
  margin: 120px auto;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.admin-login-box h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 24px;
}

.unscheduled-badge {
  display: inline-block;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

/* Time slot picker */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.time-slot {
  padding: 8px 16px;
  border: 2px solid var(--text);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  transition: all 0.15s ease;
}

.time-slot:hover:not(.time-slot-blocked) {
  background: var(--green-light);
}

.time-slot.time-slot-selected {
  background: var(--green);
  color: var(--white);
  border-color: var(--green-dark);
}

.time-slot-blocked {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}
