:root {
  color-scheme: light;
  --ink: #1e211d;
  --muted: #62685f;
  --paper: #fbfaf4;
  --panel: #ffffff;
  --line: #dfddd2;
  --green: #3f6f54;
  --green-dark: #244c37;
  --gold: #d9a441;
  --blue: #587c9f;
  --rose: #c06f5d;
  --shadow: 0 18px 45px rgba(42, 49, 40, 0.13);
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(88, 124, 159, 0.12), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

body.cms-loading .site-header,
body.cms-loading main,
body.cms-loading footer {
  opacity: 0;
}

a {
  color: inherit;
}

.cms-status {
  display: none;
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: none;
  border-bottom: 1px solid rgba(223, 221, 210, 0.72);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  padding: 0.85rem max(1rem, calc((100vw - 1120px) / 2));
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}

.brand-logo rect {
  fill: var(--green-dark);
}

.brand-logo path {
  fill: none;
  stroke: white;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-logo circle {
  fill: white;
}

nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.82fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: 2.5rem 0 4rem;
}

.hero-copy h1,
.intro h2,
.section-heading h2,
.contact h2,
.portrait-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7.2vw, 5.4rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--green-dark);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.hero-note {
  max-width: 34rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.portrait-panel {
  display: grid;
  gap: 1.2rem;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  object-fit: cover;
}

.portrait-panel h2 {
  font-size: 2rem;
}

.portrait-panel p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid var(--line);
  padding: 4rem 0;
}

.intro h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.intro p,
.section-heading p,
.contact p,
.about-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-band {
  border-block: 1px solid var(--line);
  padding: 2rem 0;
}

.about-band p {
  max-width: 58rem;
}

section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.7rem;
}

.section-heading p:not(.eyebrow) {
  margin-top: 0.9rem;
}

.fix-grid,
.offer-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.fix-grid {
  grid-template-columns: repeat(3, 1fr);
}

.fix-card,
.offer-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 1.15rem;
}

.fix-card h3,
.offer-card h3,
.faq-item h3 {
  margin: 0;
  font-size: 1.05rem;
}

.fix-card p,
.offer-card p,
.faq-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.step-list {
  display: grid;
  gap: 0.8rem;
}

.step-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.step-number {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green-dark) 82%, #17324e);
  color: white;
  font-weight: 750;
}

.step-item h3 {
  margin: 0;
}

.step-item p {
  max-width: 42rem;
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.quote-section {
  padding-block: 3rem;
}

blockquote {
  margin: 0;
  border-left: 0.45rem solid var(--rose);
  padding-left: 1.2rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.offer-grid {
  grid-template-columns: repeat(2, 1fr);
}

.offer-card {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
}

.price {
  margin: 0.4rem 0 0;
  color: var(--green-dark);
  font-size: 2rem;
  font-weight: 750;
}

.offer-card ul {
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.faq-list {
  grid-template-columns: repeat(2, 1fr);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-block: 1px solid var(--line);
  padding-block: 5.25rem;
}

.contact div {
  max-width: 42rem;
}

.contact p {
  margin-top: 1rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

footer a {
  color: inherit;
  font-weight: 650;
  text-decoration: none;
}

footer a:hover {
  color: var(--green-dark);
}

@media (max-width: 820px) {
  .intro,
  .contact,
  footer {
    display: block;
  }

  .site-header {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.7rem;
    padding: 0.8rem 1rem;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 1.9rem;
    height: 1.9rem;
  }

  nav {
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
    gap: 0.58rem;
    margin-top: 0;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .brand span {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.4rem;
    padding: 1.2rem 0 3rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 11.5vw, 3.65rem);
  }

  .hero-text {
    margin-top: 1rem;
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-note {
    display: none;
  }

  .portrait-panel {
    grid-template-columns: 5.8rem 1fr;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem;
  }

  .portrait-panel img {
    width: 5.8rem;
  }

  .portrait-panel h2 {
    font-size: 1.55rem;
  }

  .portrait-panel p {
    font-size: 0.92rem;
  }

  .fix-grid,
  .offer-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .intro p {
    margin-top: 1rem;
  }

  .contact .button {
    margin-top: 1.2rem;
  }

  footer span {
    display: block;
    margin-top: 0.35rem;
  }
}
