:root {
  --salmon: #fa8078;
  --silver: #c0c0c0;
  --paper: #faf7f2;
  --ink: #151312;
  --muted: #5f5750;
  --line: rgba(21, 19, 18, 0.16);
  --line-light: rgba(255, 255, 255, 0.44);
  --glass: rgba(250, 247, 242, 0.64);
  --glass-strong: rgba(250, 247, 242, 0.78);
  --shadow: 0 24px 70px rgba(21, 19, 18, 0.18);
  --shadow-tight: 0 12px 32px rgba(21, 19, 18, 0.16);
  --burgundy: #7b2b3d;
  --green: #405a48;
  --blue: #365f70;
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--ink);
  background:
    linear-gradient(130deg, rgba(250, 128, 120, 0.86) 0%, rgba(250, 128, 120, 0.2) 35%, transparent 36%),
    linear-gradient(245deg, rgba(192, 192, 192, 0.96), rgba(250, 247, 242, 0.92) 54%, rgba(64, 90, 72, 0.24)),
    var(--silver);
  overflow-x: hidden;
}

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

a,
button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.texture {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.38), transparent 18%),
    radial-gradient(circle at 90% 2%, rgba(54, 95, 112, 0.2), transparent 20%),
    repeating-linear-gradient(0deg, rgba(21, 19, 18, 0.035) 0 1px, transparent 1px 5px);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(calc(100% - 32px), 1180px);
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(250, 247, 242, 0.62);
  box-shadow: 0 16px 50px rgba(21, 19, 18, 0.12);
  backdrop-filter: blur(18px) saturate(135%);
  transform: translateX(-50%);
}

.brand-link {
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

main {
  width: 100%;
}

.price-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 56px;
  width: min(100%, 1180px);
  min-height: 92svh;
  margin: 0 auto;
  padding: 128px 24px 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(21, 19, 18, 0.58);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 900;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(21, 19, 18, 0.82);
  font-size: 24px;
  line-height: 1.34;
}

.portrait-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(250, 247, 242, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  aspect-ratio: 4 / 5.45;
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(21, 19, 18, 0.32), transparent);
  pointer-events: none;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section,
.lead-section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.services-section {
  display: grid;
  gap: 14px;
}

.service-card,
.lead-section {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(16px) saturate(135%);
}

.service-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.service-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.service-head h2 {
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
}

.service-price-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  max-width: 100%;
  min-height: 39px;
  padding: 10px 12px;
  border: 1px solid rgba(21, 19, 18, 0.18);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(21, 19, 18, 0.12);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-price-button:hover,
.service-price-button:focus-visible {
  background: var(--burgundy);
  border-color: rgba(123, 43, 61, 0.44);
  box-shadow: 0 14px 28px rgba(21, 19, 18, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.service-card.is-selected {
  border-color: rgba(123, 43, 61, 0.34);
  background: rgba(250, 247, 242, 0.78);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-meta .tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.tag-format {
  border-color: rgba(54, 95, 112, 0.3);
  background: rgba(54, 95, 112, 0.12);
  color: #244b59;
}

.tag-time {
  border-color: rgba(250, 128, 120, 0.38);
  background: rgba(250, 128, 120, 0.16);
  color: #7b2b3d;
}

.tag-context {
  border-color: rgba(21, 19, 18, 0.12);
  background: rgba(250, 247, 242, 0.72);
  color: rgba(21, 19, 18, 0.72);
}

.service-card h3 {
  color: rgba(21, 19, 18, 0.78);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(21, 19, 18, 0.78);
  font-size: 16px;
  line-height: 1.46;
}

.service-card li {
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 80px;
  padding: 28px;
}

.lead-copy h2 {
  font-size: 36px;
  line-height: 1.04;
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.lead-form label span {
  color: rgba(21, 19, 18, 0.66);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: var(--radius);
  padding: 0 13px;
  background: rgba(250, 247, 242, 0.72);
  color: var(--ink);
  outline: none;
}

.lead-form select {
  appearance: none;
  padding-right: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-label {
  position: relative;
}

.select-label::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(21, 19, 18, 0.72);
  border-bottom: 2px solid rgba(21, 19, 18, 0.72);
  pointer-events: none;
  transform: rotate(45deg);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(123, 43, 61, 0.56);
  box-shadow: 0 0 0 3px rgba(123, 43, 61, 0.12);
}

.lead-form button {
  grid-column: 1 / -1;
  min-height: 48px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.lead-form button:hover,
.lead-form button:focus-visible {
  background: var(--burgundy);
  transform: translateY(-1px);
}

.lead-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: rgba(21, 19, 18, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--burgundy);
}

.form-status.is-success {
  color: var(--green);
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    min-height: 44px;
  }

  .price-hero,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .price-hero {
    min-height: auto;
    gap: 34px;
    padding: 128px 18px 56px;
  }

  h1 {
    font-size: 56px;
  }

  .lead {
    font-size: 21px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 42px;
    padding: 0 14px;
  }

  .brand-link {
    font-size: 12px;
  }

  .price-hero {
    padding: 104px 14px 46px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .services-section,
  .lead-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-card,
  .lead-section {
    padding: 18px;
  }

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

  .service-head h2 {
    font-size: 24px;
  }

  .service-price-button {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
  }

  .lead-copy h2 {
    font-size: 28px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}
