:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #141414;
  --muted: #666a70;
  --line: #e4e0d8;
  --dark: #101010;
  --dark-2: #1a1a1a;
  --accent: #ec7023;
  --accent-dark: #c85f1d;
  --gold: #f28a3a;
  --border-gold: rgba(236, 112, 35, 0.34);
  --radius: 8px;
  --shadow: 0 20px 45px rgba(20, 20, 20, 0.12);
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 118px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.brand strong,
.site-footer strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #303030;
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: #ebe7df;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(236, 112, 35, 0.18), transparent 32%),
    var(--dark);
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(720px, calc(88svh - 78px));
  padding: 76px 0 68px;
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.84) 0%, rgba(16, 16, 16, 0.56) 42%, rgba(16, 16, 16, 0.04) 100%),
    linear-gradient(0deg, rgba(16, 16, 16, 0.42), rgba(16, 16, 16, 0.02));
  content: "";
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.6vw, 4.75rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.16;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.center-action {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-outline {
  border-color: #282828;
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent);
  background: rgba(236, 112, 35, 0.08);
}

.section-dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.full {
  width: 100%;
}

.section-copy p,
.section-heading p,
.contact-content p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading .eyebrow,
.section-copy .eyebrow,
.values-grid .eyebrow {
  color: var(--accent);
}

.experience-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 112, 35, 0.1), transparent 34%),
    var(--bg);
}

.experience-inner {
  display: grid;
  justify-items: center;
  gap: 44px;
}

.experience-quote {
  position: relative;
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.04;
  text-align: center;
}

.experience-quote span {
  color: var(--gold);
}

.editorial-heading {
  justify-items: center;
  max-width: 820px;
  margin-bottom: 4px;
}

.editorial-heading p:last-child {
  margin-inline: auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.experience-grid article {
  display: grid;
  align-content: center;
  min-height: 210px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.07);
  text-align: center;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.experience-grid article:hover,
.experience-grid article:focus-within {
  border-color: rgba(236, 112, 35, 0.36);
  box-shadow: 0 20px 45px rgba(20, 20, 20, 0.1);
  transform: translateY(-3px);
}

.experience-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 900;
  line-height: 1;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.portrait-card {
  margin: 0;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-card figcaption {
  padding: 20px;
}

.portrait-card span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.about-copy-only {
  max-width: 860px;
}

.about-copy-only .section-copy p {
  max-width: 820px;
}

.accompaniment-section {
  background: var(--bg);
}

.accompaniment-heading {
  max-width: 820px;
}

.accompaniment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.accompaniment-grid article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.accompaniment-grid article:hover,
.accompaniment-grid article:focus-within {
  border-color: rgba(236, 112, 35, 0.36);
  box-shadow: 0 20px 45px rgba(20, 20, 20, 0.1);
  transform: translateY(-3px);
}

.accompaniment-grid h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.16;
}

.accompaniment-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 6px;
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.compact {
  margin-inline: auto;
  text-align: center;
}

.pricing-grid,
.review-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card,
.review-card,
.values-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.07);
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.plan-card.featured {
  border-color: rgba(236, 112, 35, 0.36);
  box-shadow: 0 24px 54px rgba(236, 112, 35, 0.14);
}

.plan-label {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.plan-card > p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: auto 0 22px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.feature-list span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-services-intro {
  max-width: 820px;
  margin: -10px auto 30px;
  color: var(--muted);
  font-size: 1.04rem;
  text-align: center;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.07);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.home-service-card::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 3px;
  background: var(--accent);
  content: "";
}

.home-service-card:hover,
.home-service-card:focus-within {
  border-color: rgba(236, 112, 35, 0.36);
  box-shadow: 0 20px 45px rgba(20, 20, 20, 0.1);
  transform: translateY(-3px);
}

.home-service-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
}

.home-service-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.home-services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(236, 112, 35, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.06);
}

.home-services-cta h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  font-weight: 900;
}

.home-services-cta p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.home-services-cta .btn {
  flex: 0 0 auto;
}

.split-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 46px;
}

.summary-panel,
.content-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.07);
}

.summary-panel {
  padding: 28px;
}

.summary-panel p,
.content-block p {
  color: var(--muted);
}

.content-stack {
  display: grid;
  gap: 32px;
}

.content-block {
  max-width: 920px;
  padding: 34px;
}

.compact-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.values-grid p,
.review-card blockquote {
  color: var(--muted);
}

.values-grid .eyebrow {
  color: var(--accent);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.result-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.result-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  aspect-ratio: 4 / 5;
}

.result-pair img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

.result-card div {
  padding: 18px;
}

.result-card .result-pair {
  padding: 0;
}

.result-card p {
  color: rgba(255, 255, 255, 0.7);
}

.result-card span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-card {
  padding: 24px;
}

.review-card img {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
}

.stars {
  margin-bottom: 10px;
  color: var(--gold);
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 0 0 18px;
}

.review-card cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.values-grid article {
  padding: 26px;
}

.values-grid h2 {
  font-size: 1.65rem;
}

.contact-section {
  background: var(--surface);
}

.contact-content {
  max-width: 980px;
  text-align: center;
}

.contact-content .eyebrow::after {
  margin-left: auto;
}

.contact-content p {
  margin-inline: auto;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin: 22px 0 26px;
  font-weight: 900;
}

.services-page {
  background: var(--surface);
}

.services-hero {
  position: relative;
  padding-top: 78px;
  overflow: hidden;
}

.organic-section {
  position: relative;
  overflow: hidden;
}

.organic-section::before {
  position: absolute;
  top: -150px;
  right: -110px;
  width: 360px;
  height: 300px;
  border-radius: 42% 58% 47% 53%;
  background: rgba(236, 112, 35, 0.16);
  content: "";
  pointer-events: none;
}

.organic-section::after {
  position: absolute;
  top: 54px;
  right: 40px;
  width: 220px;
  height: 130px;
  border-top: 2px solid rgba(236, 112, 35, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-18deg);
}

.services-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 58px;
}

.services-hero-copy-only {
  display: block;
}

.services-hero-copy-only .services-hero-copy {
  max-width: 920px;
}

.services-hero-copy p:not(.eyebrow),
.intro-copy p,
.strong-call p,
.faq-layout p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.06rem;
}

.services-hero-copy h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 5.6vw, 4.75rem);
  letter-spacing: 0;
}

.services-hero-lead {
  color: var(--ink) !important;
  font-size: clamp(1.28rem, 2.1vw, 1.9rem) !important;
  font-weight: 800;
  line-height: 1.2;
}

.services-hero-media {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.services-hero-media::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(236, 112, 35, 0.7);
  border-radius: 50%;
  content: "";
  z-index: 1;
}

.services-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.services-hero-media figcaption {
  padding: 20px;
}

.services-hero-media span {
  display: block;
  color: var(--muted);
}

.intro-section {
  background: #f7f6f2;
}

.intro-copy {
  max-width: 880px;
}

.intro-copy h2 {
  max-width: 760px;
}

.services-list-section {
  background: var(--surface);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(236, 112, 35, 0.36);
  box-shadow: 0 20px 45px rgba(20, 20, 20, 0.1);
  transform: translateY(-3px);
}

.featured-service {
  border-color: rgba(236, 112, 35, 0.42);
  box-shadow: 0 24px 54px rgba(236, 112, 35, 0.13);
}

.wide-service {
  grid-column: span 2;
}

.service-number {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card h3,
.service-card__title {
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.service-card__top {
  margin-bottom: 1.25rem;
}

.service-card__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.service-card__intro p {
  margin: 0;
}

.service-name {
  margin-bottom: 12px;
  color: var(--accent) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list-title,
.service-final {
  color: var(--ink) !important;
  font-weight: 900;
}

.service-card__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.service-card__footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.service-card__footer .btn,
.service-card__footer a,
.service-card__footer button {
  width: 100%;
}

.service-card .btn {
  min-height: 52px;
}

.service-card__closing {
  margin: 0 0 1.25rem;
}

.service-card__bullets li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  column-gap: 0.5rem;
  color: #303030;
  font-weight: 700;
  line-height: 1.45;
}

.bullet-icon {
  display: inline-block;
  width: 1.25rem;
  line-height: 1.45;
}

.bullet-text {
  display: block;
}

@media (min-width: 1025px) {
  .services-grid {
    grid-template-rows: auto auto auto 1fr;
  }

  .service-card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }

  .service-card__footer {
    justify-content: flex-end;
    margin-top: 0;
  }
}

@supports not (grid-template-rows: subgrid) {
  @media (min-width: 1025px) {
    .service-card__top {
      min-height: 8rem;
    }

    .service-card__intro {
      min-height: 24rem;
    }
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.process-section {
  background: #f7f6f2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 1px solid rgba(236, 112, 35, 0.34);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 900;
}

.process-grid h3 {
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.services-difference-section {
  background: #ebe7df;
}

.difference-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.difference-list article {
  padding: 22px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.strong-call-section {
  background: var(--dark);
  color: #ffffff;
}

.strong-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.strong-call p {
  color: rgba(255, 255, 255, 0.72);
}

.strong-call h2 {
  max-width: 720px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 20px;
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.site-footer {
  padding: 38px 0;
  background: #0d0d0d;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.site-credit {
  padding: 0 0 22px;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.72);
}

.site-credit p {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
}

.site-credit a {
  color: #ffffff;
  font-weight: 900;
}

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

  .split-summary {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(680px, calc(86svh - 70px));
  }

  .pricing-grid,
  .experience-grid,
  .accompaniment-grid,
  .home-services-grid,
  .review-grid,
  .values-grid,
  .results-grid,
  .services-grid,
  .process-grid,
  .difference-list {
    grid-template-columns: 1fr 1fr;
  }

  .compact-list {
    grid-template-columns: 1fr 1fr;
  }

  .services-hero-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .wide-service {
    grid-column: span 1;
  }

  .strong-call {
    display: grid;
  }

  .home-services-cta {
    display: grid;
  }

  .home-services-cta .btn {
    justify-self: start;
  }

}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 96px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 86px;
    height: 86px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 95px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 48px 0 52px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .pricing-grid,
  .experience-grid,
  .accompaniment-grid,
  .home-services-grid,
  .review-grid,
  .values-grid,
  .results-grid,
  .services-grid,
  .process-grid,
  .difference-list {
    grid-template-columns: 1fr;
  }

  .compact-list {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding-top: 54px;
  }

  .services-hero-media {
    max-width: 420px;
  }

  .organic-section::before {
    top: -120px;
    right: -180px;
  }

  .organic-section::after {
    right: -54px;
  }

  .experience-inner {
    gap: 32px;
  }

  .experience-grid article {
    min-height: 178px;
  }

  .accompaniment-grid article {
    min-height: auto;
  }

  .home-service-card {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-card__footer {
    margin-top: 2rem;
  }

  .home-services-cta .btn {
    width: 100%;
  }

  .hero-bg {
    object-position: right center;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .brand span {
    max-width: 170px;
  }

  .plan-card,
  .experience-grid article,
  .accompaniment-grid article,
  .home-service-card,
  .home-services-cta,
  .summary-panel,
  .content-block,
  .review-card,
  .values-grid article,
  .service-card,
  .process-grid article,
  .difference-list article {
    padding: 20px;
  }
}
