/* ==========================================================================
   Claron Studio — core stylesheet
   Palette derived from the Claron Studio logo (forest / sage greens)
   Fonts are self-hosted (no Google Fonts request) — see /fonts
   ========================================================================== */

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/newsreader-latin-opsz-normal.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  /* Brand */
  --forest:        #3E4F3A;
  --forest-deep:   #2C3A29;
  --sage:          #7C9A73;
  --sage-light:    #A9C09E;
  --sage-wash:     #EDF1E9;

  /* Neutrals */
  --ink:           #1B211A;
  --body:          #4E5750;
  --muted:         #7C857D;
  --paper:         #FEFEFE;
  --cream:         #F6F5F0;
  --line:          #E5E4DC;

  /* Type */
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --max: 1120px;
  --narrow: 720px;
  --radius: 14px;
  --radius-lg: 22px;
}

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

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

/* the nav is sticky — keep anchor targets clear of it */
[id] { scroll-margin-top: 96px; }

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

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

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
}

/* Newsreader is an optical-size variable font — dial opsz up for display sizes
   so headings get the tighter, higher-contrast cut. */
h1, h2,
.mission p {
  font-variation-settings: "opsz" 48;
}
h3, h4,
.about__quote,
.brand__name,
.step__num,
.trust__list span {
  font-variation-settings: "opsz" 28;
}
/* Newsreader runs lighter than Fraunces at small sizes — give sub-heads more weight */
h3, h4 { font-weight: 600; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- helpers -- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 28px; }
.wrap--narrow { max-width: var(--narrow); }
.center { text-align: center; }

.section { padding: 104px 0; }
.section--tight { padding: 76px 0; }
.section--cream { background: var(--cream); }

/* Mission → "What I do": ~25% less air between the two */
.section--mission { padding-bottom: 58px; }
.section--mission + .section { padding-top: 77px; }

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 18px;
}

.lede { font-size: 1.1875rem; line-height: 1.65; color: var(--body); }

.rule {
  width: 46px; height: 2px; border: 0;
  background: var(--sage-light);
  margin: 0 0 26px;
}
.center .rule { margin-inline: auto; }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans);
  font-size: .9375rem; font-weight: 600;
  letter-spacing: -0.005em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--forest-deep); transform: translateY(-1px); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--forest); background: var(--sage-wash); }
.btn--sm { padding: 10px 20px; font-size: .875rem; }

.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.textlink {
  color: var(--forest);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--sage-light);
  padding-bottom: 1px;
  transition: border-color .18s ease;
}
.textlink:hover { border-color: var(--forest); }

/* ---------------------------------------------------------------- nav --- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(254,254,254,.88);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; gap: 28px;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-right: auto;
}
.brand img { height: 34px; width: auto; }
.brand__name {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand__name span { color: var(--sage); font-weight: 500; }

.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links > a:not(.btn):not(.icon-link) {
  font-size: .9375rem; font-weight: 500;
  color: var(--body); text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav__links > a:not(.btn):not(.icon-link):hover { color: var(--ink); }
.nav__links > a[aria-current="page"] { color: var(--ink); border-color: var(--forest); }

/* LinkedIn reads as one of the nav items, not a detached icon */
.icon-link { color: var(--body); display: grid; place-items: center; transition: color .18s ease; }
.icon-link:hover { color: var(--forest); }
.nav__links .icon-link { margin-left: 2px; }
.nav__links .nav__book { margin-left: 4px; padding: 11px 20px; }

.nav__toggle {
  display: none; background: none; border: 0; padding: 8px;
  color: var(--ink); cursor: pointer;
}

/* ---------------------------------------------------------------- hero -- */
.hero { padding: 92px 0 78px; }
.hero__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 52px;
  align-items: center;
}
.hero__photo {
  position: relative;
  width: 240px; height: 240px;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.hero__photo::after {
  content: "";
  position: absolute; inset: -10px;
  border: 1.5px solid var(--sage-light);
  border-radius: 50%;
  opacity: .55;
}
.hero__hi {
  font-family: var(--sans);
  font-size: 1.1875rem; font-weight: 600;
  color: var(--sage);
  letter-spacing: 0;
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.25rem);
  margin-bottom: .38em;
  max-width: 19ch;
}
.hero__sub {
  font-size: 1.1875rem;
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__note { font-size: .875rem; color: var(--muted); margin: 18px 0 0; }

/* --------------------------------------------------------- trust strip -- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0 38px; }
.trust__inner { text-align: center; }
.trust__label {
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 16px;
}
.trust__list {
  display: flex; flex-wrap: wrap;
  gap: 12px 44px;
  align-items: center; justify-content: center;
}
.trust__list span {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #8C948B;
  letter-spacing: -0.01em;
}

/* ------------------------------------------------------------- mission -- */
.mission { max-width: 800px; margin-inline: auto; }
.mission p {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.7vw, 1.875rem);
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.mission em { font-style: normal; color: var(--sage); }

/* ------------------------------------------------------------ services -- */
.section__head { max-width: 620px; margin-bottom: 52px; }
.section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); }
.center .section__head, .section__head.center { margin-inline: auto; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 700px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  border-color: var(--sage-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px -22px rgba(43,58,41,.45);
}
.card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--sage-wash);
  display: grid; place-items: center;
  color: var(--forest);
  margin-bottom: 18px;
}
.card h3 { font-size: 1.1875rem; margin-bottom: .45em; }
.card p { font-size: .9688rem; line-height: 1.62; margin: 0; }

/* --------------------------------------------------------------- steps -- */
.steps { display: grid; gap: 0; max-width: 780px; margin-inline: auto; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step__num {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--sage-light);
  line-height: 1;
  padding-top: 4px;
}
.step h3 { font-size: 1.1875rem; margin-bottom: .35em; }
.step p { font-size: .9688rem; margin: 0; }

/* ---------------------------------------------------------------- work -- */
.work { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.work__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.work__item:hover {
  border-color: var(--sage-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px -24px rgba(43,58,41,.5);
}
.work__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, var(--sage-wash), #DCE5D5);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  padding: 22px;
}
.work__thumb svg { width: 100%; height: 100%; max-height: 150px; }
.work__body { padding: 24px 26px 28px; }
.work__tag {
  font-size: .6875rem; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: var(--sage); margin: 0 0 10px;
}
.work__body h3 { font-size: 1.125rem; margin-bottom: .4em; }
.work__body p { font-size: .9375rem; margin: 0 0 16px; }
.work__more { font-size: .875rem; font-weight: 600; color: var(--forest); }

/* --------------------------------------------------------------- about -- */
.about__grid {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: center;
}
.about__grid h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); }
.about__quote {
  border-left: 2px solid var(--sage-light);
  padding-left: 22px;
  font-family: var(--display);
  font-size: 1.1875rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 24px;
}
.about__photo img {
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;   /* required, or the img's height attribute wins over aspect-ratio */
}

/* ---------------------------------------------- interior page headers --- */
.pagehead { padding: 84px 0 66px; border-bottom: 1px solid var(--line); }
.pagehead h1 { font-size: clamp(2.2rem, 4.4vw, 3.1rem); max-width: 22ch; margin-bottom: .3em; }
.pagehead .lede { max-width: 56ch; }
.pagehead--split {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 68px; align-items: center;
}
.pagehead__photo img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%; height: auto;
}

/* -------------------------------------------------------------- prose --- */
.prose { max-width: 66ch; }
.prose h2 { font-size: clamp(1.5rem, 2.8vw, 1.9rem); margin-top: 1.9em; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 1.0625rem; }
.prose ul { padding-left: 1.1em; margin: 0 0 1.15em; }
.prose li { margin-bottom: .5em; }

.pull {
  font-family: var(--display);
  font-variation-settings: "opsz" 40;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  line-height: 1.44;
  color: var(--ink);
  border-left: 2px solid var(--sage-light);
  padding-left: 24px;
  margin: 34px 0;
}

/* ----------------------------------------------------------- timeline --- */
.tl { display: grid; gap: 0; }
.tl__item {
  display: grid; grid-template-columns: 190px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.tl__item:last-child { border-bottom: 0; }
.tl__org {
  font-family: var(--display);
  font-variation-settings: "opsz" 28;
  font-size: 1.125rem; font-weight: 600;
  color: var(--ink); line-height: 1.3;
}
.tl__role {
  font-family: var(--sans);
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--sage); margin-top: 6px;
}
.tl__item p { font-size: .9688rem; margin: 0; }

/* ----------------------------------------------------------- projects --- */
.project { padding: 88px 0; border-bottom: 1px solid var(--line); }
.project:last-of-type { border-bottom: 0; }
.project__head { max-width: 62ch; margin-bottom: 34px; }
.project__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-size: .6875rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage); margin: 0 0 14px;
}
.project__num {
  background: var(--sage-wash);
  border: 1px solid #DBE4D3;
  border-radius: 999px;
  padding: 7px 15px;
  font-size: .8125rem;
  color: var(--forest);
  letter-spacing: .1em;
}
/* the Work page opens straight into the first report, so it carries the page */
.project:first-of-type { padding-top: 72px; }
.project__head h2 {
  font-size: clamp(1.9rem, 3.9vw, 2.6rem);
  letter-spacing: -.018em;
  margin-bottom: .35em;
}
.project__head .lede { font-size: 1.125rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0 0;
}
.facts div { padding: 22px 26px 22px 0; }
.facts dt {
  font-size: .6875rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.facts dd { margin: 0; font-size: .9688rem; line-height: 1.6; }

.group-label {
  display: flex; align-items: center; gap: 18px;
  padding-top: 78px;
}
.group-label p {
  font-size: .75rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--sage); margin: 0; flex: none;
}
.group-label::after { content: ""; height: 1px; background: var(--line); flex: 1; }

.privnote {
  border: 1px dashed #D9DCD3;
  border-radius: var(--radius);
  background: var(--sage-wash);
  padding: 22px 26px;
  font-size: .9375rem;
  color: var(--body);
}
.privnote strong { color: var(--ink); }

.embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.embed__frame { position: relative; width: 100%; aspect-ratio: 600 / 373.5; }
.embed__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed__note {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  font-size: .8125rem; color: var(--muted);
  background: var(--paper);
}

/* ------------------------------------------------------- step blocks --- */
.stepblock {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 44px;
}
.stepblock__num {
  font-family: var(--display);
  font-variation-settings: "opsz" 48;
  font-size: 3.4rem;
  line-height: .9;
  color: var(--sage-light);
}
.stepblock h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-bottom: .32em; letter-spacing: -.018em; }
.stepblock .lede { max-width: 62ch; font-size: 1.125rem; }

/* --------------------------------------------------- calendly embed ---- */
.cal-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.calendly-inline-widget { min-width: 320px; height: 720px; }
.cal-note {
  border-top: 1px solid var(--line);
  padding: 14px 20px;
  font-size: .8125rem;
  color: var(--muted);
  background: var(--paper);
}

/* ---------------------------------------------------------- contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { display: grid; gap: 7px; }
.field label {
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .02em; color: var(--ink);
}
.field label .opt { font-weight: 500; color: var(--muted); letter-spacing: 0; }
.field .hint { font-size: .8125rem; color: var(--muted); margin: 0; }

.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 168px; resize: vertical; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: #A8AFA6; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124,154,115,.18);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #C0705E; }

/* honeypot — hidden from people, visible to bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.form__note { font-size: .8125rem; color: var(--muted); margin: 0; }

.form__status {
  display: none;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .9375rem;
  line-height: 1.6;
}
.form__status.is-shown { display: block; }
.form__status.is-ok   { background: var(--sage-wash); border: 1px solid #D3DECB; color: var(--forest-deep); }
.form__status.is-bad  { background: #FBF0EC; border: 1px solid #EBD3CB; color: #8A4433; }
.form__status strong { display: block; margin-bottom: 3px; }

.aside { display: grid; gap: 26px; }
.aside__block { display: grid; gap: 6px; }
.aside__label {
  font-size: .6875rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin: 0;
}
.aside__block p { font-size: .9688rem; margin: 0; }
.aside__block a { color: var(--forest); font-weight: 500; }

.aside__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: var(--cream);
}
.aside__card h3 { font-size: 1.0625rem; margin-bottom: .5em; }
.aside__card ol { margin: 0; padding-left: 1.15em; font-size: .9375rem; }
.aside__card li { margin-bottom: .45em; }
.aside__card li:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------- testimonial -- */
.quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.quote blockquote {
  font-family: var(--display);
  font-variation-settings: "opsz" 44;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0 0 28px;
  position: relative;
}
.quote blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: .6;
  color: var(--sage-light);
  margin-bottom: 14px;
}
.quote figcaption { display: grid; gap: 4px; }
.quote__name {
  font-family: var(--sans);
  font-size: .9375rem; font-weight: 600; color: var(--ink);
}
.quote__role {
  font-family: var(--sans);
  font-size: .875rem; color: var(--muted);
}

/* ----------------------------------------------------------------- cta -- */
.cta {
  background: var(--forest-deep);
  color: #E7EDE4;
  padding: 92px 0;
  text-align: center;
}
.cta h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.6rem); max-width: 18ch; margin-inline: auto; }
.cta p { color: #B9C7B4; max-width: 46ch; margin: 0 auto 30px; }
.cta .btn--primary { background: #fff; color: var(--forest-deep); }
.cta .btn--primary:hover { background: var(--sage-wash); }
.cta .btn--ghost { border-color: rgba(255,255,255,.32); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

/* -------------------------------------------------------------- footer -- */
.footer { padding: 56px 0 44px; border-top: 1px solid var(--line); }
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer__brand img { height: 30px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { font-size: .9375rem; color: var(--body); text-decoration: none; }
.footer__links a:hover { color: var(--forest); }
.footer__legal { font-size: .8125rem; color: var(--muted); margin-top: 26px; }

/* -------------------------------------------------------------- motion -- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------------------------------------------------------- responsive -- */
@media (max-width: 860px) {
  .nav__links {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 28px 24px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.btn) { padding: 10px 0; border-bottom: 0; }
  .nav__links .btn { margin-top: 10px; }
  .nav__toggle { display: block; }

  .hero { padding: 60px 0 54px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; justify-items: center; }
  .hero__photo { width: 190px; height: 190px; }
  .hero h1, .hero__sub { max-width: 100%; }
  .hero__actions { justify-content: center; }

  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__photo { max-width: 420px; margin-inline: auto; }

  .pagehead--split { grid-template-columns: 1fr; gap: 34px; }
  .pagehead__photo { max-width: 360px; }

  .tl__item { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .form__row { grid-template-columns: 1fr; }
  .stepblock { grid-template-columns: 56px 1fr; gap: 16px; margin-bottom: 34px; }
  .stepblock__num { font-size: 2.25rem; }
  .calendly-inline-widget { height: 1040px; }

  .section { padding: 74px 0; }
  .project { padding: 62px 0; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
  .trust__inner { flex-direction: column; gap: 16px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
