:root {
  color-scheme: light;
  --ink: #161613;
  --muted: #666157;
  --line: #d9d1c3;
  --paper: #f7f2e8;
  --soft: #eee5d6;
  --green: #28483a;
  --terracotta: #a45b3b;
  --cream: #fffaf0;
}

* {
  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 {
  color: inherit;
}

button,
a {
  cursor: pointer;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 92svh;
  padding: 26px clamp(18px, 4vw, 56px) 54px;
  background:
    linear-gradient(115deg, rgba(22, 22, 19, 0.08), transparent 34%),
    linear-gradient(180deg, #fbf7ee 0%, var(--paper) 100%);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 44px;
  font-size: 0.86rem;
}

nav strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0;
}

nav span {
  color: var(--muted);
  text-align: right;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  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 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.94;
}

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

.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(--ink);
  padding: 13px 18px;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  background: var(--ink);
  color: var(--cream);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

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

.phone {
  width: min(100%, 390px);
  justify-self: end;
  border: 1px solid #24231f;
  border-radius: 28px;
  padding: 18px;
  background: #171814;
  box-shadow: 0 28px 80px rgba(28, 23, 18, 0.22);
}

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

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

.step {
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 240, 0.055);
  color: var(--cream);
}

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

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

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

.step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: inherit;
  font-size: 0.91rem;
  line-height: 1.55;
  opacity: 0.82;
}

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

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

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

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

.fit,
.flow,
.faq {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-head,
.fit-grid,
.flow,
.faq {
  max-width: 1180px;
  margin-inline: auto;
}

.section-head {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4.8vw, 4.2rem);
  line-height: 1;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

article {
  min-height: 250px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  background: rgba(255, 250, 240, 0.45);
}

article span {
  display: block;
  margin-bottom: 52px;
  color: var(--terracotta);
  font-weight: 800;
}

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

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

.flow {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(290px, 0.65fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: stretch;
  background: var(--green);
  color: var(--cream);
}

.flow .panel {
  display: grid;
  align-content: center;
  min-height: 360px;
}

.flow .eyebrow {
  color: #e0ad8c;
}

.flow .panel p {
  max-width: 590px;
  color: rgba(255, 250, 240, 0.72);
}

.flow h2 {
  margin-bottom: 22px;
}

.crm-card {
  align-self: center;
  border: 1px solid rgba(255, 250, 240, 0.2);
  background: rgba(255, 250, 240, 0.08);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 20px;
}

.row + .row {
  border-top: 1px solid rgba(255, 250, 240, 0.16);
}

.row span {
  color: rgba(255, 250, 240, 0.64);
}

.row strong {
  text-align: right;
  font-weight: 700;
}

.faq {
  text-align: center;
}

.faq h2 {
  max-width: 850px;
  margin-inline: auto;
  margin-bottom: 26px;
}

.questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
}

.questions button {
  min-height: 74px;
  border: 1px solid var(--line);
  padding: 16px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.questions button:hover,
.questions button:focus-visible {
  border-color: var(--terracotta);
  background: #f3e5d4;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 840px) {
  .hero {
    min-height: auto;
  }

  nav,
  .studio-band,
  .section-head,
  .flow {
    grid-template-columns: 1fr;
  }

  nav {
    align-items: flex-start;
  }

  nav span {
    text-align: left;
  }

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

  .phone {
    justify-self: stretch;
    width: 100%;
  }

  article {
    min-height: 0;
  }

  article span {
    margin-bottom: 28px;
  }

  .flow .panel {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 20px;
  }

  h1 {
    font-size: 3rem;
  }

  .actions,
  .button {
    width: 100%;
  }

  .row {
    display: block;
  }

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