/* ===== Variables & Reset ===== */
:root {
  --sage: #3d8f80;
  --sage-light: #6dbfae;
  --sage-pale: #d4f0ec;
  --cream: #edf5f8;
  --warm-white: #f4fafb;
  --terracotta: #4a8fb5;
  --terracotta-light: #7eb8d4;
  --terracotta-dark: #3a7a9e;
  --charcoal: #1a2e38;
  --text: #1e3340;
  --text-light: #4a6d7a;
  --blush: #d0e8f2;
  --golden: #3a9b86;
  --golden-light: #a8ddd0;
  --golden-pale: #e6f4f8;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(26,46,56,0.07);
  --shadow-lg: 0 16px 48px rgba(26,46,56,0.12);
  --font-script: 'Caveat', cursive;
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ===== SVG Defs & Botanicals ===== */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.botanical {
  position: absolute;
  pointer-events: none;
  color: var(--sage);
  z-index: 0;
}

/* Hero botanicals */
.hero-branch-left {
  width: 80px;
  height: 280px;
  left: 3%;
  top: 12%;
  transform: rotate(8deg);
  opacity: 0;
  animation: fade-in-up 1.5s ease-out 0.8s forwards;
}

.hero-branch-right {
  width: 70px;
  height: 240px;
  right: 4%;
  bottom: 18%;
  transform: rotate(-12deg) scaleX(-1);
  color: var(--golden);
  opacity: 0;
  animation: fade-in-up 1.5s ease-out 1.1s forwards;
}

.hero-leaf-1 {
  width: 30px;
  height: 40px;
  left: 12%;
  top: 30%;
  transform: rotate(-25deg);
  color: var(--sage-light);
  opacity: 0;
  animation: fade-in-up 1.5s ease-out 1.3s forwards;
}

.hero-leaf-2 {
  width: 24px;
  height: 32px;
  right: 15%;
  top: 22%;
  transform: rotate(35deg);
  color: var(--terracotta-light);
  opacity: 0;
  animation: fade-in-up 1.5s ease-out 1.5s forwards;
}

.hero-leaf-3 {
  width: 28px;
  height: 36px;
  left: 20%;
  bottom: 25%;
  transform: rotate(15deg);
  color: var(--golden);
  opacity: 0;
  animation: fade-in-up 1.5s ease-out 1.7s forwards;
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(20px) rotate(var(--r, 0deg)); }
  100% { opacity: 1; }
}

/* About branch */
.about-branch {
  width: 260px;
  height: 160px;
  right: -20px;
  top: 40px;
  transform: scaleX(-1);
  color: var(--sage-light);
}

/* Details eucalyptus */
.details-eucalyptus {
  width: 60px;
  height: 200px;
  right: 2%;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  color: var(--sage-light);
}

/* Contact branches */
.contact-branch-left {
  width: 220px;
  height: 130px;
  left: -30px;
  bottom: 40px;
  transform: rotate(8deg);
  color: var(--sage);
}

.contact-branch-right {
  width: 200px;
  height: 120px;
  right: -20px;
  top: 30px;
  transform: scaleX(-1) rotate(5deg);
  color: var(--golden);
}

/* ===== Wave Dividers ===== */
.wave-divider {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

.wave-divider--hero {
  color: var(--warm-white);
  margin-top: -70px;
}

.wave-divider--tabbed-top {
  color: var(--charcoal);
}

.wave-divider--tabbed-bottom {
  color: var(--cream);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  position: relative;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 6px 24px rgba(74,143,181,0.35);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(74,143,181,0.45);
}

.btn-lg {
  padding: 20px 52px;
  font-size: 1.05rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(244, 250, 251, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61, 143, 128, 0.12);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--terracotta);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--warm-white) 0%, var(--golden-pale) 25%, var(--sage-pale) 50%, var(--blush) 75%, var(--golden-light) 100%);
  padding: 120px 24px 140px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Watercolor wash layers */
.shape {
  position: absolute;
  filter: blur(60px);
  opacity: 0;
  animation: wash-in 2s ease-out forwards;
}

.shape-1 {
  width: 120%;
  height: 60%;
  top: -10%;
  right: -20%;
  background: radial-gradient(ellipse at 70% 30%, rgba(58,155,134,0.22) 0%, rgba(168,221,208,0.15) 40%, transparent 70%);
  filter: blur(50px);
  animation-delay: 0s;
}

.shape-2 {
  width: 80%;
  height: 70%;
  bottom: -15%;
  left: -10%;
  background: radial-gradient(ellipse at 30% 70%, rgba(74,143,181,0.22) 0%, rgba(126,184,212,0.12) 50%, transparent 75%);
  filter: blur(70px);
  animation-delay: 0.3s;
}

.shape-3 {
  width: 50%;
  height: 50%;
  top: 20%;
  left: 25%;
  background: radial-gradient(ellipse at 50% 50%, rgba(61,143,128,0.16) 0%, rgba(109,191,174,0.08) 50%, transparent 70%);
  filter: blur(80px);
  animation-delay: 0.6s;
}

@keyframes wash-in {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Subtle drifting motion */
.shape-1 { animation: wash-in 2s ease-out forwards, drift1 25s ease-in-out 2s infinite; }
.shape-2 { animation: wash-in 2s ease-out 0.3s forwards, drift2 20s ease-in-out 2.3s infinite; }
.shape-3 { animation: wash-in 2s ease-out 0.6s forwards, drift3 22s ease-in-out 2.6s infinite; }

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 15px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -10px); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -15px); }
}

.shape-4 {
  width: 40%;
  height: 40%;
  top: 55%;
  right: 5%;
  background: radial-gradient(ellipse at 60% 50%, rgba(74,143,181,0.18) 0%, transparent 65%);
  filter: blur(55px);
  animation: wash-in 2s ease-out 0.9s forwards, drift1 28s ease-in-out 2.9s infinite;
}

/* Remove old flat fade — now using wave divider */
.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  background: rgba(74,143,181,0.1);
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid rgba(74,143,181,0.15);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 em.script {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.3em;
  color: var(--terracotta);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 12px;
  line-height: 1.8;
}

.hero-handwritten {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 36px;
  transform: rotate(-2deg);
  opacity: 0.85;
}

/* ===== About ===== */
.about {
  padding: 100px 0 120px;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

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

.about-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 3px solid var(--golden-light);
  pointer-events: none;
}

.about-image-wrapper:hover {
  transform: rotate(0deg);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text strong {
  color: var(--terracotta);
  font-weight: 600;
}

/* ===== Tabbed Section (Services + Why Me) ===== */
.tabbed-section {
  padding: 100px 0 110px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 60px;
}

.section-title--left {
  text-align: left;
}

/* Tab navigation */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.tab-btn {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn:hover {
  color: rgba(255,255,255,0.8);
}

.tab-btn.active {
  background: rgba(255,255,255,0.12);
  color: white;
}

/* Tab panels — stacked in same grid cell so tallest always defines height */
.tab-panels-wrapper {
  display: grid;
}

.tab-panel {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-panel.active {
  visibility: visible;
  opacity: 1;
}

/* Cards inside tabs */
.tab-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tab-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.tab-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.tab-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.tab-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--golden);
}

.tab-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.tab-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.tab-card em {
  color: var(--golden-light);
  font-style: italic;
}

/* ===== Details ===== */
.details {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: -40px auto 60px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Process intro */
.process-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.process-intro h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.process-intro p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.process-intro strong {
  color: var(--terracotta);
  font-weight: 600;
}

/* Discovery Session */
.discovery {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  margin-bottom: 64px;
  border: 1px solid rgba(61,143,128,0.1);
}

.discovery-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.discovery-header h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
}

.discovery-price {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--terracotta);
  font-weight: 600;
}

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

.discovery-step {
  position: relative;
  padding-top: 20px;
}

.discovery-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--golden));
  border-radius: 3px;
}

.step-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.discovery-step p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Packages */
.packages {
  margin-bottom: 72px;
}

.packages-title {
  font-size: 1.6rem;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.packages-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 40px;
}

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

.package-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(61,143,128,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.package-card--featured {
  background: linear-gradient(160deg, var(--sage), var(--sage-light));
  color: white;
  border: none;
  box-shadow: var(--shadow-lg);
}

.package-card h4 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.package-card--featured h4 {
  color: white;
}

.package-hours {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}

.package-card--featured .package-hours {
  color: var(--golden-pale);
}

.package-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

.packages-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

/* Fine Print + Focus Areas grid */
.details-info-title {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
  max-width: 700px;
}

.fine-print-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}


.detail-item {
  padding-left: 24px;
  border-left: 3px solid var(--golden);
}

.detail-item h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.detail-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Contact / CTA ===== */
.contact {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--golden-pale) 0%, var(--blush) 40%, var(--sage-pale) 100%);
  position: relative;
  overflow: hidden;
}

.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.cta-box > p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  padding: 24px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 220px;
  border: 1px solid rgba(61,143,128,0.15);
}

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

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* ===== Reviews ===== */
.reviews {
  padding: 100px 0 120px;
  background: var(--warm-white);
  position: relative;
}

.reviews .section-title {
  margin-bottom: 48px;
}

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

.review-card {
  background: white;
  border: 1px solid rgba(61,143,128,0.12);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

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

.review-stars {
  color: var(--golden);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  flex: 1;
}

.review-author {
  padding-top: 8px;
  border-top: 1px solid rgba(61,143,128,0.1);
}

.review-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 600;
}

.reviews-source {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.reviews-source a {
  color: var(--terracotta);
  font-weight: 500;
  transition: color 0.3s ease;
}

.reviews-source a:hover {
  color: var(--terracotta-dark);
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--golden), var(--sage), var(--terracotta));
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.footer-sub {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}

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

.footer-dot {
  color: rgba(255,255,255,0.25);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.4s ease, box-shadow 0.4s ease;
    box-shadow: none;
  }

  .nav-links.active {
    clip-path: inset(0);
    box-shadow: var(--shadow-lg);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper {
    aspect-ratio: 4/5;
    max-width: 400px;
    margin: 0 auto;
    transform: rotate(-1deg);
  }

  .discovery-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .discovery {
    padding: 32px 24px;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tab-cards-grid {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

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

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h1 em.script {
    font-size: 1.25em;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .botanical {
    opacity: 0.5;
    transform: scale(0.7);
  }

  .hero-branch-left,
  .hero-branch-right {
    display: none;
  }

  .wave-divider svg {
    height: 40px;
  }
}

