:root {
  color-scheme: light;
  --ink: #171411;
  --muted: #6b6257;
  --line: #ddd2c0;
  --paper: #f5efe4;
  --panel: #fffaf0;
  --olive: #41513f;
  --umber: #9b6040;
  --charcoal: #22201b;
  --chalk: #fff9ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a,
button {
  color: inherit;
  cursor: pointer;
}

main {
  overflow: hidden;
}

section {
  padding: clamp(50px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(115deg, rgba(65, 81, 63, 0.14), transparent 42%),
    linear-gradient(180deg, #fffaf0 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 42px;
  color: var(--charcoal);
  font-size: 14px;
}

nav strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

nav span {
  max-width: 320px;
  color: var(--muted);
  text-align: right;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(286px, 390px);
  align-items: center;
  gap: clamp(30px, 7vw, 86px);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--umber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.8vw, 6.6rem);
  line-height: 0.95;
}

.intro {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  padding: 13px 18px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary {
  background: var(--charcoal);
  color: var(--chalk);
}

.button.secondary {
  background: transparent;
}

.button:hover,
.button:focus-visible {
  border-color: var(--umber);
  background: var(--umber);
  color: var(--chalk);
}

.phone {
  width: min(100%, 390px);
  justify-self: end;
  border: 1px solid rgba(23, 20, 17, 0.2);
  border-radius: 28px;
  padding: 18px;
  background: #1b1b17;
  box-shadow: 0 26px 80px rgba(32, 28, 22, 0.22);
}

.phone-top {
  display: flex;
  gap: 6px;
  padding: 8px 4px 16px;
}

.phone-top span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #eadfcf;
  opacity: 0.55;
}

.step {
  border: 1px solid rgba(255, 249, 238, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 249, 238, 0.06);
  color: var(--chalk);
}

.step + .step {
  margin-top: 12px;
}

.step.active {
  background: #eadcc8;
  color: var(--ink);
}

.step small {
  display: block;
  margin-bottom: 8px;
  color: var(--umber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step strong {
  display: block;
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.84;
}

.studio-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
  background: #fff8ea;
}

.studio-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chips span {
  border: 1px solid var(--line);
  padding: 9px 11px;
  background: var(--panel);
  font-size: 0.86rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 1;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

article {
  min-height: 245px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--panel);
}

article span {
  display: block;
  margin-bottom: 54px;
  color: var(--umber);
  font-weight: 850;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

article p,
.panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  background: var(--olive);
  color: var(--chalk);
}

.flow .eyebrow {
  color: #e0c19d;
}

.panel p {
  max-width: 610px;
  color: rgba(255, 249, 238, 0.78);
}

.crm-card {
  border: 1px solid rgba(255, 249, 238, 0.22);
  background: rgba(255, 249, 238, 0.08);
  padding: 10px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 249, 238, 0.16);
  padding: 18px;
}

.row:last-child {
  border-bottom: 0;
}

.row span {
  color: rgba(255, 249, 238, 0.66);
}

.row strong {
  max-width: 220px;
  text-align: right;
}

.faq {
  background: var(--panel);
}

.faq h2 {
  max-width: 820px;
  margin-bottom: 28px;
}

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

.questions button {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 18px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  text-align: left;
}

@media (max-width: 860px) {
  .hero-grid,
  .studio-band,
  .section-head,
  .flow,
  .questions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  nav {
    padding-bottom: 34px;
  }

  nav span {
    max-width: 180px;
  }

  .phone {
    justify-self: start;
  }

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

  article {
    min-height: 0;
  }

  article span {
    margin-bottom: 28px;
  }
}

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

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .row {
    display: block;
  }

  .row strong {
    display: block;
    max-width: none;
    margin-top: 6px;
    text-align: left;
  }
}
