@font-face {
  font-family: "Onest";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./assets/onest-cyrillic.woff2") format("woff2-variations");
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./assets/onest-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("./assets/prata-cyrillic.woff2") format("woff2");
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("./assets/prata-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --ink: #090c0c;
  --ink-soft: #111515;
  --paper: #f2eee7;
  --muted: #aaa8a3;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.42);
  --orange: #f04b34;
  --amber: #f2a12d;
  --gradient: linear-gradient(105deg, #f04435 0%, #f2603d 55%, #f2a42f 100%);
  --font-display: "Prata", Georgia, "Times New Roman", serif;
  --font-ui: "Onest", "Segoe UI", Arial, sans-serif;
  --hero-image: url("/assets/domus-hero.webp");
  --tour-image: url("/assets/domus-tour.webp");
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.site-shell {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  display: grid;
  grid-template-rows: clamp(70px, 7.5vh, 82px) minmax(0, 1fr) clamp(82px, 9.7vh, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 40%, rgba(68, 47, 37, 0.14), transparent 28%),
    var(--ink);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(480px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-width: 0;
  padding: 0 clamp(26px, 3.1vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 11, 11, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  border-radius: 4px;
  outline-offset: 6px;
}

.brand-crop {
  position: relative;
  display: block;
  width: clamp(150px, 10.2vw, 168px);
  height: clamp(46px, 5.3vh, 52px);
  overflow: hidden;
}

.brand-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.7vw, 44px);
  min-width: 0;
}

.site-nav a {
  position: relative;
  color: #c8c5bf;
  font-size: 14px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #f8f5ef;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.modal-close:focus-visible,
input:focus-visible,
textarea:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.button--compact {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.button--primary {
  border-color: #f45a3e;
  background: var(--gradient);
  box-shadow: 0 12px 36px rgba(222, 61, 38, 0.18);
}

.button--primary:hover {
  box-shadow: 0 15px 40px rgba(222, 61, 38, 0.3);
}

.button--outline {
  border-color: var(--line-strong);
  background: rgba(8, 12, 12, 0.38);
}

.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
}

.button--accent-outline {
  border-color: transparent;
  background:
    linear-gradient(var(--ink-soft), var(--ink-soft)) padding-box,
    var(--gradient) border-box;
}

.button--accent-outline:hover {
  background:
    linear-gradient(rgba(45, 25, 19, 0.97), rgba(45, 25, 19, 0.97)) padding-box,
    var(--gradient) border-box;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(510px, 49%) minmax(0, 1fr);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 5.2vh, 56px) clamp(34px, 3.8vw, 64px) clamp(28px, 4.3vh, 48px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 106px 100%,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 106px,
    linear-gradient(90deg, rgba(8, 12, 12, 0.99) 72%, rgba(8, 12, 12, 0.91) 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 22px;
  left: 5%;
  height: 55px;
  border-top: 1px solid rgba(191, 196, 190, 0.12);
  border-left: 1px solid rgba(191, 196, 190, 0.08);
  clip-path: polygon(0 72%, 12% 72%, 12% 30%, 28% 30%, 28% 60%, 46% 60%, 46% 12%, 68% 12%, 68% 52%, 86% 52%, 86% 24%, 100% 24%, 100% 100%, 0 100%);
  background: rgba(185, 190, 183, 0.055);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 clamp(14px, 2vh, 21px);
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: #eeeae3;
  font-family: var(--font-display);
  font-size: clamp(42px, 3.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.hero-description {
  max-width: 630px;
  margin: clamp(17px, 2.4vh, 26px) 0 0;
  color: #aaa8a3;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.5;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 700px);
  margin-top: clamp(20px, 2.8vh, 30px);
}

.hero-actions .button {
  padding-inline: 15px;
}

.hero-image {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 10, 10, 0.5) 0%, transparent 32%),
    linear-gradient(180deg, rgba(8, 10, 10, 0.05) 68%, rgba(8, 10, 10, 0.3) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 55%, rgba(255, 255, 255, 0.07) 55% 55.15%, transparent 55.15%),
    linear-gradient(transparent 0 66%, rgba(255, 255, 255, 0.07) 66% 66.18%, transparent 66.18%);
  opacity: 0.34;
}

.blueprint {
  position: absolute;
  z-index: 2;
  display: block;
  border: 1px solid rgba(232, 230, 219, 0.32);
  pointer-events: none;
}

.blueprint::before,
.blueprint::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(232, 230, 219, 0.24);
}

.blueprint--one {
  top: 11%;
  right: -3%;
  width: 52%;
  height: 34%;
}

.blueprint--one::before {
  top: 18%;
  right: 8%;
  width: 62%;
  height: 54%;
}

.blueprint--one::after {
  top: 54%;
  left: -40%;
  width: 68%;
  height: 88%;
}

.blueprint--two {
  right: 2%;
  bottom: 4%;
  width: 28%;
  height: 26%;
}

.blueprint--two::before {
  right: 22%;
  bottom: 26%;
  width: 112%;
  height: 76%;
}

.blueprint--two::after {
  right: 10%;
  bottom: 10%;
  width: 42%;
  height: 130%;
}

.proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  padding: 0 clamp(42px, 8vw, 132px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 11, 11, 0.97);
}

.proof-strip article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.4vw, 21px);
  min-width: 0;
  color: #aaa8a3;
}

.proof-strip article + article::before {
  content: "";
  position: absolute;
  top: 34%;
  bottom: 34%;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.proof-strip span {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  font-size: clamp(25px, 1.8vw, 29px);
  font-weight: 300;
  line-height: 1;
}

.proof-strip p {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 6, 6, 0.82);
  backdrop-filter: blur(8px);
  animation: fade-in 180ms ease both;
}

.lead-modal {
  position: relative;
  width: min(100%, 930px);
  max-height: calc(100svh - 48px);
  display: grid;
  grid-template-columns: minmax(285px, 39%) 1fr;
  overflow: auto;
  border: 1px solid rgba(237, 231, 218, 0.38);
  border-radius: 7px;
  background: linear-gradient(135deg, #111616, #0c1111);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.62);
  animation: modal-in 220ms ease both;
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 15px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(4, 8, 8, 0.64);
  color: #f5f1e9;
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.modal-visual {
  position: relative;
  min-height: 620px;
  background-image: linear-gradient(180deg, rgba(4, 6, 6, 0.02), rgba(4, 6, 6, 0.52)), var(--tour-image);
  background-position: center;
  background-size: cover;
}

.lead-modal--project .modal-visual {
  background-image: linear-gradient(180deg, rgba(4, 6, 6, 0.08), rgba(4, 6, 6, 0.66)), var(--hero-image);
  background-position: 60% center;
}

.modal-visual__label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: rgba(7, 10, 10, 0.78);
  color: #d6d2ca;
  font-size: 12px;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.modal-content {
  min-width: 0;
  padding: 38px 28px 22px;
}

.modal-content .eyebrow {
  margin-bottom: 12px;
  font-size: 10px;
}

.modal-content h2 {
  margin: 0;
  color: #f0ece5;
  font-family: var(--font-display);
  font-size: clamp(29px, 2.45vw, 39px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.modal-intro {
  margin: 14px 0 0;
  color: #aaa9a5;
  font-size: 13px;
  line-height: 1.52;
}

.modal-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.modal-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d7d2c9;
  font-size: 10px;
  line-height: 1.35;
}

.modal-benefits b {
  flex: 0 0 auto;
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  font-size: 20px;
  font-weight: 400;
}

.lead-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.lead-form label {
  display: grid;
  gap: 6px;
}

.lead-form label > span {
  color: #ddd8cf;
  font-size: 12px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(240, 236, 225, 0.38);
  border-radius: 3px;
  background: rgba(5, 9, 9, 0.55);
  color: #f5f1e9;
  font-size: 13px;
  transition: border-color 160ms ease, background 160ms ease;
}

.lead-form input {
  height: 43px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 64px;
  padding: 10px 13px;
  line-height: 1.4;
  resize: vertical;
}

.lead-form input:hover,
.lead-form textarea:hover {
  border-color: rgba(240, 236, 225, 0.62);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #777a77;
}

.form-submit {
  width: 100%;
  min-height: 49px;
  margin-top: 1px;
}

.contact-promise,
.legal-copy {
  margin: 0;
  color: #898a86;
  font-size: 9px;
  line-height: 1.4;
}

.work-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1px 0;
  padding: 9px 11px;
  border: 1px solid #a64f28;
  border-radius: 3px;
  color: #c9c5bd;
  font-size: 10px;
}

.work-hours span {
  color: var(--amber);
  font-size: 17px;
}

.success-state {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 6px;
}

.success-state__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: rgba(240, 75, 52, 0.08);
  color: var(--orange);
  font-size: 24px;
}

.success-state p:not(.eyebrow) {
  max-width: 440px;
  margin: 18px 0 26px;
  color: #aaa8a3;
  font-size: 14px;
  line-height: 1.6;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1270px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 22px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .header-actions .button--outline {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(510px, 53%) minmax(0, 1fr);
  }

  .hero h1 {
    font-size: clamp(42px, 4.25vw, 54px);
  }
}

@media (min-width: 981px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .site-shell {
    grid-template-rows: 68px minmax(0, 1fr) 76px;
  }

  .site-header {
    gap: 16px;
  }

  .brand-crop {
    width: 148px;
    height: 44px;
  }

  .site-nav {
    gap: clamp(17px, 2vw, 28px);
  }

  .header-actions {
    gap: 9px;
  }

  .button--compact {
    min-height: 40px;
    padding: 8px 15px;
    font-size: 12px;
  }

  .hero-copy {
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(39px, 3.35vw, 51px);
    line-height: 1.15;
  }

  .hero-description {
    margin-top: 15px;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 19px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-block: 10px;
    font-size: 13px;
  }

  .proof-strip article {
    gap: 13px;
  }

  .proof-strip span {
    font-size: 23px;
  }

  .proof-strip p {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .site-shell {
    height: auto;
    min-height: 100svh;
    grid-template-rows: 78px minmax(620px, 1fr) auto;
    overflow: visible;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 77px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 10, 10, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

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

  .hero-copy {
    max-width: 720px;
    background: linear-gradient(90deg, rgba(7, 10, 10, 0.97) 0%, rgba(7, 10, 10, 0.91) 74%, rgba(7, 10, 10, 0.42) 100%);
  }

  .hero-image {
    position: absolute;
    z-index: 0;
    inset: 0 0 0 36%;
  }

  .proof-strip {
    min-height: 104px;
    padding-inline: 28px;
  }

  .proof-strip article {
    gap: 14px;
  }

  .proof-strip span {
    font-size: 25px;
  }

  .proof-strip p {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    grid-template-rows: 74px minmax(0, auto) auto;
  }

  .site-header {
    min-height: 74px;
    padding-inline: 18px;
  }

  .brand-crop {
    width: 151px;
    height: 48px;
  }

  .site-nav {
    top: 73px;
    padding-inline: 18px;
  }

  .hero {
    min-height: calc(100svh - 74px);
  }

  .hero-image {
    inset: 0;
    background-position: 62% center;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 10, 0.52), rgba(7, 10, 10, 0.92) 76%, #080b0b 100%);
  }

  .hero-copy {
    justify-content: flex-end;
    max-width: none;
    min-height: calc(100svh - 74px);
    padding: 120px 20px 38px;
    background: linear-gradient(90deg, rgba(7, 10, 10, 0.64), rgba(7, 10, 10, 0.18));
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.4vw, 56px);
    line-height: 1.16;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 26px;
  }

  .hero-actions .button {
    min-height: 52px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding: 10px 20px 16px;
  }

  .proof-strip article {
    justify-content: flex-start;
    min-height: 70px;
    padding-inline: 6px;
  }

  .proof-strip article + article::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .proof-strip p {
    font-size: 16px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .lead-modal {
    width: 100%;
    max-height: 94svh;
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 12px 12px 0 0;
  }

  .modal-visual {
    display: none;
  }

  .modal-content {
    padding: 34px 20px 20px;
  }

  .modal-content h2 {
    padding-right: 34px;
    font-size: 30px;
  }

  .modal-benefits {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .modal-benefits span {
    font-size: 11px;
  }
}

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

.section-page {
  min-height: 100svh;
  display: grid;
  align-content: space-between;
  padding: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 110px 100%,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 110px,
    radial-gradient(circle at 85% 20%, rgba(242, 92, 46, 0.12), transparent 34%),
    #090c0c;
}

.section-brand {
  width: fit-content;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.section-card {
  max-width: 830px;
  margin: 12vh 0 9vh;
}

.section-card h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-card > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

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

@media (max-width: 560px) {
  .section-page {
    padding: 24px 20px;
  }

  .section-card {
    margin-block: 12vh;
  }

  .section-actions {
    display: grid;
  }
}
