:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #67645e;
  --line: #d9d3c7;
  --paper: #efebe3;
  --panel: #fbf8f0;
  --stone: #252525;
  --moss: #475448;
  --brass: #b08958;
  --sage: #dbe5d5;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

main {
  overflow: hidden;
}

section {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 74px);
}

.hero {
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.04), rgba(71, 84, 72, 0.16)),
    linear-gradient(90deg, rgba(176, 137, 88, 0.16), transparent 36%),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--stone);
  font-size: 14px;
}

nav strong {
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(286px, 418px);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

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

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

h1 {
  max-width: 860px;
  font-size: 84px;
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  max-width: 780px;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.intro,
.panel p,
article p,
.step p {
  color: var(--muted);
  line-height: 1.65;
}

.intro {
  max-width: 680px;
  font-size: 20px;
}

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

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

.primary {
  background: var(--stone);
  color: var(--white);
}

.primary:hover,
.primary:focus-visible {
  background: var(--moss);
}

.secondary {
  color: var(--stone);
  background: rgba(255, 253, 248, 0.7);
}

.secondary:hover,
.secondary:focus-visible {
  border-color: var(--brass);
  color: var(--moss);
}

.phone {
  position: relative;
  padding: 18px;
  border: 1px solid var(--stone);
  border-radius: 30px;
  background: linear-gradient(145deg, #171717, #2b2a25);
  box-shadow: 0 24px 80px rgba(37, 37, 37, 0.24);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(219, 229, 213, 0.18);
  border-radius: 22px;
  pointer-events: none;
}

.phone-top {
  display: flex;
  gap: 6px;
  margin: 4px 0 20px;
}

.phone-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.9;
}

.step {
  position: relative;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--white);
  animation: rise 700ms ease both;
}

.step:nth-child(3) {
  animation-delay: 120ms;
}

.step:nth-child(4) {
  animation-delay: 240ms;
}

.step small {
  color: var(--moss);
  font-weight: 850;
  text-transform: uppercase;
}

.step strong {
  display: block;
  margin: 8px 0;
  color: var(--stone);
}

.studio-band {
  background: var(--stone);
  color: var(--white);
  padding-block: 34px;
}

.studio-band p {
  color: rgba(255, 253, 248, 0.7);
  margin-bottom: 18px;
}

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

.chips span {
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 253, 248, 0.06);
}

.fit {
  background: var(--paper);
}

.section-head {
  max-width: 940px;
  margin-bottom: 34px;
}

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

article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
}

article span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--brass);
  font-weight: 900;
}

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  background: var(--sage);
  border-block: 1px solid var(--line);
}

.panel {
  max-width: 780px;
}

.crm-card {
  background: var(--white);
  border: 1px solid rgba(37, 37, 37, 0.16);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(37, 37, 37, 0.12);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.row span {
  color: var(--muted);
}

.row strong {
  text-align: right;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: var(--panel);
}

.questions {
  display: grid;
  gap: 12px;
}

.questions button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--stone);
  padding: 18px 20px;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(176, 137, 88, 0.45);
  outline-offset: 3px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  nav,
  .hero-grid,
  .whatsapp,
  .faq {
    grid-template-columns: 1fr;
  }

  nav {
    align-items: flex-start;
  }

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

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

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  article {
    min-height: auto;
  }

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

@media (max-width: 520px) {
  section {
    padding-inline: 16px;
  }

  nav {
    display: grid;
    gap: 6px;
  }

  nav span {
    text-align: left;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .intro {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .phone {
    border-radius: 24px;
  }

  .row {
    display: grid;
    gap: 4px;
  }

  .row strong {
    text-align: left;
  }
}
