/* ===========================================================
   The Land Shift — with Katie Desmarais
   Brand palette: Pine / Terracotta / Blush / Sand
   =========================================================== */

:root {
  --pine: #3D6B52;
  --pine-dark: #2C4F3D;
  --terracotta: #C2674A;
  --blush: #E68A60;
  --sand: #FAF0E6;
  --sand-deep: #F3E2D4;
  --cream: #FFFBF5;
  --ink: #2B3A30;
  --muted: #6F7E72;
  --line: rgba(43, 58, 48, 0.12);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --radius: 18px;
  --shadow: 0 18px 40px -22px rgba(43, 58, 48, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(43, 58, 48, 0.5);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.stack-sm > * + * { margin-top: 10px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* anti-spam honeypot — hidden off-screen, still present for bots */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* keyboard-only focus ring (mouse clicks stay clean) */
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; border-radius: 6px; }

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--pine-dark);
}
.h2--light { color: var(--cream); }

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--terracotta);
}
.eyebrow--light { color: var(--blush); }

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  margin-top: 18px;
}
.lead--tight { margin-top: 12px; }
.lead--light { color: rgba(255, 251, 245, 0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--pine); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--pine-dark); }
.btn--terracotta { background: var(--terracotta); color: var(--cream); }
.btn--terracotta:hover { background: #a9573c; }
.btn--ghost { background: transparent; color: var(--pine-dark); border-color: var(--pine); }
.btn--ghost:hover { background: var(--pine); color: var(--cream); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 245, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.nav__brand { display: flex; align-items: center; gap: 10px; color: var(--pine-dark); }
.nav__brand:hover { text-decoration: none; }
.nav__logo { width: 40px; height: 40px; border-radius: 50%; }
.nav__brandtext { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  color: var(--ink); font-weight: 600; font-size: 0.95rem;
  position: relative;
}
.nav__links a:hover { color: var(--terracotta); text-decoration: none; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--terracotta); transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.nav__toggle span { width: 24px; height: 2.5px; background: var(--pine-dark); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  padding: 56px 0 68px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__banner {
  width: 100%; max-width: 860px; margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__subhead {
  max-width: 600px; margin: 30px auto 0;
  font-size: 1.22rem; color: var(--ink);
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hero__trust {
  margin-top: 26px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--muted); font-size: 0.9rem;
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: 1; }
.hero__blob--1 { width: 320px; height: 320px; background: var(--blush); top: -120px; left: -90px; }
.hero__blob--2 { width: 260px; height: 260px; background: var(--pine); bottom: -120px; right: -80px; opacity: .25; }

/* ---------- Bands ---------- */
.band { padding: 84px 0; }
.band--sand { background: var(--sand); }
.band--pine { background: var(--pine); color: var(--cream); }
.band--tight { padding: 46px 0; }

/* Two same-color sand bands stack here (Who it's for → Client story);
   collapse the doubled padding so the gap doesn't read as an empty void */
#fit { padding-bottom: 44px; }
#stories { padding-top: 44px; }

/* ---------- Proof / credibility ---------- */
.proof { background: var(--cream); border-bottom: 1px solid var(--line); }
.proof__stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 18px 48px; text-align: center;
}
.proof__stat { display: flex; flex-direction: column; max-width: 220px; }
.proof__stat + .proof__stat { border-left: 1px solid var(--line); padding-left: 48px; }
.proof__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--terracotta); line-height: 1.1;
}
.proof__label { font-size: 0.92rem; color: var(--muted); margin-top: 4px; }
.proof__seen {
  text-align: center; margin-top: 28px; color: var(--muted);
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.proof__seen span { color: var(--pine-dark); font-weight: 700; }
.proof__disclaimer {
  text-align: center; max-width: 680px; margin: 14px auto 0;
  font-size: 0.74rem; line-height: 1.5; color: var(--muted);
}
.proof__disclaimer a { color: var(--muted); text-decoration: underline; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  background: var(--sand-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--line);
}
.about__photo-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about__photo-note {
  display: none; text-align: center;
  font-size: 0.82rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.5;
}
/* Shown only if katie.jpg hasn't been added yet */
.about__photo--empty { background: var(--sand-deep); }
.about__photo--empty::before {
  content: ""; width: 38%; aspect-ratio: 1; opacity: .55;
  background: url("assets/tls-logo.png") center/contain no-repeat;
}
.about__photo--empty .about__photo-note { display: block; }
.about__badge {
  position: absolute; bottom: -22px; right: -10px;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--terracotta); color: var(--cream);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: 0.98rem; line-height: 1.2;
  box-shadow: var(--shadow); border: 3px solid var(--cream);
}
.about__text > * + * { margin-top: 18px; }
.about__text .btn { margin-top: 26px; }

/* ---------- Credentials chips (Katie's background) ---------- */
.creds { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.creds li {
  background: var(--sand); border: 1px solid var(--line); color: var(--pine-dark);
  border-radius: 999px; padding: 7px 15px; font-size: 0.84rem; font-weight: 600;
}

/* ---------- Additional support (Brian) ---------- */
/* Sits directly above the same-colored "As seen on" band — drop the bottom
   padding so the two sand sections don't stack into one oversized gap. */
#support { padding-bottom: 0; }
.support {
  max-width: 760px; margin: 44px auto 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 40px 38px;
}
.support__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--pine-dark); }
.support__role { color: var(--terracotta); font-weight: 700; font-size: 0.92rem; margin-top: 4px; }
.support__bio { margin-top: 18px; color: var(--ink); }
.support__creds { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.support__creds li { position: relative; padding-left: 30px; font-weight: 600; color: var(--pine-dark); font-size: 0.95rem; }
.support__creds li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  display: grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--pine); color: #fff; font-size: 12px; font-weight: 700;
}

/* ---------- Feature (text + photo) ---------- */
.feature { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.feature__text > * + * { margin-top: 18px; }
.feature__media { position: relative; margin: 0; }
.feature__media img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.feature__media figcaption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(43, 58, 48, 0.78); color: var(--cream);
  font-family: var(--font-display); font-style: italic; font-size: 0.95rem;
  padding: 8px 16px; border-radius: 999px;
}

/* ---------- As seen on ---------- */
.seenon__list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 16px 40px; margin-top: 28px;
}
.seenon__list a {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: var(--pine-dark); text-decoration: none;
}
.seenon__list a:hover { color: var(--terracotta); text-decoration: underline; }

/* ---------- Real land / deals ---------- */
.deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.deal {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--cream); border: 1px solid var(--line);
}
.deal img { width: 100%; height: 240px; object-fit: cover; display: block; }
.deal figcaption {
  padding: 16px 18px; font-family: var(--font-display); font-style: italic;
  color: var(--pine-dark); font-size: 1rem;
}

/* ---------- Lifestyle gallery ---------- */
.gallery {
  margin-top: 50px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery__item {
  margin: 0; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 4; /* portrait tiles match the portrait photos → no cropping */
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.pillar {
  background: rgba(255, 251, 245, 0.08);
  border: 1px solid rgba(255, 251, 245, 0.18);
  border-radius: var(--radius); padding: 34px 28px; text-align: center;
}
.pillar__icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  display: grid; place-items: center;
  background: rgba(255, 251, 245, 0.12); color: var(--blush);
  border-radius: 50%;
}
.pillar__icon svg { width: 34px; height: 34px; }
.pillar__title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin-bottom: 10px; color: var(--cream); }
.pillar p { color: rgba(255, 251, 245, 0.82); font-size: 1rem; }

/* ---------- Offers ---------- */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 50px; }
.offer {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 34px;
  box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column;
}
.offer--feature { border: 2px solid var(--pine); }
.offer__tag {
  align-self: flex-start;
  background: var(--sand-deep); color: var(--pine-dark);
  font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.offer__tag--alt { background: var(--terracotta); color: var(--cream); }
.offer__title { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--pine-dark); margin-bottom: 12px; }
.offer__desc { color: var(--muted); }
.offer__list { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; }
.offer__list li { position: relative; padding-left: 30px; }
.offer__list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px;
  background: var(--pine); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.offer__price {
  margin-top: auto; padding-top: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.7rem;
  color: var(--pine-dark);
}
.offer__price span { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: var(--muted); }
.offer__scarcity {
  display: inline-block; margin-top: 16px;
  background: var(--cream); border: 1px solid var(--terracotta); color: var(--pine-dark);
  border-radius: 999px; padding: 9px 22px; font-weight: 600; font-size: 0.95rem;
}
.offer__scarcity strong { color: var(--terracotta); }
.offer__cta { margin-top: 16px; align-self: flex-start; }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; counter-reset: step; }
.step { padding: 30px 26px; border-radius: var(--radius); background: var(--sand); border: 1px solid var(--line); }
.step__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--terracotta); font-weight: 500; display: block; margin-bottom: 8px; }
.step__title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--pine-dark); margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.quote {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.quote blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem;
  line-height: 1.5; color: var(--pine-dark);
}
.quote figcaption { margin-top: 18px; font-weight: 700; color: var(--terracotta); font-size: 0.92rem; }

/* ---------- Testimonials (two side by side) ---------- */
.testimonials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 46px; align-items: start;
}
.testimonial {
  max-width: 780px; margin: 46px auto 0;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 42px 46px;
}
.testimonials .testimonial { max-width: none; margin: 0; padding: 38px 38px; }
.testimonials .testimonial__lead { font-size: 1.14rem; }
.testimonial__quote { margin: 0; }
.testimonial__quote p { color: var(--ink); }
.testimonial__quote p + p { margin-top: 16px; }
.testimonial__lead {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.3rem; line-height: 1.5; color: var(--pine-dark);
}
.testimonial__cite {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
}
.testimonial__avatar {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  background: var(--terracotta); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
}
.testimonial__who { display: flex; flex-direction: column; }
.testimonial__name { font-weight: 700; color: var(--pine-dark); }
.testimonial__role { font-size: 0.9rem; color: var(--muted); }

@media (max-width: 560px) {
  .testimonial { padding: 30px 24px; }
}

/* ---------- Who it's for ---------- */
.fit { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; margin-top: 48px; align-items: start; }
.fit__card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow-sm);
}
.fit__card--no { background: transparent; box-shadow: none; border-style: dashed; }
.fit__title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--pine-dark); margin-bottom: 20px; }
.fit__list { list-style: none; display: grid; gap: 14px; }
.fit__list li { position: relative; padding-left: 36px; line-height: 1.5; }
.fit__list li::before {
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.74rem; font-weight: 800; line-height: 1;
}
.fit__list--yes li::before { content: "✓"; background: var(--pine); color: var(--cream); }
.fit__list--no li { color: var(--muted); }
.fit__list--no li::before { content: "✕"; background: rgba(194, 103, 74, 0.16); color: var(--terracotta); }
.fit__note { margin-top: 18px; font-family: var(--font-display); font-style: italic; color: var(--muted); }
.fit__cta { margin-top: 38px; font-weight: 600; font-size: 1.08rem; color: var(--pine-dark); }
.fit__cta a { font-weight: 700; }

/* ---------- Waitlist ---------- */
.waitlist__form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.waitlist__form input {
  flex: 1 1 320px; max-width: 380px; padding: 15px 20px; border-radius: 999px;
  border: 2px solid transparent; font-size: 1rem; font-family: var(--font-body);
}
.waitlist__form input:focus { outline: none; border-color: var(--blush); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__intro > * + * { margin-top: 18px; }
.contact__points { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.contact__points li { position: relative; padding-left: 28px; font-weight: 600; }
.contact__points li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px;
  background: var(--terracotta); border-radius: 50%;
}
.contact__or { font-size: 0.95rem; color: var(--muted); }
.contact__form {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 7px; color: var(--pine-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--cream);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px rgba(61, 107, 82, 0.12);
}
.form__status { margin-top: 14px; font-weight: 600; font-size: 0.95rem; min-height: 1.2em; }
.form__status.is-ok { color: var(--pine); }
.form__status.is-error { color: var(--terracotta); }
.waitlist .form__status.is-ok { color: var(--blush); }

/* ---------- Footer ---------- */
.footer { background: var(--pine-dark); color: rgba(255, 251, 245, 0.85); }
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 30px; align-items: center;
  justify-content: space-between; padding-top: 50px; padding-bottom: 36px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { width: 52px; height: 52px; border-radius: 50%; }
.footer__name { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.footer__tag { font-style: italic; font-family: var(--font-display); font-size: 0.98rem; }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a { color: rgba(255, 251, 245, 0.85); font-weight: 600; }
.footer__nav a:hover { color: var(--blush); text-decoration: none; }
.footer__contact { text-align: left; flex-basis: 100%; }
.footer__email { color: var(--blush); font-weight: 700; display: inline-block; }
.footer__social { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; margin-top: 16px; }
.footer__social a {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 251, 245, 0.92); font-weight: 600; font-size: 0.92rem;
  background: rgba(255, 251, 245, 0.10);
  border: 1px solid rgba(255, 251, 245, 0.22);
  border-radius: 999px; padding: 8px 16px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer__social a:hover {
  color: var(--pine-dark); background: var(--blush); border-color: var(--blush);
  text-decoration: none; transform: translateY(-1px);
}
.footer__social svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer__legal { border-top: 1px solid rgba(255, 251, 245, 0.14); padding: 28px 0; }
.footer__legal .container { max-width: 920px; }
.footer__legal-title { font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--blush); margin-bottom: 12px; }
.footer__legal p { font-size: 0.78rem; line-height: 1.65; color: rgba(255, 251, 245, 0.58); }
.footer__legal p + p { margin-top: 12px; }
.footer__legal strong { color: rgba(255, 251, 245, 0.85); }

.footer__bar { border-top: 1px solid rgba(255,251,245,0.14); padding: 20px 0; text-align: center; font-size: 0.86rem; }
.footer__bar p { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 900px) {
  .pillars, .offers, .steps, .quotes { grid-template-columns: 1fr; }
  .about, .contact, .feature, .fit { grid-template-columns: 1fr; gap: 40px; }
  .testimonials { grid-template-columns: 1fr; gap: 24px; max-width: 700px; margin-left: auto; margin-right: auto; }
  .feature__media { order: -1; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .deals { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.is-open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--cream);
    padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm); margin-left: 0;
  }
}

@media (max-width: 760px) {
  .proof__stat + .proof__stat { border-left: 0; padding-left: 0; }
  .proof__stats { gap: 22px; }
  .footer__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__contact { text-align: left; }
  .footer__social { justify-content: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .band { padding: 60px 0; }
  .hero { padding: 48px 0 64px; }
  .btn--lg { width: 100%; }
  .hero__actions { flex-direction: column; }
  .offer, .contact__form { padding: 28px 22px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
