:root {
  --ink: #332522;
  --ink-strong: #241614;
  --muted: #75655f;
  --line: #e8d9cd;
  --paper: #f7efe7;
  --white: #fffaf4;
  --wine: #9f3048;
  --wine-dark: #7a2438;
  --rose: #c56a7c;
  --gold: #b7894a;
  --shadow: 0 22px 60px rgba(122, 36, 56, 0.15);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbf4ec;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(255, 250, 244, 0.95);
  border-bottom: 1px solid rgba(232, 217, 205, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--ink-strong);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--wine-dark);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
}

.section,
.hero,
.resource-band,
.contact-section {
  padding: 88px 5vw;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
}

.section-band {
  background:
    linear-gradient(135deg, rgba(122, 36, 56, 0.95), rgba(54, 30, 28, 0.88)),
    linear-gradient(45deg, #9f3048, #f7efe7);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 72px);
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f1c7b4;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  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: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--ink-strong);
  color: var(--white);
  background: var(--wine);
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 250, 244, 0.44);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.outcome-panel {
  display: grid;
  gap: 12px;
  width: min(92%, 430px);
  margin: -64px auto 0;
  padding: 18px;
  position: relative;
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid rgba(247, 239, 231, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.outcome-panel div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-panel div:last-child {
  border-bottom: 0;
}

.outcome-panel span {
  color: var(--wine);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.resource-band p,
.contact-section p {
  color: var(--muted);
}

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

.fit-grid article,
.service-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fit-grid article {
  border-top: 4px solid var(--wine);
}

.section-muted {
  max-width: none;
  background: var(--paper);
}

.section-muted > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 250px;
}

.service-tag {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.process-list span {
  color: var(--ink-strong);
  font-weight: 900;
}

.resource-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: 44px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.resource-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signup-form,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-strong);
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c8d3dc;
  border-radius: var(--radius);
  font: inherit;
}

input:focus,
textarea:focus,
.button:focus,
.nav-toggle:focus {
  outline: 3px solid rgba(123, 31, 52, 0.28);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--wine);
  font-weight: 750;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 40px;
  align-items: center;
}

.quote-panel {
  padding: 32px;
  color: var(--white);
  background: var(--wine-dark);
  border-radius: var(--radius);
}

.quote-panel p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35;
}

.contact-section {
  color: var(--white);
  background: var(--wine-dark);
  max-width: none;
}

.contact-section > * {
  max-width: 560px;
}

.contact-section .contact-form {
  color: var(--ink);
  background: var(--white);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 5vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 16px;
  }

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

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 5vw;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .hero,
  .resource-band,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section,
  .hero,
  .resource-band,
  .contact-section {
    padding: 64px 22px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
  }

  .outcome-panel {
    width: 100%;
    margin-top: 18px;
  }

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

  .fit-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
  }
}
