/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--dust-deep);
  color: white;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--dust-deeper);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--ink);
  color: white;
}
.btn--light {
  background: white;
  color: var(--ink);
}
.btn--light:hover,
.btn--light:focus-visible {
  background: var(--cream);
}

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  background: var(--cream);
  padding: 2px 0;
  position: relative;
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}
.site-header__logo {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  height: 140px;
  width: auto;
  display: block;
}
.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  flex-wrap: wrap;
}
.site-nav a {
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
}
.site-header__contact {
  grid-column: 3;
  justify-self: end;
}
.site-header__burger { display: none; }

@media (max-width: 860px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
    row-gap: 14px;
  }
  .site-header__logo { grid-column: 1; }
  .site-header__contact { grid-column: 2; justify-self: end; }
  .site-nav {
    grid-column: 1 / -1;
    justify-self: start;
    gap: 14px;
    font-size: 12px;
  }
  .site-header__logo img { height: 84px; }
}
@media (max-width: 480px) {
  .site-header__contact { display: none; }
}

/* ============================================================
   Hero — split (text left / image right)
   ============================================================ */
.hero {
  background: var(--cream);
}
.hero--dust {
  background: var(--dust-soft);
}
.hero__grid {
  display: grid;
  gap: clamp(32px, 4vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
  padding-block: clamp(48px, 6vw, 96px);
}
@media (min-width: 860px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
}
.hero__copy .eyebrow { margin-bottom: 24px; }
.hero h1 { margin-bottom: 24px; }
.hero__lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__image {
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Intro / centred copy block
   ============================================================ */
.intro {
  text-align: center;
}
.intro__inner {
  max-width: 760px;
  margin: 0 auto;
}
.intro .eyebrow { margin-bottom: 18px; }
.intro h2 { margin-bottom: 28px; }
.intro p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* ============================================================
   Service cards (3-up grid)
   ============================================================ */
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--cream-soft);
  padding: 36px 32px 32px;
  border-radius: var(--radius);
}
.svc-card__photo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 28px;
  align-self: center;
  box-shadow: 0 0 0 8px var(--cream);
}
.svc-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-card h3 {
  font-size: var(--step-2);
  line-height: 1.25;
  margin-bottom: 14px;
}
@media (min-width: 820px) {
  .svc-card h3 { min-height: 2.5em; }
  .svc-card__lede { min-height: 4.1em; }
}
.svc-card__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.35;
  width: 100%;
}
.svc-card ul {
  text-align: left;
  width: 100%;
  margin-bottom: 24px;
}
.svc-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: var(--step-0);
  color: var(--ink-soft);
}
.svc-card ul li::before {
  content: "·";
  position: absolute;
  left: 8px;
  top: 4px;
  color: var(--dust-deep);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}

/* ============================================================
   Credibility band (dust-soft)
   ============================================================ */
.credibility {
  background: var(--dust-soft);
  text-align: center;
}
.credibility__inner { max-width: 760px; margin: 0 auto; }
.credibility p {
  font-size: var(--step-1);
  margin-bottom: 16px;
  color: var(--ink-soft);
}

/* ============================================================
   Who I work with — 2-col list
   ============================================================ */
.who__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 32px;
  max-width: 640px;
  margin: 32px auto 0;
}
@media (min-width: 600px) {
  .who__list { grid-template-columns: 1fr 1fr; }
}
.who__list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: var(--step-0);
}
.who__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 8px;
  background: var(--dust-deep);
  border-radius: 50%;
}

/* ============================================================
   Pricing block
   ============================================================ */
.pricing { text-align: center; }
.pricing__inner { max-width: 820px; margin: 0 auto; }
.pricing p {
  margin: 0 auto 16px;
  max-width: 640px;
  font-size: var(--step-0);
  color: var(--ink-soft);
}
.pricing__rates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
@media (min-width: 640px) {
  .pricing__rates { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.pricing__rate {
  padding: 0;
}
.pricing__rate-label {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.pricing__price {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1;
  color: var(--ink);
}
.pricing__price small {
  font-size: 0.32em;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================================================
   Why-work-with-me checklist
   ============================================================ */
.why__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 40px;
  max-width: 760px;
  margin: 32px auto 0;
}
@media (min-width: 600px) {
  .why__list { grid-template-columns: 1fr 1fr; }
}
.why__list li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: var(--step-0);
}
.why__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 22px; height: 12px;
  border-left: 2px solid var(--dust-deep);
  border-bottom: 2px solid var(--dust-deep);
  transform: rotate(-45deg);
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: var(--dust-deep);
  color: white;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.86);
  font-size: var(--step-1);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============================================================
   Service detail (services page)
   ============================================================ */
.svc-detail {
  padding-block: clamp(56px, 6vw, 88px);
}
.svc-detail + .svc-detail { border-top: 1px solid var(--line); }
.svc-detail__lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin: 12px 0 24px;
}
.svc-detail h2 { margin-bottom: 12px; }
.svc-detail__list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: var(--step-0);
}
.svc-detail__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 8px; height: 8px;
  background: var(--dust-deep);
  border-radius: 50%;
}
.svc-detail__image {
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Contact form
   ============================================================ */
.form-grid {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-row label {
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.form-row input,
.form-row textarea {
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  color: var(--ink);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--dust-deep);
  outline-offset: 1px;
  border-color: var(--dust-deep);
}
.form-row textarea { min-height: 96px; resize: vertical; }
.form-submit { text-align: center; margin-top: 4px; }
.form-flash {
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  text-align: center;
}
.form-flash--ok { background: var(--dust-soft); color: var(--ink); }
.form-flash--err { background: #f7e4e4; color: #6b2f2f; }
.form-disclaimer {
  font-size: var(--step--1);
  color: var(--ink-soft);
  text-align: center;
  margin-top: 4px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--dust-deep);
  color: rgba(255,255,255,0.92);
  padding-block: clamp(56px, 6vw, 96px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.site-footer__cta h2 {
  color: white;
  margin-bottom: 16px;
}
.site-footer__cta p {
  color: rgba(255,255,255,0.86);
  font-size: var(--step-1);
  margin-bottom: 28px;
  max-width: 480px;
}
.site-footer__brand {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  text-align: left;
}
.site-footer__brand-text { min-width: 0; }
.site-footer__mark {
  display: inline-block;
  margin: 0;
  align-self: center;
}
.site-footer__mark img {
  height: clamp(140px, 14vw, 200px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.site-footer__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-1);
  margin: 0 0 20px;
  color: rgba(255,255,255,0.92);
  max-width: 420px;
}
.site-footer__nav {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  flex-wrap: wrap;
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.site-footer__nav a { color: rgba(255,255,255,0.88); }
.site-footer__nav a:hover { color: white; }
.site-footer__copy {
  font-size: var(--step--1);
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.site-footer__credit {
  font-size: var(--step--1);
  color: rgba(255,255,255,0.55);
  margin: 6px 0 0;
}
.site-footer__credit a {
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.site-footer__credit a:hover {
  color: white;
  border-bottom-color: white;
}
@media (max-width: 760px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__brand { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .site-footer__nav { justify-content: center; }
  .site-footer__mark img { height: 120px; }
}

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  font-size: var(--step--1);
  z-index: 50;
}
.cookie-banner.is-hidden { display: none; }
.cookie-banner p { color: var(--ink-soft); margin-bottom: 14px; font-size: 13px; }
.cookie-banner__row { display: flex; gap: 8px; }
.cookie-banner .btn { padding: 10px 16px; font-size: 11px; flex: 1; }

/* ============================================================
   About block (one-page about section)
   ============================================================ */
.about__grid { align-items: center; }
.about__headshot {
  justify-self: center;
  width: min(360px, 80%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 10px var(--cream);
}
.about__headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__copy .eyebrow { margin-bottom: 18px; }
.about__copy h2 { margin-bottom: 24px; }
.about__copy p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* ============================================================
   Services intro (split text + image above the 3-up cards)
   ============================================================ */
.services__intro { margin-bottom: clamp(48px, 5vw, 72px); }
.services__intro .eyebrow { margin-bottom: 16px; }
.services__intro h2 { margin-bottom: 16px; }
.services__intro p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 520px;
}
.services__intro-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.services__intro-image img {
  width: 100%;
  height: auto;
  display: block;
}
.services__cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}

/* ============================================================
   Testimonial (on --dust-deep band)
   ============================================================ */
.section--dust-deep .eyebrow { color: rgba(255,255,255,0.78); }
.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: white;
  margin: 0;
}
.testimonial__quote p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}
.testimonial__quote p:last-child { margin-bottom: 0; }
.testimonial__cite {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  margin-top: 36px;
}
.testimonial__cite span {
  display: block;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ============================================================
   Contact split (image + form)
   ============================================================ */
.contact__layout { align-items: stretch; }
.contact__image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}
.contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact__copy {
  display: flex;
  flex-direction: column;
}
.contact__copy .eyebrow { margin-bottom: 10px; }
.contact__copy h2 { margin-bottom: 10px; }
.contact__copy > p {
  font-size: var(--step-0);
  color: var(--ink-soft);
  margin-bottom: 10px;
  max-width: 520px;
}
.contact__email {
  margin-bottom: 16px;
}
.contact__email a {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--dust-deep);
  border-bottom: 1px solid var(--dust-deep);
  padding-bottom: 2px;
}
.contact__email a:hover { color: var(--dust-deeper); border-bottom-color: var(--dust-deeper); }
.contact__copy .form-grid { margin: 0; max-width: 100%; }
