/* ==========================================================================
   Field of Healing — fieldofhealing.com.au
   Palette pulled from Annabel's own paddock photo: eucalypt green, chambray
   blue (her shirt), bay chestnut (the horse), and a single gumboot green pop.
   ========================================================================== */

:root {
  --ink:          #1E2B24;
  --ink-soft:     #4A5A50;
  --paddock:      #2E5A44;
  --paddock-deep: #1C3A2C;
  --chambray:     #5E89B0;
  --teal:         #46CDCF;
  --teal-deep:    #17878A;
  --teal-wash:    #E8F7F7;
  --teal-wash-2:  #D6EFF0;
  --teal-ink:     #0F5F62;
  --sky:          #DDE7EC;
  --bay:          #9A6640;
  --boot:         #7CB342;
  --paper:        #F1F0E9;
  --paper-warm:   #E7E6DC;
  --white:        #FFFFFF;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --brand:   "Patrick Hand SC", "Comic Sans MS", cursive;
  --body:    "Karla", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1140px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 3px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--paddock); text-underline-offset: 3px; }
a:hover { color: var(--bay); }

:focus-visible {
  outline: 3px solid var(--chambray);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); letter-spacing: -0.005em; }

p { margin: 0 0 1.15em; max-width: 62ch; }

/* ---------- shared bits ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bay);
  margin: 0 0 1rem;
}

.eyebrow--light { color: #C9BFA8; }

.lede { font-size: 1.2rem; color: var(--ink-soft); }

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--paddock);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Post-and-rail divider — two hairlines with short posts between them,
   borrowed from the fencing at the equestrian centre. */
.rail {
  height: 0;
  border-top: 1px solid rgba(30, 43, 36, 0.16);
  margin: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius);
  white-space: nowrap;
  border: 1.5px solid var(--paddock);
  background: var(--paddock);
  color: var(--white);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--paddock-deep); border-color: var(--paddock-deep); color: var(--white); }

.btn--ghost { background: transparent; color: var(--paddock); }
.btn--ghost:hover { background: var(--paddock); color: var(--white); }

.btn--light { background: var(--white); border-color: var(--white); color: var(--paddock-deep); }
.btn--light:hover { background: var(--paper-warm); border-color: var(--paper-warm); color: var(--paddock-deep); }

.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid rgba(30, 43, 36, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand__mark { width: 52px; height: 52px; flex: none; }
.brand__text { display: block; }
.brand__name {
  font-family: var(--brand);
  font-style: normal;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: block;
}
.brand__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 0.4rem;
}

.nav-toggle {
  display: none;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--paddock);
  color: var(--paddock);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
}
.nav__list a:hover { color: var(--paddock); border-bottom-color: var(--teal); }
.nav__list a[aria-current="page"] { border-bottom-color: var(--paddock); }

.site-footer .brand__mark { width: 46px; height: 46px; }

/* ---------- accreditation marks ---------- */
.accred {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(30, 43, 36, 0.14);
}
.accred img { height: 52px; width: auto; background: var(--white); padding: 0.35rem 0.5rem; border-radius: 2px; }
.accred img[src*="logo-ndis"] { height: 60px; background: transparent; padding: 0; }
.accred p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 30ch;
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  background: linear-gradient(to bottom, var(--sky) 0%, #EAEDE6 100%);
  overflow: hidden;
}

/* the horizon: a deep paddock band the photo stands across */
.hero__ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 138px;
  background: var(--teal-wash-2);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding-top: clamp(3rem, 7vw, 5.5rem);
}

.hero__copy { padding-bottom: 200px; }

.hero__copy h1 { color: var(--ink); }
.hero__copy h1 em { font-style: italic; color: var(--teal-deep); }

.hero__copy p { color: var(--ink-soft); font-size: 1.15rem; }

.hero__figure { align-self: end; }

.hero__figure img {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  display: block;
}

.hero__caption {
  margin: 0;
  padding: 0.9rem 0 1.4rem;
  text-align: center;
  color: var(--teal-ink);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* ---------- page banner (interior pages) ---------- */
.banner {
  background: var(--teal-wash);
  color: var(--ink);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-bottom: 1px solid rgba(23, 135, 138, 0.18);
}
.banner h1 { color: var(--ink); margin-bottom: 0.35em; }
.banner p { color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 0; }
.banner .eyebrow--light { color: var(--teal-ink); }

/* ---------- generic section ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.section--warm { background: var(--paper-warm); }
.section--dark { background: var(--teal-wash); color: var(--ink); }
.section--dark h2, .section--dark h3 { color: var(--ink); }
.section--dark p { color: var(--ink-soft); }
.section--dark .eyebrow--light { color: var(--teal-ink); }

.section__head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ---------- facts strip ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(30, 43, 36, 0.15);
  border-block: 1px solid rgba(30, 43, 36, 0.15);
}
.facts > div { background: var(--paper); padding: 1.9rem clamp(1rem, 2.5vw, 2rem); }
.facts dt {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.facts dd { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- helps-with chips ---------- */
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.65rem; }
.chips li {
  border: 1px solid rgba(30, 43, 36, 0.22);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.95rem;
  background: var(--white);
}
.chips li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-deep);
  margin-right: 0.6rem;
  vertical-align: 2px;
}

/* ---------- steps (a real sequence, so numbers earn their place) ---------- */
.steps { counter-reset: step; margin: 0; padding: 0; display: grid; gap: 1px; background: rgba(23, 135, 138, 0.22); }
.steps > li {
  counter-increment: step;
  list-style: none;
  background: var(--teal-wash);
  padding: 2rem clamp(1.25rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
}
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal-ink);
  line-height: 1.2;
}
.steps h3 { margin-bottom: 0.35rem; font-size: 1.25rem; }
.steps p { margin-bottom: 0; }

/* ---------- two-up ---------- */
.two-up {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}

.card {
  background: var(--white);
  border: 1px solid rgba(30, 43, 36, 0.14);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.card h3 { margin-bottom: 0.5rem; }
.card p:last-child { margin-bottom: 0; }

/* ---------- about split ---------- */
.split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.split__figure { margin: 0; }
.split__figure img { width: 100%; max-width: 260px; border-radius: var(--radius); }
.split__figure figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- credentials ---------- */
.creds { list-style: none; margin: 0; padding: 0; }
.creds li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(30, 43, 36, 0.14);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
}
.creds li:first-child { border-top: 1px solid rgba(30, 43, 36, 0.14); }
.creds strong { font-weight: 700; }
.creds span { color: var(--ink-soft); font-size: 0.9rem; white-space: nowrap; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.contact-list li { padding: 1.1rem 0; border-bottom: 1px solid rgba(30, 43, 36, 0.14); }
.contact-list li:first-child { border-top: 1px solid rgba(30, 43, 36, 0.14); }
.contact-list .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bay);
  margin-bottom: 0.3rem;
}
.contact-list a { font-size: 1.15rem; text-decoration: none; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

.form { background: var(--white); border: 1px solid rgba(30, 43, 36, 0.14); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(30, 43, 36, 0.25);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--paddock); background: var(--white); }
.form__error {
  background: #F6E7E2;
  border-left: 3px solid var(--bay);
  color: #6B3A22;
  padding: 0.85rem 1rem;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.form__note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; margin-bottom: 0; }
.hp { position: absolute; left: -9999px; }

/* ---------- full-width photo band ---------- */
.photoband {
  position: relative;
  min-height: clamp(260px, 34vw, 420px);
  background-image: url("../img/surf-band.jpg");
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: flex-end;
}

.photoband--paddock { background-image: url("../img/paddock-dog-band.jpg"); background-position: center 70%; }
.photoband--beach { background-image: url("../img/beach-band.jpg"); background-position: center 55%; }
.photoband--sunset { background-image: url("../img/sunset-band.jpg"); background-position: center 50%; }

.photoband__caption {
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  background: linear-gradient(to top, rgba(10, 60, 62, 0.9), rgba(10, 60, 62, 0.15) 60%, rgba(10, 60, 62, 0));
}

.photoband__caption p {
  margin: 0;
  max-width: 46ch;
  color: var(--white);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.35;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* ---------- media figure inside a section ---------- */
.figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--radius); }
.figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.section--dark .figure figcaption { color: var(--ink-soft); }

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.media-split--flip .figure { order: 2; }
.media-split--even .figure img { aspect-ratio: 4 / 3; object-fit: cover; }

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.trio img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }

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

/* ---------- session type blocks ---------- */
.stype__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  columns: 2;
  column-gap: clamp(1.5rem, 4vw, 3rem);
}
.stype__list li {
  break-inside: avoid;
  padding: 0.45rem 0;
  font-size: 1.05rem;
}
.stype__list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-deep);
  margin-right: 0.65rem;
  vertical-align: 2px;
}

@media (max-width: 700px) {
  .stype__list { columns: 1; }
}

.stype {
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(30, 43, 36, 0.14);
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}
.stype:last-of-type { border-bottom: 1px solid rgba(30, 43, 36, 0.14); }
.stype h3 { margin: 0; font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.stype p:last-child { margin-bottom: 0; }
.stype .tbc {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bay);
  border: 1px dashed var(--bay);
  border-radius: 2px;
  padding: 0.2rem 0.55rem;
  margin-top: 0.5rem;
}

@media (max-width: 760px) {
  .stype { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ---------- faq ---------- */
.faq { border-top: 1px solid rgba(30, 43, 36, 0.14); }
.faq details {
  border-bottom: 1px solid rgba(30, 43, 36, 0.14);
  padding: 1.25rem 0;
}
.faq summary {
  font-family: var(--display);
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--body);
  font-size: 1.4rem;
  color: var(--teal-deep);
  flex: none;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 1rem 0 0; }
.faq details p:last-child { margin-bottom: 0; }

/* ---------- call band ---------- */
.callband {
  background: var(--teal-wash-2);
  color: var(--ink);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-block: 1px solid rgba(23, 135, 138, 0.18);
}
.callband h2 { color: var(--ink); }
.callband p { color: var(--ink-soft); }
/* the light-on-dark buttons need to flip now the band is pale */
.callband .btn--light {
  background: var(--paddock);
  border-color: var(--paddock);
  color: var(--white);
}
.callband .btn--light:hover { background: var(--paddock-deep); border-color: var(--paddock-deep); }
.callband .btn--outline-light {
  background: transparent;
  border-color: var(--paddock);
  color: var(--paddock);
}
.callband .btn--outline-light:hover { background: var(--paddock); color: var(--white); }
.callband__inner { display: grid; grid-template-columns: 1.2fr auto; gap: 2rem; align-items: center; }

/* ---------- social buttons ---------- */
.social { display: flex; gap: 0.6rem; margin-top: 0.25rem; }

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--paddock-deep);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.social a:hover { background: var(--white); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; fill: currentColor; display: block; }

.social--dark a { background: var(--teal); color: var(--white); }
.social--dark a:hover { background: var(--teal-deep); color: var(--white); }

/* ---------- footer ---------- */
.site-footer { background: var(--teal-wash); color: var(--ink-soft); padding-block: clamp(3rem, 6vw, 4rem); font-size: 0.92rem; border-top: 1px solid rgba(23, 135, 138, 0.18); }
.site-footer a { color: var(--teal-ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer h3 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer .brand__name { color: var(--teal-deep); }
.site-footer .brand__tag { color: var(--ink-soft); }
.site-footer p { color: var(--ink-soft); }

.crisis {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(23, 135, 138, 0.2);
  font-size: 0.88rem;
  line-height: 1.65;
}
.crisis p { max-width: 75ch; margin-bottom: 0.6rem; color: var(--ink-soft); }

.colophon {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(23, 135, 138, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- scroll reveal ---------- */
.js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; align-items: start; }
  .hero__copy { padding-bottom: 2.5rem; }
  .hero__ground { height: 110px; }
  .hero__figure img { max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .media-split { grid-template-columns: 1fr; }
  .media-split--flip .figure { order: 0; }
  .split { grid-template-columns: 1fr; }
  .split__figure img { max-width: 240px; }
  .callband__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .site-header__inner { flex-wrap: wrap; min-height: 72px; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 1rem;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-top: 1px solid rgba(30, 43, 36, 0.12); }
  .nav__list a { display: block; padding: 0.9rem 0; border-bottom: none; }
  .nav .btn { margin-top: 1rem; justify-content: center; }
  .facts { grid-template-columns: 1fr; }
  .steps > li { grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.6rem 1.25rem; }
  .creds li { grid-template-columns: 1fr; gap: 0.2rem; }
  .creds span { white-space: normal; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
