:root {
  --cream: #fff5f3;
  --warm-white: #fff9f7;
  --sage: #E8735A;
  --sage-dark: #7a2e1e;
  --sage-light: #ffd5cc;
  --blush: #f5b8a8;
  --terracotta: #E8735A;
  --brown: #7a2e1e;
  --text: #111827;
  --text-light: #7a4a3e;
  --gold: #E8735A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,245,243,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,115,90,0.15);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { font-family: 'Righteous', cursive; font-size: 1.4rem; color: #9F69D0; letter-spacing: -0.02em; }
.nav-logo span { color: #9F69D0; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-light); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--sage); }
.nav-cta { background: var(--sage); color: white; padding: 0.6rem 1.4rem; border-radius: 100px; font-size: 0.85rem; font-weight: 500; text-decoration: none; letter-spacing: 0.03em; transition: background 0.2s, transform 0.1s; }
.nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding: 90px 5% 0;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.10) 60%, rgba(0,0,0,0.20) 100%);
  pointer-events: none;
}
.hero-text {
  position: absolute; z-index: 1;
  bottom: 3rem; right: 5%;
  text-align: right; color: white;
  display: flex; flex-direction: column; align-items: flex-end; gap: 1.2rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(244,99,30,0.1); color: #1a3578;
  backdrop-filter: blur(6px);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(244,99,30,0.25);
}
.hero-eyebrow::before { content: '🐾'; font-size: 0.9rem; }
h1 {
  font-family: 'Righteous', cursive;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1; color: var(--brown);
  margin-bottom: 0; letter-spacing: -0.02em;
}
h1 em { color: var(--sage); font-style: italic; }
.hero-text h1 { color: white; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-text h1 em { color: #fde4d4; }
.hero-text h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: 0.04em; }
.hero-slogan { font-family: 'Righteous', cursive; font-size: clamp(1rem, 2.5vw, 1.6rem); color: rgba(255,255,255,0.92); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 0.6rem; margin-bottom: 2rem; font-style: italic; }
.hero-sub {
  font-size: 1.1rem; line-height: 1.7; color: var(--text-light);
  max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-text .hero-sub { color: rgba(255,255,255,0.88); max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  background: var(--terracotta); color: white; padding: 0.9rem 2rem;
  border-radius: 100px; font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,53,120,0.25); }
.btn-secondary {
  background: rgba(255,255,255,0.6); color: var(--brown); padding: 0.9rem 2rem;
  border-radius: 100px; font-size: 0.95rem; font-weight: 500;
  text-decoration: none; border: 1.5px solid var(--brown); transition: all 0.2s;
}
.btn-secondary:hover { background: var(--brown); color: white; }
.hero-stats {
  display: flex; gap: 2rem; justify-content: flex-end; flex-wrap: wrap;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.25);
}
.stat-num { font-family: 'Righteous', cursive; font-size: 2rem; font-weight: 700; color: var(--sage); }
.hero-text .stat-num { color: #ffffff; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.hero-text .stat-label { color: rgba(255,255,255,0.95); text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }

.hero-visual { display: none; }
.hero-img-wrap {
  position: relative;
  width: 420px; height: 540px;
  border-radius: 220px 220px 160px 160px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(27,53,120,0.2);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-badge {
  position: absolute; bottom: 30px; left: -20px;
  background: white; border-radius: 20px; padding: 1rem 1.4rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 0.8rem;
  animation: float 3s ease-in-out infinite;
}
.hero-badge-icon { font-size: 1.8rem; }
.hero-badge-text { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; }
.hero-badge-text strong { display: block; color: var(--brown); font-size: 0.9rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── SECTION BASE ── */
section { padding: 100px 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--sage); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--sage); }
h2 {
  font-family: 'Righteous', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #e91e8c; line-height: 1.2; letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
h2 em { color: var(--sage); font-style: italic; }
.section-intro { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.75; margin-bottom: 3rem; font-weight: 300; }

/* ── INTRO STRIP ── */
.intro-strip {
  background: white;
  text-align: center;
  padding: 2.5rem 10%;
  border-bottom: 1px solid rgba(244,99,30,0.1);
}
.intro-strip p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
  max-width: 760px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-img-main { grid-column: span 2; border-radius: 20px; overflow: hidden; height: 260px; }
.about-img-side { border-radius: 16px; overflow: hidden; height: 200px; }
.about-images img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; cursor: zoom-in; }
.about-images img:hover { transform: scale(1.03); }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.2rem; font-weight: 300; }

/* ── BENEFITS ── */
.benefits {
  background: #E8735A;
  color: white;
}
.benefits .section-label { color: rgba(255,255,255,0.7); }
.benefits .section-label::before { background: rgba(255,255,255,0.7); }
.benefits h2 { color: white; }
.benefits .section-intro { color: rgba(255,255,255,0.8); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.benefit-card {
  background: rgba(255,255,255,0.12); border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(255,255,255,0.2); transition: transform 0.2s, background 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.18); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.benefit-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: white; margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; font-weight: 300; }

/* ── SERVICES ── */
.services { background: var(--warm-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card {
  background: white; border-radius: 24px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(27,53,120,0.07);
  border: 1px solid rgba(244,99,30,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--sage-light); }
.service-card.featured::before { background: linear-gradient(90deg, var(--sage), var(--terracotta)); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,53,120,0.12); }
.service-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); font-weight: 500; margin-bottom: 0.8rem; }
.service-card h3 { font-family: 'Righteous', cursive; font-size: 1.4rem; color: #e91e8c; margin-bottom: 0.5rem; }
.price-range { font-size: 1.6rem; font-weight: 600; color: var(--terracotta); margin-bottom: 1rem; font-family: 'Righteous', cursive; }
.price-range small { font-size: 0.85rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; font-weight: 300; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; font-weight: 300; }
.addons { background: var(--cream); border-radius: 16px; padding: 1.5rem; margin-top: 2rem; }
.addons h3 { font-family: 'Righteous', cursive; font-size: 1.2rem; color: var(--brown); margin-bottom: 1rem; }
.addon { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(27,53,120,0.08); font-size: 0.9rem; color: var(--text-light); }
.addon:last-child { border-bottom: none; }
.addon-price { font-weight: 500; color: var(--terracotta); }

/* ── TARGET MARKETS ── */
.markets { background: var(--cream); }
.markets-wrap { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.market-tag {
  background: white; border: 1.5px solid rgba(244,99,30,0.3);
  border-radius: 100px; padding: 0.6rem 1.2rem;
  font-size: 0.9rem; color: var(--brown); font-weight: 400;
  transition: all 0.2s; cursor: default;
  display: flex; align-items: center; gap: 0.4rem;
}
.market-tag:hover { background: var(--sage); color: white; border-color: var(--sage); }

/* ── HOW IT WORKS ── */
.how { background: white; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, var(--sage-light), var(--blush));
}
.step { text-align: center; position: relative; padding-top: 0.5rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage); color: white;
  font-family: 'Righteous', cursive; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(244,99,30,0.35);
}
.step h3 { font-family: 'Righteous', cursive; font-size: 1.1rem; color: var(--brown); margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; font-weight: 300; }

/* ── WELFARE ── */
.welfare { background: linear-gradient(135deg, #fff0ec 0%, var(--cream) 100%); }
.welfare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.welfare-card {
  background: white; border-radius: 20px; padding: 2rem;
  border-left: 4px solid var(--sage);
  box-shadow: 0 4px 20px rgba(27,53,120,0.06);
}
.welfare-card h3 { font-family: 'Righteous', cursive; font-size: 1.2rem; color: var(--brown); margin-bottom: 0.8rem; }
.welfare-card p, .welfare-card li { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; font-weight: 300; }
.welfare-card ul { padding-left: 1.2rem; }
.welfare-card li { margin-bottom: 0.4rem; }

/* ── SERVICE AREA ── */
.area { background: #E8735A; color: white; text-align: center; }
.area h2 { color: white; }
.area .section-intro { color: rgba(255,255,255,0.7); margin-left: auto; margin-right: auto; }
.area .section-label { color: rgba(255,255,255,0.6); }
.area .section-label::before { background: rgba(255,255,255,0.6); }
.area-chips { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.area-chip { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 0.7rem 1.6rem; font-size: 0.9rem; color: white; }
.setup-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; text-align: left; max-width: 900px; margin: 0 auto; }
.setup-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.setup-icon { font-size: 1.4rem; flex-shrink: 0; }
.setup-item p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.5; font-weight: 300; }

/* ── CONTACT ── */
.contact { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: white; border-radius: 20px; padding: 1.8rem 2rem;
  box-shadow: 0 4px 20px rgba(27,53,120,0.07);
  display: flex; align-items: center; gap: 1.2rem;
  transition: transform 0.2s;
}
.contact-card:hover { transform: translateX(4px); }
.contact-icon { font-size: 2rem; width: 52px; text-align: center; flex-shrink: 0; }
.contact-card h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 0.3rem; font-weight: 500; }
.contact-card p { font-size: 1rem; color: var(--brown); font-weight: 500; }
.contact-card small { font-size: 0.8rem; color: var(--text-light); font-weight: 300; }
.contact-form-wrap { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: 0 8px 40px rgba(27,53,120,0.08); }
.contact-form-wrap h3 { font-family: 'Righteous', cursive; font-size: 1.5rem; color: var(--brown); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); margin-bottom: 0.4rem; font-weight: 500; }
input, textarea, select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid rgba(244,99,30,0.25); border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--cream); transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--sage); background: white; }
textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: #e91e8c; color: white;
  padding: 1rem; border: none; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.03em;
}
.form-submit:hover { background: var(--brown); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--text); color: rgba(255,255,255,0.6);
  padding: 3rem 5%;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
}
footer .logo { font-family: 'Righteous', cursive; font-size: 1.2rem; color: white; }
footer p { font-size: 0.85rem; }
footer a { color: var(--sage-light); text-decoration: none; }

/* ── RESPONSIVE ── */

/* ── TABLET (769px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-text { position: absolute; bottom: 2rem; left: 5%; right: 5%; transform: none; text-align: center; align-items: center; width: 90%; }
  .hero-actions { justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; width: 100%; }
  .hero-stats > div { text-align: center; }
}

@media (max-width: 768px) {
  .about-grid, .welfare-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 5% 60px; min-height: 100svh; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-logo-img { max-width: 280px; }
  .hero-text { position: absolute; bottom: 1rem; left: 5%; right: 5%; transform: none; text-align: center; align-items: center; width: 90%; }
  .hero-actions { justify-content: center; gap: 0.5rem; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { font-size: 0.78rem; padding: 0.6rem 1rem; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; width: 100%; }
  .hero-stats > div { text-align: center; }
  .hero-text .stat-num { font-size: 1.3rem; }
  .hero-text .stat-label { font-size: 0.6rem; }
  .steps::before { display: none; }
  nav .nav-links { display: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── SPA ENHANCEMENTS ── */

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* Active nav link */
.nav-links a.active { color: var(--sage); }
.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--sage);
  width: 0;
  transition: width 0.3s ease;
  margin-top: 2px;
  border-radius: 2px;
}
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

/* Page loader */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--warm-white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: 'Righteous', cursive; font-size: 1.8rem; color: var(--brown); }
.loader-logo span { color: var(--sage); }
.loader-paw {
  font-size: 2rem;
  animation: paw-bounce 0.6s ease-in-out infinite alternate;
}
.loader-bar {
  width: 120px; height: 3px;
  background: var(--sage-light); border-radius: 10px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: var(--sage);
  border-radius: 10px;
  animation: load-progress 0.8s ease forwards;
}
@keyframes paw-bounce { from { transform: translateY(0) rotate(-10deg); } to { transform: translateY(-10px) rotate(10deg); } }
@keyframes load-progress { from { width: 0%; } to { width: 100%; } }

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--brown); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(255,248,244,0.98); backdrop-filter: blur(16px);
  padding: 1.5rem 5% 2rem;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 1px solid rgba(244,99,30,0.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block; padding: 0.9rem 0;
  border-bottom: 1px solid rgba(27,53,120,0.08);
  font-size: 1.1rem; color: var(--brown); text-decoration: none;
  font-weight: 500; transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--sage); }
.mobile-nav-cta {
  display: block; margin-top: 1.2rem;
  background: var(--sage); color: white !important;
  text-align: center; padding: 0.9rem !important;
  border-radius: 100px; border-bottom: none !important;
}

/* Scroll-to-top button */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage); color: white;
  border: none; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(244,99,30,0.4);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 50;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--sage-dark); transform: translateY(-3px); }

/* Nav scroll shadow */
nav.scrolled {
  box-shadow: 0 4px 24px rgba(27,53,120,0.1);
}

/* Section transition overlay for anchor clicks */
#section-flash {
  position: fixed; inset: 0; z-index: 200;
  background: var(--sage-light);
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease;
}
#section-flash.flash { opacity: 0.12; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav .nav-cta { display: none; }
  .mobile-nav { display: block; }
}

/* ── FORM VALIDATION STYLES ── */
.field-error {
  display: none;
  color: var(--terracotta);
  font-size: 0.78rem;
  margin-top: 0.3rem;
  padding-left: 0.2rem;
}
input.invalid, textarea.invalid, select.invalid {
  border-color: var(--terracotta) !important;
  background: #fff8f4;
}
input.valid, textarea.valid, select.valid {
  border-color: var(--sage) !important;
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}
.form-submit .spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }
