/* ============================================
   Beautifeel — Eating Disorder Recovery Coaching
   ============================================ */

:root {
  --cream: #fffbf2;
  --cream-deep: #fff4dd;
  --gold: #ffedc9;
  --ink: #34356b;
  --ink-deep: #2e2f63;
  --ink-soft: #4a4b7e;
  --muted: #5c5d8d;
  --muted-soft: #696789;
  --lavender: #c8b8ff;
  --lavender-soft: #efe9ff;
  --purple: #595ccc;
  --purple-deep: #4b4ec9;
  --purple-bright: #5c5fd4;
  --border: #e9e2fa;
  --border-soft: #e0d8f5;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(90, 80, 180, 0.08);
  --shadow-lg: 0 18px 50px rgba(90, 80, 180, 0.1);
  --radius: 22px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --header-h: 86px;
  --font-sans: "Jost", system-ui, sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --max: 1180px;
  --max-wide: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--purple-deep);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--purple-bright);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--purple-deep);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink-deep);
  color: var(--white);
  font-weight: 600;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

::selection {
  background: var(--lavender);
  color: #26244e;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 48px, var(--max-wide));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--purple-deep);
  color: var(--white);
}

.btn--bright {
  background: var(--purple-bright);
  color: var(--white);
}

.btn--bright:hover {
  background: var(--purple);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border-color: var(--purple);
  color: var(--purple-deep);
}

.btn--outline:hover {
  background: var(--purple);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn--cream {
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.btn--cream:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  font-size: 14px;
  padding: 12px 22px;
}

/* ---------- Eyebrow / Section headings ---------- */
.eyebrow {
  color: var(--purple-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--ink-deep);
  margin: 0 0 18px;
}

.section-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gold);
  border-bottom: 1px solid rgba(130, 133, 254, 0.18);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(38, 36, 84, 0.08);
}

.site-header__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nav {
  display: flex;
  gap: clamp(10px, 1.6vw, 24px);
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}

.nav a {
  color: var(--ink);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="true"] {
  color: var(--purple-deep);
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  color: var(--ink);
}

.nav-toggle:hover {
  background: rgba(106, 109, 224, 0.12);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(82vh, 780px);
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-margin-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(38, 36, 84, 0.38) 0%,
    rgba(38, 36, 84, 0.3) 45%,
    rgba(38, 36, 84, 0.62) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 48px 24px;
  max-width: 900px;
}

.hero__kicker {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 26px;
}

.hero__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.18;
  color: var(--white);
  margin: 0 0 24px;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #f3efff;
  margin: 0 0 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Press bar ---------- */
.press {
  background: var(--gold);
  padding: 22px 32px;
}

.press__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 36px;
  flex-wrap: wrap;
}

.press__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.press a {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--purple-deep);
}

.press a:hover {
  color: var(--purple-bright);
}

/* ---------- Services ---------- */
.services {
  padding: 110px 0 120px;
  scroll-margin-top: var(--header-h);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 27px;
  margin: 0 0 6px;
  color: var(--ink-deep);
}

.service-card__meta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--purple-bright);
  margin-bottom: 18px;
}

.service-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 26px;
}

.service-card__prices {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--border-soft);
  padding-bottom: 9px;
  font-size: 15px;
  color: var(--muted);
}

.price-row strong {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}

.service-card__note {
  font-size: 13px;
  color: var(--muted-soft);
  margin: -12px 0 16px;
  font-style: italic;
}

/* ---------- Quote band ---------- */
.band {
  background: var(--purple);
  padding: 78px 32px;
  text-align: center;
}

.band__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  line-height: 1.35;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  text-wrap: balance;
}

.band__tag {
  margin-top: 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.band--cta {
  padding: 96px 32px;
}

.band--cta h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 18px;
  text-wrap: balance;
}

.band--cta p {
  color: #f5f2ff;
  font-size: 17px;
  margin: 0 auto 36px;
  max-width: 560px;
  line-height: 1.6;
}

/* ---------- About ---------- */
.about {
  background: var(--cream-deep);
  padding: 120px 0;
  scroll-margin-top: var(--header-h);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 80px;
  align-items: start;
}

.about__photo-wrap {
  position: relative;
}

.about__photo-wrap::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  right: -26px;
  bottom: -26px;
  background: var(--lavender);
  border-radius: 260px 260px 26px 26px;
  opacity: 0.45;
}

.about__photo {
  position: relative;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 240px 240px 22px 22px;
}

.about__body {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__body p {
  margin: 0;
}

.about__closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

.credentials {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(130, 133, 254, 0.25);
}

.credentials__label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 16px;
}

.credentials__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  font-size: 15px;
  color: var(--ink-soft);
  list-style: none;
  margin: 0;
  padding: 0;
}

.credentials__list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.credentials__list li::before {
  content: "◆";
  color: var(--purple-bright);
  font-size: 10px;
  flex-shrink: 0;
}

.credentials__list-item--wide {
  grid-column: 1 / -1;
}

.credentials__list em {
  color: var(--muted-soft);
  font-style: italic;
}

.about__cta {
  margin-top: 36px;
}

.about__gallery {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about__gallery figure {
  margin: 0;
}

.about__gallery img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(90, 80, 180, 0.14);
}

.about__gallery figure:nth-child(1) img {
  transform: rotate(-1deg);
}

.about__gallery figure:nth-child(2) img {
  transform: rotate(0.8deg) translateY(8px);
}

.about__gallery figure:nth-child(3) img {
  transform: rotate(-0.6deg);
}

.about__gallery figure:nth-child(4) img {
  transform: rotate(1deg) translateY(6px);
}

.about__gallery figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted-soft);
  text-align: center;
  line-height: 1.4;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 120px 0;
  scroll-margin-top: var(--header-h);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 36px 30px;
  box-shadow: 0 14px 40px rgba(90, 80, 180, 0.07);
}

.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 0.6;
  color: var(--lavender);
  margin-bottom: 18px;
}

.testimonial__body {
  position: relative;
}

.testimonial__text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  white-space: pre-line;
  max-height: 240px;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.testimonial.is-expanded .testimonial__text {
  max-height: 3000px;
}

.testimonial__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial.is-expanded .testimonial__fade {
  opacity: 0;
}

.testimonial__toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple-deep);
  text-transform: uppercase;
}

.testimonial__toggle:hover {
  color: var(--purple-bright);
}

.testimonial__name {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f0ebfa;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-deep);
}

/* ---------- FAQs ---------- */
.faqs {
  background: var(--cream-deep);
  padding: 120px 0;
  scroll-margin-top: var(--header-h);
}

.faqs__grid {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 72px;
  align-items: start;
}

.faqs__intro {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.faqs__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--purple-deep);
  border-bottom: 1.5px solid var(--lavender);
  padding-bottom: 2px;
}

.faqs__lead {
  margin-bottom: 26px;
}

.faqs__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  background: var(--white);
  border: 1px solid #efe7fb;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 26px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq-item__trigger:hover {
  color: var(--purple-deep);
}

.faq-item__icon {
  font-size: 22px;
  color: var(--purple-bright);
  font-weight: 400;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
}

.faq-item__panel {
  display: none;
  padding: 0 26px 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.faq-item.is-open .faq-item__panel {
  display: block;
}

/* ---------- Contact ---------- */
.contact {
  padding: 120px 0;
  scroll-margin-top: var(--header-h);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ink-deep);
}

.contact__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 440px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.contact__row {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.contact__label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-soft);
  width: 72px;
  flex-shrink: 0;
}

.contact__row a {
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--lavender);
  padding-bottom: 1px;
}

.contact__row a:hover {
  color: var(--purple-deep);
}

.contact__row span:not(.contact__label) {
  font-size: 17px;
  color: var(--ink);
}

.social-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid #d9cff2;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--purple-deep);
  transition: all 0.2s ease;
}

.social-pill:hover {
  border-color: var(--purple-bright);
  background: #f4f0ff;
  color: var(--purple-deep);
}

.social-pill svg {
  flex-shrink: 0;
}

.contact__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a5a3c6;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--purple-bright);
  box-shadow: 0 0 0 3px rgba(130, 133, 254, 0.18);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.form-footer__note {
  font-size: 13px;
  color: var(--muted-soft);
  font-style: italic;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: var(--purple);
  font-size: 28px;
  line-height: 64px;
  margin: 0 auto 22px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink-deep);
  margin: 0 0 12px;
}

.form-success p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.contact-form.is-hidden {
  display: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gold);
  padding: 64px 32px 40px;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.site-footer__logo {
  height: 52px;
  margin: 0 auto 28px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}

.footer-nav a:hover {
  color: var(--purple-deep);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 30px;
}

.footer-social a {
  font-size: 14px;
  color: var(--purple-deep);
}

.site-footer__legal {
  border-top: 1px solid rgba(130, 133, 254, 0.22);
  padding-top: 24px;
  font-size: 13.5px;
  color: var(--muted-soft);
  line-height: 1.7;
}

/* ---------- Not found ---------- */
.not-found__header {
  grid-template-columns: 1fr auto;
}

.not-found__header .site-logo {
  justify-content: flex-start;
}

.not-found {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  text-align: center;
}

.not-found h1 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
}

.not-found > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__photo {
    height: 480px;
    max-width: 420px;
    margin: 0 auto;
  }

  .about__photo-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .credentials__list {
    grid-template-columns: 1fr;
  }

  .credentials__list-item--wide {
    grid-column: auto;
  }

  .faqs__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faqs__intro {
    position: static;
  }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__gallery {
    grid-template-columns: 1fr 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .about__gallery img {
    transform: none !important;
  }

  .about__gallery figure:nth-child(n) img {
    transform: none !important;
  }
}

@media (max-width: 560px) {
  .about__gallery {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 34px;
  }

  .about__gallery img {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 800px) {
  :root {
    --header-h: 72px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-h);
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-logo {
    justify-content: flex-start;
    order: 1;
  }

  .site-logo img {
    height: 38px;
  }

  .header-cta {
    order: 2;
    justify-content: flex-end;
  }

  .header-cta .btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gold);
    border-bottom: 1px solid rgba(130, 133, 254, 0.18);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
    box-shadow: 0 12px 24px rgba(38, 36, 84, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(130, 133, 254, 0.12);
    font-size: 16px;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: 560px;
  }

  .about__photo {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .about__photo-wrap::before {
    top: 14px;
    left: 14px;
    right: -10px;
    bottom: -14px;
  }

  .services,
  .about,
  .testimonials,
  .faqs,
  .contact {
    padding: 80px 0;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-footer .btn {
    width: 100%;
  }

  .contact__card {
    padding: 28px 22px;
  }

  .service-card {
    padding: 30px 26px;
  }

  .testimonial {
    padding: 28px 24px 24px;
  }

  .press {
    padding: 18px 16px;
  }

  .press a {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .footer-nav {
    gap: 16px 20px;
  }
}
