/* ============================================================
   Coach MJ LaRoche — Vision-Led Mastery
   Earth tone palette with orange accent + butterfly motifs
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --cream:       #F9F3EB;
  --cream-dark:  #EFE5D3;
  --orange:      #C86B2A;
  --orange-light:#E08040;
  --orange-pale: #FAE8D5;
  --brown-dark:  #3E2108;
  --brown-mid:   #6B3A1F;
  --brown-light: #A0673A;
  --sage:        #6B8F71;
  --sage-light:  #9FBE9B;
  --sage-pale:   #E4EFE0;
  --gold:        #C49A3C;
  --text-dark:   #2A1505;
  --text-mid:    #5A3B20;
  --text-light:  #8B6040;
  --white:       #FFFFFF;
  --shadow:      rgba(62, 33, 8, 0.12);
  --shadow-lg:   rgba(62, 33, 8, 0.22);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', 'Helvetica Neue', sans-serif;

  --radius:      12px;
  --radius-lg:   24px;
  --transition:  0.3s ease;
  --max-w:       1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.25; color: var(--brown-dark); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--text-mid); }

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section--alt { background: var(--cream-dark); }
.section--sage { background: var(--sage-pale); }
.section--dark { background: var(--brown-dark); color: var(--cream); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--cream); }

.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 620px; margin: 0.8rem auto 0; font-size: 1.1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200,107,42,0.35);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,107,42,0.45); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--brown-dark);
  box-shadow: 0 4px 18px var(--shadow);
}
.btn-white:hover { background: var(--orange-pale); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(249,243,235,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
  padding: 0.6rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
}
#navbar.scrolled .nav-logo .logo-main {
  color: var(--brown-dark);
}
.nav-logo .logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-top: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
#navbar.scrolled .nav-links a {
  color: var(--brown-dark);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--brown-dark);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.social-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.nav-cta { margin-left: 0.5rem; padding: 0.6rem 1.5rem; font-size: 0.9rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2A1505 0%, #5C2D0D 40%, #3E2108 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,107,42,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(107,143,113,0.12) 0%, transparent 50%);
}
/* Animated floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,107,42,0.15);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 7rem 0 4rem;
}
.hero-content { color: var(--cream); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,107,42,0.2);
  border: 1px solid rgba(200,107,42,0.4);
  color: #F0B060;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: #F0A040; }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(249,243,235,0.85);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.hero-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-text {
  font-size: 1.1rem;
  color: rgba(249,243,235,0.82);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-photo-ring {
  position: relative;
  width: clamp(280px, 40vw, 460px);
  height: clamp(320px, 48vw, 540px);
}
.hero-photo-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(200,107,42,0.35);
}
.hero-photo-ring::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,107,42,0.18);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #5C3D1E 0%, #8B5E3C 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  color: rgba(249,243,235,0.6);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.hero-photo-placeholder svg { opacity: 0.4; }
.hero-stat-strip {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  display: inline-flex;
  gap: 2rem;
  box-shadow: 0 12px 40px var(--shadow-lg);
  white-space: nowrap;
  margin-top: 2rem;
  align-self: flex-start;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--orange); }
.hero-stat span { font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(249,243,235,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(200,107,42,0.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0%,100% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ============================================================
   SVG BUTTERFLY DECORATIONS
   ============================================================ */
.butterfly-deco {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
}
.butterfly-deco--orange { opacity: 0.12; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-lg);
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 60px; bottom: 60px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-photo-frame img,
.about-photo-frame .photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.photo-placeholder {
  background: linear-gradient(135deg, var(--cream-dark), var(--brown-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(200,107,42,0.4);
}
.about-badge strong { display: block; font-family: var(--font-serif); font-size: 1.8rem; }
.about-badge span { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.about-content { padding-bottom: 2rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--orange-pale);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}
.highlight-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.highlight-icon-wrap {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.highlight-text { font-size: 0.9rem; font-weight: 600; color: var(--brown-dark); line-height: 1.4; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--brown-dark); position: relative; overflow: hidden; }
#services .section-header h2, #services .section-header p { color: var(--cream); }
#services .tag { color: var(--gold); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-6px); border-color: rgba(200,107,42,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(200,107,42,0.35);
}
.service-card h3 { color: var(--cream); margin-bottom: 1rem; }
.service-card p { color: rgba(249,243,235,0.75); margin-bottom: 1.5rem; font-size: 0.95rem; }
.service-features { margin-bottom: 2rem; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(249,243,235,0.7);
  font-size: 0.9rem;
  padding: 0.35rem 0;
}
.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.28rem;
}
.service-link {
  color: var(--orange-light);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.7rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--cream-dark); position: relative; overflow: hidden; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px var(--shadow-lg); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange-pale);
  pointer-events: none;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.95rem; color: var(--brown-dark); }
.author-info span  { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   CALENDLY / BOOKING
   ============================================================ */
#booking { background: var(--orange-pale); position: relative; overflow: hidden; }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.booking-content h2 { margin-bottom: 1rem; }
.booking-content p { margin-bottom: 1.5rem; }
.booking-perks { margin: 2rem 0; }
.booking-perk {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(200,107,42,0.15);
}
.booking-perk:last-child { border-bottom: none; }
.perk-icon { font-size: 1.4rem; flex-shrink: 0; }
.perk-icon-wrap {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,107,42,0.3);
}
.perk-text strong { display: block; font-size: 0.95rem; color: var(--brown-dark); }
.perk-text span  { font-size: 0.85rem; color: var(--text-light); }
.calendly-embed-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-lg);
  min-height: 680px;
}
.calendly-inline-widget { min-height: 680px !important; }
.calendly-placeholder {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}
.calendly-placeholder .cal-icon { font-size: 3rem; color: var(--orange); }
.calendly-placeholder h3 { color: var(--brown-dark); }
.calendly-placeholder p  { color: var(--text-light); max-width: 320px; }

/* ============================================================
   BLOG
   ============================================================ */
#blog { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px var(--shadow-lg); }
.blog-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--brown-mid), var(--sage));
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.75rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.blog-cat {
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--brown-dark); }
.blog-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.25rem; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 0.7rem; }
.blog-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   NEWSLETTER / MAILER
   ============================================================ */
#newsletter {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5C2D0D 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.newsletter-inner h2 { color: var(--cream); margin-bottom: 1rem; }
.newsletter-inner p { color: rgba(249,243,235,0.8); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
  outline: none;
  font-family: var(--font-sans);
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(200,107,42,0.4); }
.newsletter-note { font-size: 0.8rem; color: rgba(249,243,235,0.5); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--sage-pale); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
}
.contact-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.contact-val { font-size: 1rem; font-weight: 600; color: var(--brown-dark); }
.contact-val a:hover { color: var(--orange); }
.contact-social { display: flex; gap: 1rem; }
.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  border-radius: 50px;
  background: var(--white);
  color: var(--brown-dark);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 14px var(--shadow);
  transition: all var(--transition);
}
.contact-social-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 40px var(--shadow);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200,107,42,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ============================================================
   CLIENT PORTAL CTA BANNER
   ============================================================ */
#portal-banner {
  background: linear-gradient(135deg, var(--sage) 0%, #4A6B50 100%);
  padding: 4rem 0;
}
.portal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.portal-text h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.portal-text p  { color: rgba(255,255,255,0.85); max-width: 480px; }
.portal-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #1A0C02; color: rgba(249,243,235,0.7); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-main { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); }
.footer-brand .logo-sub  { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); font-weight: 600; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social .social-btn { background: rgba(255,255,255,0.08); color: var(--cream); }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(249,243,235,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(249,243,235,0.4);
}
.footer-bottom a { color: rgba(249,243,235,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   FLASH NOTIFICATION
   ============================================================ */
.flash {
  position: fixed;
  top: 80px; right: 1.5rem;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: 0 8px 30px var(--shadow-lg);
  z-index: 2000;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  max-width: 320px;
  font-size: 0.9rem;
}
.flash.show { transform: translateX(0); }

/* ============================================================
   PORTAL NAV BUTTON
   ============================================================ */
.btn-portal-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-dark);
  background: var(--cream-dark);
  border: 1.5px solid rgba(107,58,31,0.2);
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.btn-portal-nav:hover {
  background: var(--brown-dark);
  color: var(--cream);
  border-color: var(--brown-dark);
  transform: translateY(-1px);
}

/* ============================================================
   DESKTOP ENHANCEMENTS (1280px+)
   ============================================================ */
@media (min-width: 1280px) {
  :root { --max-w: 1240px; }

  /* Hero: taller, more dramatic on large screens */
  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 5rem;
    padding: 8rem 0 6rem;
  }
  .hero-photo-ring { width: 480px; height: 560px; }

  /* About: wider photo */
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 6rem; }

  /* Services: equal 3-col with more padding */
  .service-card { padding: 3rem 2.5rem; }

  /* Testimonials: taller cards */
  .testimonial-card { padding: 3rem; }

  /* Blog cards: taller images */
  .blog-card-img { height: 240px; }

  /* Contact: better proportion */
  .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 5rem; }

  /* Footer: wider brand column */
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero stacks: photo on top, text below */
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-content { order: 2; }
  .hero-photo-wrap { order: 1; }
  .hero-actions { justify-content: center; }
  .hero-text { margin: 0 auto 2rem; }
  .hero-photo-ring { width: 300px; height: 360px; }
  .hero-stat-strip { margin-top: 2.5rem; gap: 2.5rem; }

  /* About stacks */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 420px; margin: 0 auto; }

  /* Services 2-col */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Testimonials 2-col */
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Booking stacks */
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Blog 2-col */
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Contact stacks */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Hide portal button text on medium screens */
  .btn-portal-nav { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar: hamburger only */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(249,243,235,0.98);
    padding: 5rem 2rem 2.5rem;
    gap: 1.5rem;
    z-index: 999;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; padding: 0.25rem 0; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  /* Hide social icons on mobile — visible in footer */
  .nav-social .social-btn { display: none; }
  /* Hide portal button on mobile */
  .btn-portal-nav { display: none; }
  .nav-cta { padding: 0.4rem 0.85rem; font-size: 0.78rem; white-space: nowrap; }
  /* Smaller logo so it stays on one line */
  .nav-logo .logo-main { font-size: 1rem; }
  .nav-logo .logo-sub { font-size: 0.6rem; }

  /* Hero */
  .hero-inner { padding: 9rem 0 3rem; gap: 2rem; }
  .hero-photo-ring { width: 260px; height: 310px; }
  .hero-stat-strip { flex-direction: row; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .hero-stat strong { font-size: 1.3rem; }

  /* Services single col */
  .services-grid { grid-template-columns: 1fr; }

  /* Testimonials single col */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Blog single col */
  .blog-grid { grid-template-columns: 1fr; }

  /* Newsletter form stacks */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }

  /* Portal banner */
  .portal-inner { flex-direction: column; text-align: center; }
  .portal-actions { justify-content: center; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }

  /* Footer single col */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Reduce section padding */
  .section { padding: 4.5rem 0; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.2rem; }

  /* Hero adjustments */
  .hero-inner { padding: 8rem 0 2.5rem; }
  .hero-photo-ring { width: 220px; height: 270px; }
  .hero-stat-strip { gap: 1rem; padding: 0.75rem 1.25rem; }
  .hero-badge { font-size: 0.7rem; }

  /* Buttons */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Blog cards */
  .blog-card-img { height: 180px; }

  /* Booking perks */
  .booking-perk { gap: 0.75rem; }
  .perk-icon-wrap { width: 36px; height: 36px; font-size: 0.85rem; }

  /* Service cards */
  .service-card { padding: 2rem 1.5rem; }

  /* Contact form */
  .contact-form { padding: 1.75rem; }
  .testimonial-card { padding: 1.75rem; }

  /* Footer */
  .footer-grid { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
