:root {
  --black: #050403;
  --ink: #f9efe1;
  --muted: #c6b8a6;
  --dim: #8f7d68;
  --panel: #11100d;
  --panel-soft: #17130f;
  --line: rgba(230, 180, 97, 0.18);
  --gold: #e3b35e;
  --amber: #c87b32;
  --wood: #9d5627;
  --wine: #8b2d3d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 123, 50, 0.16), transparent 34rem),
    linear-gradient(90deg, rgba(227, 179, 94, 0.035) 1px, transparent 1px) 0 0 / 42px 100%,
    linear-gradient(rgba(227, 179, 94, 0.032) 1px, transparent 1px) 0 0 / 100% 42px,
    var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 16px 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  color: var(--ink);
  background: rgba(5, 4, 3, 0.62);
  border: 1px solid rgba(227, 179, 94, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  line-height: 1;
}

.brand-text span {
  color: rgba(249, 239, 225, 0.6);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(249, 239, 225, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.header-action,
.button,
.contact-links a,
.footer a {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav a:hover,
.footer a:hover,
.contact-links a:hover {
  color: var(--gold);
}

.header-action {
  flex: 0 0 auto;
  padding: 11px 18px;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.header-action:hover,
.button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(227, 179, 94, 0.24);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(249, 239, 225, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 42%, rgba(227, 179, 94, 0.12), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0.84) 64%, #050403 100%),
    linear-gradient(0deg, #050403 0%, rgba(5, 4, 3, 0) 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 74px;
  color: var(--ink);
}

.hero-content > * {
  width: min(560px, 100%);
  margin-left: auto;
}

.eyebrow,
.section-kicker {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy {
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(249, 239, 225, 0.78);
  font-size: 20px;
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.button.primary {
  color: var(--black);
  background: var(--gold);
}

.button.secondary {
  color: var(--ink);
  background: rgba(249, 239, 225, 0.08);
  border: 1px solid rgba(227, 179, 94, 0.28);
}

.button.secondary:hover {
  background: rgba(249, 239, 225, 0.12);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 40px;
}

.hero-facts div {
  min-height: 88px;
  padding: 17px;
  color: var(--ink);
  background: rgba(249, 239, 225, 0.07);
  border: 1px solid rgba(227, 179, 94, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero-facts strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.hero-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(249, 239, 225, 0.68);
  font-size: 14px;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 40px));
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(249, 239, 225, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-strip div {
  min-height: 118px;
  padding: 24px;
  background: rgba(17, 16, 13, 0.82);
}

.trust-strip span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.trust-strip p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: 78px;
  align-items: start;
}

.intro-copy {
  display: grid;
  align-content: start;
}

.intro h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.intro-copy > p,
.contact-copy p {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.74;
}

.intro-copy > p + p {
  margin-top: 18px;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(249, 239, 225, 0.08), rgba(249, 239, 225, 0.035)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 43%;
}

.about-photo figcaption {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
}

.lesson-grid,
.program-grid,
.price-grid,
.review-grid,
.credential-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.lesson-card,
.program-card,
.price-card,
blockquote,
.credential-card,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(249, 239, 225, 0.075), rgba(249, 239, 225, 0.035)),
    var(--panel);
  box-shadow: 0 1px 0 rgba(249, 239, 225, 0.08) inset;
}

.lesson-card {
  min-height: 246px;
  padding: 24px;
}

.program-grid {
  grid-template-columns: repeat(3, 1fr);
}

.program-card {
  min-height: 178px;
  padding: 24px;
}

.program-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--dim);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.reveal-card {
  transform: translateY(14px);
  opacity: 0.76;
  transition:
    transform 520ms ease,
    opacity 520ms ease,
    border-color 520ms ease,
    background 520ms ease,
    box-shadow 520ms ease,
    color 520ms ease;
}

.reveal-card.is-visible {
  transform: translateY(0);
  opacity: 1;
  border-color: rgba(227, 179, 94, 0.48);
  background:
    linear-gradient(145deg, rgba(227, 179, 94, 0.18), rgba(249, 239, 225, 0.055)),
    var(--panel-soft);
  box-shadow:
    0 0 0 1px rgba(227, 179, 94, 0.08) inset,
    0 22px 58px rgba(0, 0, 0, 0.34);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.lesson-card h3,
.timeline-item h3,
.price-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.lesson-card p,
.program-card p,
.timeline-item p,
.price-card p,
blockquote p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.format {
  padding-top: 34px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  min-height: 210px;
  padding: 28px 24px 0 0;
}

.timeline-item.reveal-card {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 28px 24px 20px 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(227, 179, 94, 0.45);
}

.timeline-item span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
}

.quote-band {
  position: relative;
  padding: 96px 20px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(227, 179, 94, 0.1) 1px, transparent 1px) 0 0 / 48px 100%,
    linear-gradient(rgba(227, 179, 94, 0.08) 1px, transparent 1px) 0 0 / 100% 48px,
    linear-gradient(135deg, #150f0a, #0a0908);
  border-block: 1px solid var(--line);
}

.quote-band::before {
  content: "𝄞";
  position: absolute;
  left: max(20px, calc((100% - 1160px) / 2));
  top: 26px;
  color: rgba(227, 179, 94, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 132px;
  line-height: 1;
}

.quote-band p {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  min-height: 252px;
  padding: 28px;
}

.price-value {
  margin: 26px 0 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
}

.price-card.is-visible .price-value,
.program-card.is-visible span,
.timeline-item.is-visible span,
.lesson-card.is-visible h3,
.credential-card.is-visible h3,
.faq-grid article.is-visible h3 {
  color: var(--gold);
}

.badge {
  display: inline-block;
  margin: 0 0 20px;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.credential-grid {
  grid-template-columns: repeat(3, 1fr);
}

.credential-card {
  min-height: 420px;
  padding: 18px;
}

.credential-photo {
  display: grid;
  min-height: 250px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px dashed rgba(227, 179, 94, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(227, 179, 94, 0.08), rgba(249, 239, 225, 0.035)),
    rgba(5, 4, 3, 0.18);
}

.credential-photo span {
  color: rgba(249, 239, 225, 0.55);
  font-weight: 900;
}

.credential-card h3,
.faq-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.credential-card p,
.faq-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid article {
  min-height: 196px;
  padding: 24px;
}

blockquote {
  min-height: 176px;
  margin: 0;
  padding: 30px;
}

blockquote p {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.34;
}

blockquote cite {
  display: block;
  margin-top: 20px;
  color: var(--dim);
  font-style: normal;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 72px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 58px;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(227, 179, 94, 0.13), transparent 28rem),
    linear-gradient(145deg, rgba(249, 239, 225, 0.08), rgba(249, 239, 225, 0.035)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-copy p {
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-links a {
  width: fit-content;
  color: var(--gold);
  border-bottom: 1px solid rgba(227, 179, 94, 0.34);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.45;
}

.form-note.is-success {
  color: #e2c984;
}

.form-note.is-error {
  color: #ffb5be;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(227, 179, 94, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(249, 239, 225, 0.08);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(198, 184, 166, 0.58);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(227, 179, 94, 0.68);
  box-shadow: 0 0 0 3px rgba(227, 179, 94, 0.1);
}

.contact-form option {
  color: var(--black);
}

.contact-form button {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.contact-form button:hover {
  background: #f0c46f;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--dim);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    border-radius: 20px;
  }

  .nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    color: var(--ink);
    background: rgba(5, 4, 3, 0.94);
    border: 1px solid rgba(227, 179, 94, 0.24);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(249, 239, 225, 0.08);
  }

  .menu-toggle {
    display: grid;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 880px;
    align-items: end;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #050403 0%, rgba(5, 4, 3, 0.72) 42%, rgba(5, 4, 3, 0.18) 100%);
  }

  .hero-content > * {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro h2,
  .section-heading h2,
  .contact h2 {
    font-size: 42px;
  }

  .intro-copy > p,
  .contact-copy p {
    font-size: 18px;
  }

  .lesson-grid,
  .program-grid,
  .timeline,
  .price-grid,
  .credential-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-band p {
    font-size: 40px;
  }

  .contact {
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px 9px;
    gap: 10px;
  }

  .brand-text span {
    display: none;
  }

  .brand {
    gap: 8px;
    font-size: 14px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .brand span:last-child {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    height: 100%;
    object-position: 31% center;
    opacity: 0.9;
  }

  .hero-content {
    width: min(100% - 24px, 1160px);
    padding: 168px 0 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
    font-size: 14px;
  }

  .button.secondary {
    display: none;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-facts div {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
  }

  .hero-facts strong {
    flex: 0 0 auto;
    font-size: 17px;
  }

  .hero-facts span {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.25;
    text-align: right;
  }

  .section {
    width: calc(100% - 28px);
    padding: 54px 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-top: -18px;
  }

  .trust-strip div {
    min-height: auto;
    padding: 18px;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .intro h2,
  .section-heading h2,
  .contact h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .intro-copy > p,
  .contact-copy p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .section-heading {
    display: block;
  }

  .lesson-grid,
  .program-grid,
  .timeline,
  .price-grid,
  .review-grid,
  .credential-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lesson-grid,
  .price-grid,
  .review-grid {
    gap: 12px;
  }

  .lesson-card,
  .program-card,
  .price-card,
  blockquote,
  .credential-card,
  .faq-grid article {
    min-height: auto;
  }

  .lesson-card,
  .program-card,
  .price-card,
  .credential-card,
  .faq-grid article {
    padding: 20px;
  }

  .credential-photo {
    min-height: 180px;
  }

  .card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
  }

  .lesson-card h3,
  .timeline-item h3,
  .price-card h3 {
    font-size: 20px;
  }

  .timeline {
    border-top: 0;
    margin-top: 28px;
  }

  .timeline-item {
    min-height: 0;
    padding: 0 0 30px 34px;
    border-left: 1px solid var(--line);
  }

  .timeline-item.reveal-card {
    padding: 18px 18px 20px 28px;
    border-left: 1px solid var(--line);
  }

  .timeline-item::before {
    top: 0;
    left: -5px;
  }

  .quote-band {
    padding: 52px 18px;
  }

  .quote-band::before {
    top: 14px;
    font-size: 82px;
  }

  .quote-band p {
    font-size: 28px;
    line-height: 1.22;
  }

  blockquote {
    padding: 24px;
  }

  blockquote p {
    font-size: 21px;
  }

  .price-value {
    margin-top: 18px;
    font-size: 44px;
  }

  .contact {
    width: calc(100% - 24px);
    margin-bottom: 46px;
    padding: 28px 18px;
  }

  .contact-form {
    gap: 13px;
  }

  .contact-form label {
    gap: 7px;
    font-size: 13px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    padding: 12px 13px;
    font-size: 15px;
  }

  .contact-form textarea {
    min-height: 118px;
  }

  .footer {
    display: grid;
    width: calc(100% - 28px);
  }
}
