:root {
  --berry: #6f2946;
  --berry-deep: #3d1628;
  --grape: #f0d5e0;
  --cream: #fbf6f0;
  --foam: #fffdf9;
  --sand: #f0e0cf;
  --olive: #3f5c3a;
  --leaf: #dce8c8;
  --ink: #1c1817;
  --muted: #3f3835;
  --line: rgba(111, 41, 70, 0.16);
  --shadow: 0 22px 48px rgba(61, 22, 40, 0.12);
  --radius: 28px;
  --header: 76px;
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --serif: "Fraunces", "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 100% 0, rgba(201, 163, 180, 0.22), transparent 55%),
    radial-gradient(700px 380px at 0 20%, rgba(220, 232, 200, 0.4), transparent 50%),
    var(--cream);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--berry); text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.28;
  margin: 0 0 0.55em;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.15rem); }
.hero h1 { max-width: 13em; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.35rem); }
h3 { font-size: 1.28rem; line-height: 1.35; }
p { margin: 0 0 0.9em; max-width: 38em; }

.container { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--olive);
}
.section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn-sm { padding: 10px 18px; font-size: 0.98rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--berry); color: #fff; }
.btn-primary:hover { background: var(--berry-deep); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--berry-deep); border-color: #c9a3b4; }
.btn-ghost:hover { background: var(--foam); }
.btn-outline { background: #fff; color: var(--berry); border-color: var(--berry); width: 100%; }
.btn-outline:hover { background: var(--berry); color: #fff; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: rgba(251, 246, 240, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.header.scrolled { border-bottom-color: var(--line); }
.header-inner, .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  gap: 22px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; font-weight: 700; }
.logo-mark { font-size: 1.35rem; }
.logo-text { font-family: var(--serif); font-size: 1.4rem; line-height: 1.15; }
.logo-text span {
  display: block;
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--muted);
  font-weight: 600;
}
.nav a:not(.nav-cta) { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1.02rem; }
.nav a { text-decoration: none; font-weight: 600; font-size: 1.02rem; }
.header .nav a.nav-cta {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}
.burger { display: none; width: 42px; height: 42px; border: 0; background: transparent; }
.burger span { display: block; height: 2px; margin: 6px 0; background: var(--berry-deep); }

.hero { padding: 36px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "eyebrow card"
    "copy card";
  column-gap: 48px;
  row-gap: 8px;
  align-items: start;
}
.hero-eyebrow { grid-area: eyebrow; }
.hero-copy { grid-area: copy; }
.hero-card { grid-area: card; align-self: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 36em; }
.hero-copy .lead { margin-bottom: 0.55em; }
.hero-copy .lead:last-of-type { margin-bottom: 1.1em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 0; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.pills li {
  background: var(--leaf);
  color: var(--berry-deep);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 600;
}
.hero-card { margin: 0; background: #fff; border-radius: 36px 12px 36px 36px; padding: 14px 14px 20px; box-shadow: var(--shadow); }
.hero-card img { width: 100%; border-radius: 28px 8px 24px 24px; aspect-ratio: 1; object-fit: cover; object-position: center; background: var(--sand); }
.hero-card figcaption { padding: 12px 8px 0; font-size: 1.05rem; }
.hero-card span { display: block; color: var(--muted); font-size: 1rem; }

.strip {
  background: var(--berry-deep);
  color: var(--grape);
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 16px 0;
  animation: slide 36s linear infinite;
  font-size: 1.02rem;
  font-weight: 700;
}
.strip-track span::before { content: " · "; color: #fff; }
@keyframes slide { to { transform: translateX(-50%); } }

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trio article {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.trio article p { color: var(--muted); max-width: none; }
.trio span { font-family: var(--serif); color: var(--berry); font-size: 1.5rem; }
.wide-photo { margin: 36px 0 0; }
.wide-photo img { width: 100%; height: min(460px, 56vw); object-fit: cover; border-radius: 32px; }
.wide-photo figcaption { color: var(--muted); margin-top: 12px; font-size: 1.02rem; max-width: 40em; }

.about { background: linear-gradient(180deg, transparent, var(--sand) 40%, transparent); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-photos img { width: 100%; height: 180px; object-fit: cover; object-position: center; border-radius: 22px; }
.about-photos img:first-child { grid-column: 1 / -1; height: 300px; }
.facts { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 8px; }
.facts li { background: var(--foam); border-radius: 14px; padding: 12px 16px; font-size: 1.05rem; }

.forwhom { background: var(--berry-deep); color: #fff8f3; }
.forwhom .eyebrow { color: #f0d5e0; }
.forwhom h2 { color: #fff; }
.forwhom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.chip-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.chip-list li {
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
}

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.offer {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.offer.featured { background: var(--berry); color: #fff; transform: translateY(-8px); }
.offer.featured h3,
.offer.featured p,
.offer.featured li { color: #fff; }
.offer.featured .sum, .offer.featured .offer-tag { color: #fff; }
.offer-tag { margin: 0; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.82rem; color: var(--olive); }
.sum { font-family: var(--serif); font-size: 2.2rem; margin: 4px 0 10px; color: var(--berry); line-height: 1.2; }
.sum small { font-size: 1rem; font-family: var(--font); font-weight: 600; }
.price-note { margin: -4px 0 10px; font-size: 0.98rem; color: var(--muted); font-weight: 600; }
.offer p { max-width: none; }
.offer ul { padding: 0; margin: 0 0 22px; list-style: none; flex: 1; }
.offer li { padding: 7px 0 7px 18px; position: relative; color: var(--muted); }
.offer li::before { content: "·"; position: absolute; left: 0; color: var(--olive); font-weight: 700; }
.offer .btn { margin-top: auto; }
.offer.featured .btn-primary { background: #fff; color: var(--berry); width: 100%; }

.about-copy p { color: var(--ink); }
.bot { background: var(--leaf); }
.bot p { color: var(--ink); font-size: 1.08rem; }
.bot-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; }
.bot img { width: 100%; height: 340px; object-fit: cover; object-position: center 28%; border-radius: 28px; }

.agent { background: var(--cream); }
.bot-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bot-card {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bot-card h3 { margin: 4px 0 0; }
.bot-card p { max-width: none; }
.bot-card .btn { margin-top: auto; }
.bot-card.featured { background: var(--berry); color: #fff; }
.bot-card.featured h3,
.bot-card.featured p { color: #fff; }
.bot-card.featured .offer-tag { color: #fff; }
.bot-card.featured .btn-primary { background: #fff; color: var(--berry); }

.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.story-grid blockquote {
  margin: 0;
  background: var(--foam);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
}
.story-grid blockquote:first-child { grid-column: 1 / -1; padding: 30px 32px; font-size: 1.1rem; }
.story-grid blockquote::before { content: "“"; height: 32px; color: var(--berry); font-family: var(--serif); font-size: 3rem; line-height: 0.9; }
.story-grid blockquote p { max-width: none; color: var(--ink); }
.story-grid blockquote strong { color: var(--berry); }
.story-grid footer { display: flex; flex-direction: column; margin-top: auto; padding-top: 18px; color: var(--muted); font-size: 1rem; }
.story-grid b { color: var(--berry-deep); }

.faq { background: var(--foam); }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 32px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.4;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--berry); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { color: var(--muted); font-size: 1.05rem; max-width: none; }
.faq-list details p + p { margin-top: 0.6em; }

.booking { background: var(--sand); }
#booking, #contact { scroll-margin-top: calc(var(--header) + 20px); }
.booking-intro { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-bottom: 32px; }
.booking-intro h2 { max-width: 22ch; }
.booking-intro p { max-width: 36em; }
.booking-promise { color: var(--berry); font-weight: 700; margin-bottom: 0; }
.booking-person { display: flex; align-items: center; gap: 16px; }
.booking-person img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; border: 3px solid var(--foam); }
.booking-person b { display: block; color: var(--berry-deep); }
.booking-person span { display: block; font-size: 0.95rem; line-height: 1.5; color: var(--muted); }
.booking-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.booking-card-head { padding: 28px 32px 20px; background: var(--foam); border-bottom: 1px solid var(--line); }
.booking-card-head h3 { color: var(--berry-deep); margin-bottom: 16px; }
.booking-card-head p { max-width: none; margin: 12px 0 0; color: var(--muted); font-size: 0.95rem; }
.booking-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-weight: 600;
}
.booking-steps li { display: flex; align-items: center; gap: 10px; }
.booking-steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grape);
  color: var(--berry-deep);
  font-size: 0.9rem;
}
.booking-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.booking-type {
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(111, 41, 70, 0.2);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: 0.18s ease;
}
.booking-type b, .booking-type span { display: block; }
.booking-type b { margin-bottom: 2px; color: var(--berry-deep); font-family: var(--serif); font-size: 1.08rem; }
.booking-type span { color: var(--muted); font-size: 0.9rem; }
.booking-type:hover { border-color: var(--berry); transform: translateY(-1px); }
.booking-type[aria-pressed="true"] { border-color: var(--berry); background: var(--grape); box-shadow: inset 0 0 0 1px var(--berry); }
.booking-timezone { display: flex; align-items: center; gap: 10px 14px; flex-wrap: wrap; margin-top: 20px; }
.booking-timezone label { font-weight: 700; font-size: 0.98rem; }
.booking-timezone select {
  min-width: 230px;
  max-width: 100%;
  border: 1px solid rgba(111, 41, 70, 0.3);
  border-radius: 12px;
  padding: 10px 38px 10px 12px;
  color: var(--ink);
  background: #fff;
}
.booking-calendar {
  background: #fff;
  padding: 30px 32px 34px;
}
.cal-inline-fallback { padding: 40px 32px; text-align: center; color: var(--muted); }
.booking-loading { min-height: 300px; display: grid; place-content: center; justify-items: center; gap: 16px; color: var(--muted); text-align: center; }
.booking-loading[hidden], .booking-picker[hidden], .booking-error[hidden], .booking-form[hidden], .booking-success[hidden] { display: none; }
.booking-spinner { width: 34px; height: 34px; border: 3px solid var(--grape); border-top-color: var(--berry); border-radius: 50%; animation: booking-spin 0.8s linear infinite; }
@keyframes booking-spin { to { transform: rotate(360deg); } }
.booking-error { max-width: 570px; min-height: 300px; margin: auto; display: grid; place-content: center; text-align: center; justify-items: center; }
.booking-error h4 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.35rem; color: var(--berry-deep); }
.booking-error p { margin: 0 auto 22px; color: var(--muted); }
.booking-error-actions, .booking-success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.booking-error-actions .btn, .booking-success-actions .btn { width: auto; }
.booking-picker { display: grid; gap: 28px; }
.booking-stage { display: grid; gap: 16px; }
.booking-stage + .booking-stage { padding-top: 26px; border-top: 1px solid var(--line); }
.booking-stage-title { display: flex; gap: 12px; align-items: center; }
.booking-stage-number { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: var(--grape); color: var(--berry-deep); font-weight: 700; font-size: 0.9rem; }
.booking-stage-title h4 { margin: 0; color: var(--berry-deep); font-family: var(--serif); font-size: 1.18rem; line-height: 1.3; }
.booking-stage-title p { max-width: none; margin: 1px 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.4; }
.booking-days { display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 10px; scroll-snap-type: x proximity; scrollbar-color: rgba(111, 41, 70, 0.28) transparent; }
.booking-day {
  flex: 0 0 84px;
  min-height: 104px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--foam);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-content: center;
  gap: 1px;
  text-align: center;
  transition: 0.18s ease;
}
.booking-day span { color: var(--muted); font-size: 0.86rem; text-transform: capitalize; }
.booking-day b { font-family: var(--serif); color: var(--berry-deep); font-size: 1.5rem; line-height: 1.2; }
.booking-day small { color: var(--muted); font-size: 0.82rem; }
.booking-day:hover { border-color: var(--berry); transform: translateY(-1px); }
.booking-day[aria-pressed="true"] { background: var(--berry); border-color: var(--berry); box-shadow: 0 8px 18px rgba(111, 41, 70, 0.2); }
.booking-day[aria-pressed="true"] span, .booking-day[aria-pressed="true"] b, .booking-day[aria-pressed="true"] small { color: #fff; }
.booking-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; }
.booking-time { min-height: 50px; border: 1px solid rgba(111, 41, 70, 0.28); border-radius: 13px; background: #fff; color: var(--berry-deep); font-weight: 700; cursor: pointer; transition: 0.18s ease; }
.booking-time:hover { border-color: var(--berry); background: var(--foam); }
.booking-time[aria-pressed="true"] { background: var(--berry); border-color: var(--berry); color: #fff; }
.booking-form { display: grid; gap: 18px; margin-top: 2px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--foam); }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form label > span { display: block; margin-bottom: 6px; color: var(--ink); font-size: 0.95rem; font-weight: 700; }
.booking-form label small { color: var(--muted); font-weight: 400; }
.booking-form input, .booking-form textarea { width: 100%; border: 1px solid rgba(111, 41, 70, 0.22); border-radius: 12px; padding: 12px 13px; color: var(--ink); background: #fff; }
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--berry); }
.booking-message-field { grid-column: 1 / -1; }
.booking-check { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 0.92rem; line-height: 1.45; }
.booking-form .booking-check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; accent-color: var(--berry); }
.booking-form .booking-check > span { margin: 0; color: var(--muted); font-size: inherit; font-weight: 400; }
.booking-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.booking-selection { color: var(--berry) !important; font-weight: 700; }
.booking-success { min-height: 360px; max-width: 660px; margin: auto; display: grid; place-content: center; justify-items: center; text-align: center; }
.booking-success-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 18px; border-radius: 50%; color: #fff; background: var(--olive); font-size: 1.7rem; font-weight: 700; }
.booking-success .eyebrow { margin-bottom: 6px; }
.booking-success h3 { font-size: 2rem; color: var(--berry-deep); }
.booking-success p { margin-left: auto; margin-right: auto; color: var(--muted); }
.booking-success-time { color: var(--berry) !important; font-size: 1.15rem; font-weight: 700; }
.booking-help { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; padding: 16px 32px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.booking-assistance { margin-top: 20px; background: var(--foam); border: 1px solid var(--line); border-radius: 20px; }
.booking-assistance summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 28px; cursor: pointer; list-style: none; color: var(--muted); font-size: 1rem; }
.booking-assistance summary::-webkit-details-marker { display: none; }
.booking-assistance summary b { display: block; color: var(--berry); font-size: 1.12rem; }
.booking-expand { color: var(--berry); font-size: 1.7rem; transition: transform 0.2s; }
.booking-assistance[open] .booking-expand { transform: rotate(45deg); }
.booking-assistance-body { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; padding: 8px 28px 28px; }
.booking-assistance-copy { color: var(--muted); font-size: 1.05rem; }
.booking-assistance-copy h3 { color: var(--berry-deep); }
.booking-assistance .lead-form { padding: 0; background: transparent; box-shadow: none; border-radius: 0; }
.booking-direct { text-align: center; max-width: none; margin: 24px 0 0; font-size: 1rem; }
.booking-direct a { font-weight: 700; }
.booking :focus-visible { outline: 3px solid var(--berry); outline-offset: 4px; }
.lead-form label span small { font-weight: 400; color: var(--muted); }
.lead-form button:disabled, .booking-form button:disabled { opacity: 0.65; cursor: wait; }
@media (max-width: 760px) {
  .booking-intro { grid-template-columns: 1fr; gap: 20px; }
  .booking-person img { width: 60px; height: 60px; }
  .booking-assistance-body { grid-template-columns: 1fr; gap: 16px; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-message-field { grid-column: auto; }
}
@media (max-width: 480px) {
  .story-grid blockquote:first-child { padding: 26px; font-size: 1.05rem; }
  .booking .container { width: calc(100% - 24px); }
  .booking { padding: 56px 0; }
  .booking-card { border-radius: 20px; }
  .booking-card-head { padding: 22px 18px; }
  .booking-calendar { padding: 24px 18px 28px; }
  .booking-steps { gap: 10px; flex-direction: column; font-size: 1rem; }
  .booking-timezone { align-items: stretch; }
  .booking-types { grid-template-columns: 1fr; }
  .booking-timezone label { width: 100%; }
  .booking-timezone select { width: 100%; min-width: 0; }
  .booking-form { padding: 20px 16px; margin-left: -4px; margin-right: -4px; }
  .booking-times { grid-template-columns: repeat(3, 1fr); }
  .booking-success-actions, .booking-error-actions { width: 100%; }
  .booking-success-actions .btn, .booking-error-actions .btn { width: 100%; }
  .booking-help { padding: 16px 18px; }
  .booking-assistance summary { padding: 20px 18px; }
  .booking-assistance-body { padding: 0 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.contact { background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.links { list-style: none; padding: 0; }
.links a { font-weight: 700; }
.lead-form {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}
.lead-form label span { display: block; font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 1.05rem;
  color: var(--ink);
  background: #fff;
}
.lead-form .check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; color: var(--muted); }
.lead-form .check input { width: auto; margin-top: 4px; }
.form-status { min-height: 1.3em; margin: 0; font-weight: 600; }
.form-status.ok { color: var(--olive); }
.form-status.err { color: #9b3b2e; }

.footer { background: var(--berry-deep); color: #f4e6dc; padding: 40px 0; font-size: 1.02rem; }
.footer-inner { display: grid; gap: 10px; }
.footer-logo { color: #fff; }
.footer p { max-width: none; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer a { color: #f0d5e0; text-decoration: underline; }

.float-tg {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #2aa0d1;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 30;
  box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

.legal { padding: 120px 0 80px; }
.legal p { color: var(--muted); font-size: 1.08rem; }

.reveal { opacity: 0; transform: translateY(16px); animation: rise 0.75s ease forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 960px) {
  body { font-size: 18px; }
  .hero h1 { max-width: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "card"
      "copy";
    row-gap: 16px;
  }
  .hero-card {
    max-width: 380px;
    width: 100%;
    margin-inline: auto;
  }
  .about-grid, .forwhom-grid, .offer-grid, .bot-grid, .bot-duo, .story-grid, .faq-layout, .contact-grid, .trio {
    grid-template-columns: 1fr;
  }
  .nav {
    position: fixed;
    inset: var(--header) 0 auto;
    background: var(--cream);
    flex-direction: column;
    height: auto;
    padding: 18px;
    display: none;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .burger { display: block; }
  .offer.featured { transform: none; }
}
