/* ============================================================
   The Shepherd's Code — K9 Training
   Heraldic / tactical luxury. Off-black + forged gold + steel.
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --bg-2: #0f0f11;
  --panel: #141417;
  --panel-2: #18181c;
  --line: #2a2820;
  --gold: #c8a253;
  --gold-bright: #e7c873;
  --gold-deep: #9a7a2f;
  --steel: #b9bcc2;
  --steel-dim: #82868d;
  --cream: #ece5d6;
  --muted: #9c968a;
  --ink-dim: #6f6a60;
  --danger: #d98a6a;
  --ok: #8db07a;
  --maxw: 1140px;
  --r: 4px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.8);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmospheric backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 50% -8%, rgba(200, 162, 83, 0.14), transparent 60%),
    radial-gradient(900px 700px at 100% 100%, rgba(154, 122, 47, 0.08), transparent 55%),
    linear-gradient(180deg, #0b0b0c 0%, #08080a 100%);
}
/* Fine grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
}

.gold-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-deep);
}
.gold-rule::before,
.gold-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}
.gold-rule svg { width: 18px; height: 18px; flex: none; }

.gold-text {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--r);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #1a1407;
  box-shadow: 0 10px 28px -12px rgba(200, 162, 83, 0.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(200, 162, 83, 0.85); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(8, 8, 10, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 44px; width: auto; }
.nav-brand b {
  font-family: "Cinzel", serif;
  font-size: 0.96rem;
  letter-spacing: 0.12em;
  color: var(--cream);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.16s ease;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links .btn { padding: 9px 18px; }
.nav-toggle { display: none; }

/* ---------- Sections ---------- */
section { position: relative; padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-head p { color: var(--muted); margin: 16px 0 0; font-size: 1.06rem; }

/* corner-bracket framed band */
.framed {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Hero ---------- */
.hero { padding: 70px 0 90px; text-align: center; }
.hero-crest {
  width: clamp(260px, 34vw, 420px);
  margin: 0 auto 26px;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.02;
  margin: 8px 0 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s both;
}
.hero h1 .line2 { display: block; }
.hero .lede {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--steel);
  font-size: 1.18rem;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both;
}
.hero .hero-sub {
  margin-top: 14px;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  color: var(--muted);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.28s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.36s both;
}
.hero-tags {
  margin-top: 46px;
  display: flex;
  gap: 10px 30px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  animation: rise 0.9s ease 0.46s both;
}
.hero-tags span { display: inline-flex; align-items: center; gap: 8px; }
.hero-tags svg { width: 14px; height: 14px; color: var(--gold); }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---------- Differentiators ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.diff-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
}
.diff-card .ic {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.diff-card .ic svg { width: 20px; height: 20px; }
.diff-card h3 { font-size: 1.05rem; color: var(--cream); }
.diff-card p { margin: 8px 0 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 0 18px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 39px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}
.step .disc {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(200,162,83,0.16), var(--panel));
  position: relative;
  z-index: 1;
}
.step .disc svg { width: 30px; height: 30px; color: var(--gold-bright); }
.step .num {
  font-family: "Barlow Semi Condensed", sans-serif;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--gold-deep);
}
.step h3 { font-size: 1.2rem; margin: 4px 0 8px; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Programs ---------- */
.pathway {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
}
.pathway b { color: var(--gold-bright); font-weight: 600; }
.pathway .arrow { color: var(--gold-deep); }
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.prog-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  border-top: 2px solid var(--gold-deep);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.prog-card:hover { transform: translateY(-4px); border-top-color: var(--gold-bright); }
.prog-card .pnum {
  font-family: "Cinzel", serif;
  color: var(--gold-deep);
  font-size: 1.4rem;
}
.prog-card h3 { font-size: 1.25rem; margin: 6px 0 10px; color: var(--cream); }
.prog-card p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.prog-card .focus {
  margin-top: 14px;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--steel-dim);
}

/* ---------- Goals + requirements split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}
.ledger {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 30px;
}
.ledger h3 { font-size: 1.15rem; margin-bottom: 18px; }
.checks { list-style: none; padding: 0; margin: 0; }
.checks li {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--cream);
  font-size: 0.98rem;
}
.checks li:last-child { border-bottom: none; }
.checks svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 4px; }
.req-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin: 4px 6px 0 0;
}
.req-tag.required { color: var(--gold-bright); border-color: var(--gold-deep); }
.req-tag.rec { color: var(--steel-dim); }

/* ---------- Memberships ---------- */
.mem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.mem-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 32px;
  box-shadow: var(--shadow);
}
.mem-card.featured { border-color: var(--gold-deep); }
.mem-card.featured::before {
  content: "Alumni Exclusive";
  position: absolute;
  top: -12px;
  right: 26px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #1a1407;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.mem-card h3 { font-size: 1.5rem; }
.mem-card .for { color: var(--muted); font-size: 0.92rem; margin: 6px 0 0; min-height: 2.6em; }
.mem-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.mem-price .amt {
  font-family: "Cinzel", serif;
  font-size: 2.9rem;
  font-weight: 700;
}
.mem-price .per {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-size: 0.86rem;
}
.mem-card h4 {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 22px 0 12px;
}
.mem-list { list-style: none; padding: 0; margin: 0; }
.mem-list li {
  display: flex;
  gap: 11px;
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--cream);
}
.mem-list svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 4px; }
.mem-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}
.mem-focus span {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--steel-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
}
.mem-best {
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(200, 162, 83, 0.06);
  border-left: 2px solid var(--gold-deep);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.mem-best b { color: var(--gold); font-family: "Barlow Semi Condensed", sans-serif; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.mem-note {
  text-align: center;
  color: var(--muted);
  margin-top: 30px;
  font-size: 0.96rem;
}

/* ---------- Consultation / rack card ---------- */
.consult-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.rack {
  position: relative;
  border: 1px solid var(--gold-deep);
  border-radius: 8px;
  padding: 14px;
  background: #060606;
  box-shadow: var(--shadow);
}
.rack img { border-radius: 4px; }
.rack-link {
  display: block;
  position: relative;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.rack-link img {
  display: block;
  width: 100%;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.rack-link:hover img,
.rack-link:focus-visible img {
  transform: scale(1.012);
  filter: brightness(1.07);
}
.rack-link:focus-visible {
  box-shadow: 0 0 0 3px var(--gold-bright);
}
.rack-cta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #1c1505;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.rack-cta svg { width: 15px; height: 15px; }
.consult-steps em { color: var(--gold-bright); font-style: normal; }
.rack .scan-hint {
  text-align: center;
  margin-top: 12px;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold);
}
.consult-copy h3 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 8px; }
.consult-steps { list-style: none; padding: 0; margin: 22px 0 0; counter-reset: c; }
.consult-steps li {
  counter-increment: c;
  display: flex;
  gap: 16px;
  padding: 12px 0;
  align-items: flex-start;
}
.consult-steps li::before {
  content: counter(c);
  font-family: "Cinzel", serif;
  color: var(--gold-bright);
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex: none;
  font-size: 0.95rem;
}
.consult-steps b { color: var(--cream); display: block; }
.consult-steps span { color: var(--muted); font-size: 0.95rem; }

/* ---------- Forms ---------- */
.card-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 30px;
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 7px;
}
input, textarea, select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 83, 0.16);
}
textarea { resize: vertical; min-height: 110px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 0.86rem; color: var(--ink-dim); margin-top: 4px; }
.form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 0.95rem;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(141, 176, 122, 0.12); border: 1px solid #44552f; color: #b9d3a3; }
.form-msg.err { background: rgba(217, 138, 106, 0.12); border: 1px solid #6b3d2c; color: #e3a98f; }

/* ---------- Reviews ---------- */
.reviews-layout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 36px; align-items: start; }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
}
.review .top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; }
.review .who b { font-family: "Cinzel", serif; font-size: 1.02rem; color: var(--cream); }
.review .who span { color: var(--ink-dim); font-size: 0.85rem; display: block; }
.stars { display: inline-flex; gap: 2px; color: var(--gold-bright); }
.stars svg { width: 16px; height: 16px; }
.stars .off { color: #3a3730; }
.review p { margin: 0; color: var(--cream); font-size: 0.98rem; }
.review-empty, .review-loading {
  border: 1px dashed var(--line);
  border-radius: var(--r);
  padding: 36px 24px;
  text-align: center;
  color: var(--muted);
}
.skeleton { height: 96px; border-radius: var(--r); background: linear-gradient(90deg, var(--panel) 25%, var(--panel-2) 37%, var(--panel) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border: 1px solid var(--line); }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* star rating input */
.star-input { display: flex; gap: 4px; flex-direction: row-reverse; justify-content: flex-end; }
.star-input input { display: none; }
.star-input label {
  margin: 0; cursor: pointer; color: #3a3730;
  transition: color 0.12s ease; padding: 0;
}
.star-input label svg { width: 26px; height: 26px; }
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label { color: var(--gold-bright); }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact-card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 48px 40px;
}
.contact-card .ic-shield { width: 54px; height: 54px; color: var(--gold-bright); margin: 0 auto 18px; }
.contact-card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.contact-card p { color: var(--muted); margin: 12px auto 26px; max-width: 460px; }
.email-link {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  word-break: break-all;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 40px;
  background: #070708;
}
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 46px; }
.footer-brand b { font-family: "Cinzel", serif; letter-spacing: 0.1em; }
.footer-brand span { display: block; color: var(--muted); font-size: 0.82rem; font-family: "Barlow Semi Condensed", sans-serif; text-transform: uppercase; letter-spacing: 0.16em; }
.footer-tag {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--gold);
  text-align: right;
}
.footer-tag span { display: block; color: var(--ink-dim); letter-spacing: 0.1em; margin-top: 8px; font-size: 0.76rem; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8,8,10,0.98);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 20px;
  }
  .nav-links.open a { padding: 12px 0; width: 100%; }
  .nav-toggle { display: inline-flex; background: none; border: 1px solid var(--line); color: var(--cream); width: 42px; height: 38px; border-radius: var(--r); align-items: center; justify-content: center; cursor: pointer; }
  .nav-toggle svg { width: 20px; height: 20px; }
  .split, .consult-grid, .reviews-layout, .mem-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .step:nth-child(2)::after, .step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  section { padding: 70px 0; }
  .field-row { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-tag { text-align: center; }
}
