/* ============================================================
   Your Feet — wellness nutrition
   Design system & global styles
   ============================================================ */

:root {
  /* Palette */
  --green-900: #14271a;
  --green-800: #1f3d2b;
  --green-700: #2f5d3f;
  --green-600: #3d7551;
  --green-300: #9cc4a6;
  --green-100: #e4f0e6;

  --cream: #f8f4ea;
  --cream-2: #f2ebda;
  --paper: #fffdf8;

  --coral: #e3744e;
  --coral-dark: #c95c39;
  --honey: #f0b54b;
  --berry: #9c4f6b;
  --sky: #6fa8a3;

  --ink: #20271f;
  --muted: #5d6a5c;
  --line: rgba(31, 61, 43, 0.12);

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

  /* Layout */
  --maxw: 1200px;
  --radius-s: 12px;
  --radius: 22px;
  --radius-l: 36px;
  --shadow-s: 0 6px 18px rgba(20, 39, 26, 0.08);
  --shadow: 0 18px 50px rgba(20, 39, 26, 0.13);
  --shadow-l: 0 30px 80px rgba(20, 39, 26, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 450;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--coral-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--green-900);
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: clamp(64px, 9vw, 130px) 0;
  position: relative;
}

.section--tight {
  padding: clamp(48px, 6vw, 80px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
}

.center {
  text-align: center;
}
.center .lead,
.center .eyebrow {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green-800);
  --fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  box-shadow: var(--shadow-s);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--fg);
}

.btn--coral {
  --bg: var(--coral);
}
.btn--coral:hover {
  --bg: var(--coral-dark);
}

.btn--ghost {
  --bg: transparent;
  --fg: var(--green-800);
  border-color: var(--green-800);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--green-800);
  --fg: var(--cream);
}

.btn--lg {
  padding: 18px 38px;
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Ad disclosure bar ---------- */
.ad-bar {
  background: var(--green-900);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 12px;
  font-weight: 700;
}

.ad-bar span {
  opacity: 0.85;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 234, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

.brand:hover {
  color: var(--green-900);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--honey), var(--coral) 70%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-body);
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--green-100);
  color: var(--green-800);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle span::before {
  transform: translate(-50%, -7px);
}
.nav-toggle span::after {
  transform: translate(-50%, 5px);
}
body.menu-open .nav-toggle span {
  background: transparent;
}
body.menu-open .nav-toggle span::before {
  transform: translate(-50%, 0) rotate(45deg);
}
body.menu-open .nav-toggle span::after {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.hero h1 .accent {
  color: var(--coral);
  font-style: italic;
}

.hero .lead {
  margin-bottom: 30px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  box-shadow: var(--shadow-s);
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  align-self: center;
}

.hero-blob {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: clamp(28px, 4vw, 44px);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  background: var(--green-100);
}

.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.hero-badge {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.3;
  z-index: 3;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--green-800);
}

.hero-badge--tl {
  top: -12px;
  left: -12px;
}
.hero-badge--br {
  bottom: -12px;
  right: -12px;
}

.badge-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  font-size: 1.3rem;
}

/* decorative background blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.bg-blob--1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--green-100), transparent 70%);
  top: -120px;
  right: -80px;
}
.bg-blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 181, 75, 0.35), transparent 70%);
  bottom: -60px;
  left: -100px;
}

/* ---------- Marquee / logos strip ---------- */
.strip {
  background: var(--green-800);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: scrollx 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1.2rem;
  opacity: 0.92;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.strip-track span::after {
  content: "✦";
  color: var(--honey);
}

@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Cards & grids ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-s);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: var(--green-100);
  margin-bottom: 18px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}
.section-head.center {
  margin-inline: auto;
}

/* ---------- Plan cards ---------- */
.plan-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-s);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.plan-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--green-100);
}
.plan-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.plan-card:hover .plan-card__media img {
  transform: scale(1.06);
}

.plan-card__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 13px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.plan-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-card__body h3 {
  margin-bottom: 8px;
}

.plan-card__body p {
  color: var(--muted);
  font-size: 0.96rem;
  flex: 1;
}

.plan-card__link {
  margin-top: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.plan-card__link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.plan-card:hover .plan-card__link::after {
  transform: translateX(5px);
}

/* ---------- Filter bar ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.filter {
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--green-800);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}
.filter:hover {
  border-color: var(--green-600);
}
.filter.is-active {
  background: var(--green-800);
  color: var(--cream);
  border-color: var(--green-800);
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split--rev .split__media {
  order: 2;
}

.split__media {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4.2;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  text-align: center;
  padding: 26px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--coral);
  line-height: 1;
}
.stat span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 18px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.2rem;
}
.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Quote / testimonial ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-s);
}
.quote__stars {
  color: var(--honey);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--green-900);
  line-height: 1.45;
}
.quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--green-700);
}
.quote__author span {
  font-size: 0.88rem;
  color: var(--muted);
}
.quote__author strong {
  display: block;
  color: var(--ink);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--cream);
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: var(--cream);
}
.cta-band .lead {
  color: rgba(248, 244, 234, 0.85);
  margin-inline: auto;
  margin-bottom: 28px;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 181, 75, 0.35), transparent 70%);
  top: -120px;
  right: -60px;
}

/* ---------- FAQ / Accordion ---------- */
.accordion {
  max-width: 820px;
  margin-inline: auto;
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--green-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.acc-q::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--coral);
  transition: transform 0.3s var(--ease);
}
.acc-item.open .acc-q::after {
  transform: rotate(45deg);
}
.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.acc-a p {
  padding: 0 4px 22px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Recipe cards ---------- */
.recipe-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.recipe-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.recipe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.recipe-card:hover .recipe-card__media img {
  transform: scale(1.06);
}
.recipe-card__body {
  padding: 24px 26px 28px;
}
.recipe-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.recipe-card__body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Forms ---------- */
.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 7px;
  color: var(--green-800);
}
.field .req {
  color: var(--coral);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(61, 117, 81, 0.14);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--green-700);
  flex-shrink: 0;
}

.form-aside {
  position: sticky;
  top: 100px;
}
.form-aside .card + .card {
  margin-top: 18px;
}
.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aside-list li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.aside-list li:last-child {
  border-bottom: none;
}
.aside-list .ico {
  color: var(--coral);
  font-weight: 800;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .lead {
  margin-inline: auto;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a {
  font-weight: 600;
}

/* ---------- Legal / prose ---------- */
.prose {
  max-width: 800px;
  margin-inline: auto;
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 2em;
}
.prose h3 {
  font-size: 1.18rem;
  margin-top: 1.6em;
}
.prose p,
.prose li {
  color: #3c463a;
}
.prose .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2em;
}
.legal-data {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 1.5em 0;
}
.legal-data dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
}
.legal-data dt {
  font-weight: 700;
  color: var(--green-800);
}
.legal-data dd {
  margin: 0;
}

/* ---------- Disclaimer note ---------- */
.note {
  background: var(--green-100);
  border-left: 4px solid var(--green-600);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--green-900);
  margin: 1.5em 0;
}

/* ---------- References ---------- */
.refs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.refs li {
  font-size: 0.86rem;
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
  color: rgba(248, 244, 234, 0.78);
}
.refs li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--honey);
}
.refs a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.refs a:hover {
  color: var(--honey);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(56px, 7vw, 90px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 18px;
}
.footer-brand .brand {
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-brand p {
  color: rgba(248, 244, 234, 0.7);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: rgba(248, 244, 234, 0.82);
  font-size: 0.94rem;
}
.footer-links a:hover {
  color: var(--honey);
}
.footer-refs h4 {
  margin-bottom: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(248, 244, 234, 0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(248, 244, 234, 0.6);
}
.footer-bottom a {
  color: rgba(248, 244, 234, 0.72);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(248, 244, 234, 0.75);
}

/* ---------- Thank you ---------- */
.ty {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
}
.ty__circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--green-100);
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  font-size: 3rem;
  animation: pop 0.6s var(--ease) both;
}
@keyframes pop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
    order: -1;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .quotes {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split--rev .split__media {
    order: 0;
  }
  .form-wrap {
    grid-template-columns: 1fr;
  }
  .form-aside {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open a {
    padding: 12px 14px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .hero-badge--tl {
    top: 8px;
    left: 8px;
  }
  .hero-badge--br {
    bottom: 8px;
    right: 8px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 420px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
