/* ============================================================
   Michelle's Mutts — Online Dog Training
   Shared stylesheet
   ============================================================ */

:root {
  --teal: #29B5C8;
  --teal-dark: #1A8A9A;
  --ink: #1A1917;
  --ink-deep: #143C44;
  --text: #2C2A28;
  --muted: #7A7772;
  --bg: #F9F8F6;
  --surface: #F0EEE9;
  --white: #FFFFFF;
  --border: #E4E2DE;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --display: 'Montserrat', 'DM Sans', Arial, sans-serif;
  --script: 'Kaushan Script', 'Playfair Display', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ── Shared utilities ─────────────────────────────────────── */
.wrap { max-width: 1080px; margin: 0 auto; width: 100%; }
.wrap-narrow { max-width: 780px; margin: 0 auto; width: 100%; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-dark); }
.btn--outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--teal-dark); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav.scrolled {
  background: rgba(249,248,246,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; }
.nav-brand img { height: 56px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-name {
  font-family: var(--display); font-weight: 800; font-size: 1.18rem;
  color: var(--ink-deep); text-transform: uppercase; letter-spacing: 0.01em; white-space: nowrap;
}
.nav-brand-sub {
  font-family: var(--display); font-weight: 700; font-size: 0.64rem;
  color: var(--teal); text-transform: uppercase; letter-spacing: 0.22em;
  margin-top: 3px; white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--sans); font-size: 0.98rem; font-weight: 500;
  color: #4A4845; border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); border-bottom-color: var(--teal); }
.btn-book {
  background: var(--teal); color: #fff !important;
  padding: 0.6rem 1.3rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem; white-space: nowrap;
  border-bottom: none !important; padding-bottom: 0.6rem !important;
}
.btn-book:hover { background: var(--teal-dark); }
.nav-toggle {
  display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--teal);
  display: none; flex-direction: column; padding: 2rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end; background: none; border: none; color: #fff;
  font-size: 2rem; line-height: 1;
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.mobile-menu-links a {
  font-size: 1.5rem; font-weight: 600; color: #fff; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1rem;
}
.mobile-menu-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.5rem; }
.mobile-menu-legal a { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  min-height: 100vh; background: var(--bg);
  display: flex; align-items: center; padding: 7rem 2rem 4rem;
}
.hero-grid {
  max-width: 1080px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero h1 { margin-bottom: 1.5rem; line-height: 1; }
.hero-line-display {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.2rem); color: var(--ink-deep);
  text-transform: uppercase; letter-spacing: 0.005em;
}
.hero-line-script {
  display: block; font-family: var(--script); font-weight: 400;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem); color: var(--teal);
  line-height: 1; margin: 0.12em 0 0.04em;
}
.hero-heart { color: var(--teal); font-weight: 700; }
.hero p.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 440px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-rating { margin-top: 3rem; display: flex; align-items: center; gap: 1rem; }
.hero-rating .stars { display: flex; }
.hero-rating span { font-size: 0.85rem; color: var(--muted); }

.hero-photo { display: flex; justify-content: center; position: relative; }
.hero-photo-bg {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(41,181,200,0.08); top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hero-photo-wrap {
  width: 340px; height: 340px; border-radius: 50%; border: 5px solid var(--teal);
  overflow: hidden; position: relative; z-index: 1; box-shadow: 0 20px 60px rgba(41,181,200,0.2);
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.hero-photo-badge {
  position: absolute; bottom: 20px; right: 10px; background: #fff; border-radius: 12px;
  padding: 0.75rem 1.25rem; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 0.6rem; z-index: 2;
}
.hero-photo-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #4CAF50; }
.hero-photo-badge span { font-size: 0.82rem; font-weight: 600; color: var(--ink); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--teal); padding: 4rem 2rem; }
.reviews-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.reviews-label {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem;
}
.reviews-label span {
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.reviews-stage { position: relative; min-height: 140px; }
.review {
  position: absolute; top: 0; left: 0; right: 0; opacity: 0;
  transition: opacity 0.6s ease; pointer-events: none;
}
.review.active { opacity: 1; pointer-events: all; }
.review p.quote {
  font-family: var(--serif); font-size: clamp(1.2rem, 3vw, 1.6rem); color: #fff;
  line-height: 1.5; font-style: italic; margin-bottom: 1.25rem;
}
.review p.who { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.reviews-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.reviews-dots button {
  width: 8px; height: 8px; border-radius: 999px; border: none;
  background: rgba(255,255,255,0.4); transition: all 0.3s; padding: 0;
}
.reviews-dots button.active { width: 24px; background: #fff; }

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section { padding: 6rem 2rem; }
.section--bg { background: var(--bg); }
.section--surface { background: var(--surface); }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head.tight { margin-bottom: 3.5rem; }
.section-head h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink); font-weight: 700;
}

/* About teaser / split */
.split-grid {
  max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.split-photo { position: relative; }
.split-photo .frame { width: 100%; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; }
.split-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px; background: var(--teal);
  border-radius: 12px; padding: 1.25rem 1.5rem; color: #fff;
}
.about-badge .big { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-badge .small { font-size: 0.78rem; opacity: 0.9; margin-top: 0.25rem; }
.split-text h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--ink);
  margin-bottom: 1.5rem; line-height: 1.15; font-weight: 700;
}
.split-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }
.split-text .btn { margin-top: 1rem; }

/* How it works */
.steps-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step-card {
  background: var(--white); border-radius: 16px; padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); border-top: 4px solid var(--teal);
}
.step-card .num {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: rgba(41,181,200,0.18); line-height: 1; margin-bottom: 1rem;
}
.step-card h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); margin-bottom: 0.75rem; font-weight: 700; }
.step-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.7; }

/* Services preview cards (home) */
.services-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
  background: var(--white); color: var(--text); border-radius: 16px; padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.svc-card.featured { background: var(--teal); color: #fff; box-shadow: 0 8px 32px rgba(41,181,200,0.3); }
.svc-card.featured:hover { box-shadow: 0 16px 40px rgba(41,181,200,0.35); }
.svc-card .pop {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 0.25rem;
}
.svc-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.svc-card.featured h3 { color: #fff; }
.svc-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; flex-grow: 1; }
.svc-card.featured p { color: rgba(255,255,255,0.85); }
.svc-card .row { margin-top: 0.5rem; display: flex; align-items: center; justify-content: space-between; }
.svc-card .price { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--teal); }
.svc-card.featured .price { color: #fff; }
.svc-card .chip-btn {
  background: var(--surface); border: none; border-radius: 6px; padding: 0.4rem 0.9rem;
  font-size: 0.8rem; font-weight: 600; color: var(--teal);
}
.svc-card.featured .chip-btn { background: rgba(255,255,255,0.2); color: #fff; }

/* Brand tagline */
.tagline { background: var(--surface); padding: 5rem 2rem; text-align: center; }
.tagline-inner { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.tagline .script { font-family: var(--script); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--ink-deep); line-height: 1.1; }
.tagline .display {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--teal); margin-top: 0.25rem;
}

/* CTA banner */
.cta-banner { background: var(--ink-deep); padding: 6rem 2rem; text-align: center; }
.cta-banner-inner { max-width: 600px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem); color: #fff;
  margin-bottom: 1rem; font-weight: 700; line-height: 1.2;
}
.cta-banner p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2.5rem; font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-top { padding-top: 84px; }
.page-head { background: var(--surface); padding: 4rem 2rem 3rem; text-align: center; }
.page-head h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--ink);
  font-weight: 700; margin-bottom: 1rem;
}
.page-head p { color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: var(--surface); padding: 5rem 2rem 4rem; }
.about-hero .split-grid { grid-template-columns: 1fr 1.4fr; }
.about-hero .split-photo .frame { aspect-ratio: 3/4; }
.about-hero .about-badge { bottom: -16px; left: -16px; right: auto; padding: 1rem 1.5rem; }
.about-hero .about-badge .big { font-size: 1.5rem; }
.about-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--ink);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem;
}
.about-tag {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.5rem;
}
.about-hero p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }

.about-body { padding: 5rem 2rem; background: var(--bg); }
.about-block { margin-bottom: 3.5rem; }
.about-block h2, .qual-head {
  font-family: var(--serif); font-size: 1.5rem; color: var(--ink); font-weight: 700;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--teal); display: inline-block;
}
.about-block p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.qual-list { display: flex; flex-direction: column; gap: 1rem; }
.qual-item {
  display: flex; align-items: flex-start; gap: 1rem; background: var(--surface);
  border-radius: 10px; padding: 1rem 1.25rem;
}
.qual-item svg { flex-shrink: 0; margin-top: 2px; }
.qual-item span { color: var(--text); font-size: 0.95rem; }
.about-cta { margin-top: 3rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   SERVICES / PRICING (merged) PAGE
   ============================================================ */
.pricing-grid {
  max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.price-card {
  background: var(--white); border-radius: 16px; padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); display: flex; flex-direction: column; position: relative;
}
.price-card.featured {
  background: var(--teal); color: #fff; padding: 2.75rem 2rem 2rem;
  box-shadow: 0 8px 32px rgba(41,181,200,0.3);
}
.price-card .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; border-radius: 999px; padding: 0.2rem 0.9rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; white-space: nowrap;
}
.price-card h2 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
.price-card.featured h2 { color: #fff; }
.price-card .sub { color: var(--muted); font-size: 0.82rem; margin-bottom: 1.5rem; }
.price-card.featured .sub { color: rgba(255,255,255,0.75); }
.price-card .price { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--teal); margin-bottom: 1.5rem; line-height: 1; }
.price-card.featured .price { color: #fff; }
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column;
  gap: 0.6rem; flex-grow: 1;
}
.price-card li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.price-card.featured li { color: rgba(255,255,255,0.85); }
.price-card li .tick { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.price-card.featured li .tick { color: #fff; }
.price-card .book-btn {
  background: var(--teal); color: #fff; border: none; padding: 0.8rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; width: 100%;
}
.price-card.featured .book-btn { background: #fff; color: var(--teal); }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 2rem; }
.pricing-note a { color: var(--teal); font-weight: 600; }

/* ============================================================
   FORMS (contact + booking)
   ============================================================ */
.form-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.75rem; }
.form-pills span {
  background: #fff; border-radius: 999px; padding: 0.4rem 1rem; font-size: 0.8rem;
  font-weight: 600; color: var(--teal-dark); box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.form-wrap { padding: 3.5rem 2rem 5rem; background: var(--bg); }
.form-card {
  max-width: 760px; margin: 0 auto; background: var(--white); border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.form-card.narrow { max-width: 620px; }
label.fld-label { font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.4rem; display: block; }
.fld {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid #DDD; border-radius: 8px;
  font-family: var(--sans); font-size: 0.97rem; color: var(--text); background: #fff; outline: none;
}
.fld:focus { border-color: var(--teal); }
.fld.fld-invalid { border-color: #D64545; background: rgba(214,69,69,0.04); }
.fld.fld-invalid:focus { border-color: #D64545; }
.consent.consent-invalid input { outline: 2px solid #D64545; outline-offset: 2px; border-radius: 3px; }
.consent.consent-invalid span { color: #B23A3A; }
textarea.fld { resize: vertical; }
select.fld {
  appearance: none; padding-right: 2.2rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%237A7772' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat; background-position: right 0.9rem center;
}
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.form-service-box { background: var(--surface); border-radius: 12px; padding: 1.25rem; border: 1px solid var(--teal); }
.form-service-box .hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; line-height: 1.5; }
.form-service-box .hint a, .link { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }

.sec-title { display: flex; align-items: center; gap: 0.7rem; margin: 0.5rem 0 0.25rem; }
.sec-title .n {
  font-family: var(--display); font-weight: 800; font-size: 0.78rem; color: #fff;
  background: var(--teal); border-radius: 999px; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sec-title h3 {
  font-family: var(--display); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-deep);
}
.fld-note { font-size: 0.85rem; color: var(--muted); margin-top: -0.5rem; }

.goals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.goal-btn {
  display: flex; align-items: center; gap: 0.6rem; text-align: left; background: #fff;
  border: 1.5px solid #E0DED9; border-radius: 10px; padding: 0.7rem 0.9rem;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--text); transition: all 0.15s;
}
.goal-btn .box {
  width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid #C9C6C0; background: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.goal-btn .box svg { display: none; }
.goal-btn.on { background: rgba(41,181,200,0.1); border-color: var(--teal); color: var(--teal-dark); }
.goal-btn.on .box { background: var(--teal); border-color: var(--teal); }
.goal-btn.on .box svg { display: block; }

.toggle-row { display: flex; gap: 0.6rem; }
.toggle-btn {
  flex: 1; background: #fff; color: var(--text); border: 1.5px solid #E0DED9; border-radius: 8px;
  padding: 0.6rem; font-weight: 600; font-size: 0.9rem;
}
.toggle-btn.on { background: var(--teal); color: #fff; border-color: var(--teal); }

.consent-list { display: flex; flex-direction: column; gap: 0.9rem; }
.consent {
  display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer;
}
.consent input { margin-top: 3px; accent-color: var(--teal); flex-shrink: 0; width: 18px; height: 18px; }
.consent span { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.consent span a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }

.form-error {
  background: rgba(214,69,69,0.08); border: 1px solid #D64545; color: #B23A3A;
  border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.85rem; line-height: 1.5;
}
.submit-btn {
  background: var(--teal); color: #fff; border: none; padding: 1rem; border-radius: 8px;
  font-weight: 600; font-size: 1rem; margin-top: 0.5rem;
}
.submit-btn:hover:not(:disabled) { background: var(--teal-dark); }

.form-success { text-align: center; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(41,181,200,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.form-success h2 { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); font-weight: 700; margin-bottom: 0.75rem; }
.form-success p { color: var(--muted); line-height: 1.7; max-width: 440px; margin: 0 auto 1.5rem; }
.form-success .btn { margin: 0 0.3rem; }
.hidden { display: none !important; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-body { padding: 4rem 2rem 5rem; background: var(--bg); }
.legal-note {
  background: rgba(41,181,200,0.1); border: 1px solid var(--teal); border-radius: 12px;
  padding: 1.1rem 1.4rem; margin-bottom: 2.5rem; display: flex; gap: 0.9rem; align-items: flex-start;
}
.legal-note .tag {
  font-family: var(--display); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-dark); background: #fff; border-radius: 6px;
  padding: 0.25rem 0.5rem; flex-shrink: 0; margin-top: 2px;
}
.legal-note p { color: var(--text); line-height: 1.7; font-size: 0.9rem; }
.legal-section { margin-bottom: 2.75rem; }
.legal-section h2 {
  font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 700;
  margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--teal); display: inline-block;
}
.legal-section p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-section ul {
  margin: 0 0 1rem; padding-left: 1.2rem; color: var(--muted); line-height: 1.8;
  font-size: 0.95rem; display: flex; flex-direction: column; gap: 0.35rem;
}
.legal-section a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }
.fill {
  background: rgba(41,181,200,0.14); border-radius: 4px; padding: 0 5px;
  color: var(--teal-dark); font-weight: 600; white-space: nowrap;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; max-width: 760px;
  margin: 0 auto; background: var(--ink-deep); color: #fff; border-radius: 14px;
  padding: 1.5rem 1.75rem; box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem;
}
.cookie-banner .txt { flex: 1 1 300px; min-width: 0; }
.cookie-banner .ttl { font-family: var(--display); font-weight: 800; font-size: 0.95rem; margin-bottom: 0.4rem; }
.cookie-banner p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.8); }
.cookie-banner p a { color: #fff; font-weight: 600; text-decoration: underline; }
.cookie-banner .acts { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-banner .acts button { padding: 0.65rem 1.1rem; border-radius: 8px; font-weight: 600; font-size: 0.85rem; }
.cookie-banner .ess { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); }
.cookie-banner .all { background: var(--teal); color: #fff; border: none; padding: 0.65rem 1.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-deep); color: rgba(255,255,255,0.6); padding: 3rem 2rem; }
.footer-grid {
  max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-brand span { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: #fff; text-transform: uppercase; letter-spacing: 0.01em; }
.footer-col p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col .head { color: #fff; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.footer-social {
  display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1.25rem;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 600; transition: color 0.2s;
}
.footer-social:hover { color: #fff; }
.footer-social svg { width: 20px; height: 20px; }
.mobile-menu-social {
  display: inline-flex; align-items: center; gap: 0.65rem; margin-top: 1.75rem; align-self: flex-start;
  color: #fff; font-size: 1.05rem; font-weight: 600;
}
.mobile-menu-social svg { width: 22px; height: 22px; }
.footer-bottom {
  max-width: 1080px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-grid, .split-grid, .steps-grid, .services-grid, .pricing-grid, .footer-grid,
  .about-hero .split-grid { grid-template-columns: 1fr; }
  .steps-grid { gap: 1.25rem; }
  .section { padding: 4rem 1rem; }
  .about-badge { left: 0; right: 0; bottom: 0; border-radius: 0 0 12px 0; width: fit-content; }
  .about-hero .about-badge { left: 0; }
  .hero-photo-wrap { width: 240px; height: 240px; }
  .hero-photo-bg { width: 280px; height: 280px; }
  .hero-photo-badge { right: 0; bottom: -8px; font-size: 0.78rem; }
  .price-card.featured { margin-top: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; }
}
@media (max-width: 600px) {
  .form-row2 { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-grid { gap: 2rem; }
  .split-grid { gap: 2.5rem; }
  .hero-photo-wrap { width: 280px; height: 280px; }
  .hero-photo-bg { width: 320px; height: 320px; }
}
