/* ============================================================
   Q CAPITAL — Independent Corporate Risk Advisory
   Corporate website stylesheet
   ------------------------------------------------------------
   Brand tokens are defined below. Colours follow the Q Capital
   logo (deep navy on white). Adjust the custom properties in
   :root only — components inherit from them.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --ink: #081228;            /* primary text / logo navy */
  --ink-soft: #3b4457;       /* body text */
  --muted: #6d7686;          /* secondary text */
  --paper: #ffffff;          /* base background */
  --alabaster: #f6f4ef;      /* warm light background */
  --hairline: #e3ded3;       /* fine rules and borders */
  --hairline-soft: #ebe7de;
  --navy: #0b1526;           /* dark band background */
  --navy-deep: #070f1e;
  --bronze: #ab8a3e;         /* accent — aligned to the logo gold, used sparingly */
  --bronze-soft: #d3ac5e;    /* accent on dark ground */

  /* Type */
  --display: "Montserrat", "Segoe UI", Arial, sans-serif;
  --sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  /* Layout */
  --w-wide: 1160px;
  --w-mid: 1020px;
  --w-text: 760px;
  --header-h: 96px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.24, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--navy);
  color: #f4efe4;
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.28;
  letter-spacing: 0.005em;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container--mid  { max-width: var(--w-mid); }
.container--text { max-width: var(--w-text); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 0.65rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  border: 1px solid rgba(8, 18, 40, 0.55);
  padding: 1.1rem 2.4rem;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: #f5f2ea;
}

.btn--invert {
  color: #f5f2ea;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--invert:hover,
.btn--invert:focus-visible {
  background: #f5f2ea;
  border-color: #f5f2ea;
  color: var(--navy);
}

.btn--solid {
  background: var(--navy);
  border-color: var(--navy);
  color: #f5f2ea;
}

.btn--solid:hover,
.btn--solid:focus-visible {
  background: #1e2c47;
  border-color: #1e2c47;
  color: #fff;
}

/* ---------- Brand lockup (official logo artwork) ---------- */
.brand {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  height: 72px;
  width: auto;
}

/* ---------- Header / navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 2.5rem);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.1rem);
}

.site-nav a {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(8, 18, 40, 0.64);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--bronze);
}

.lang {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(8, 18, 40, 0.38);
  white-space: nowrap;
}

.lang .lang-current {
  color: var(--ink);
}

.lang a {
  color: inherit;
  transition: color 0.25s var(--ease);
}

.lang a:hover,
.lang a:focus-visible {
  color: var(--ink);
}

.lang .lang-sep {
  color: var(--hairline);
  font-weight: 400;
}

/* Scrolled / solid state */
.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--hairline-soft);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}

body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

@media (max-width: 1160px) {
  :root { --header-h: 76px; }

  .brand-logo { height: 58px; }

  .nav-toggle {
    display: flex;
    margin-left: 0.25rem;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin-left: 0;
    background: #fff;
    border-bottom: 1px solid var(--hairline-soft);
    padding: 1rem 0 1.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  }

  .site-nav li + li {
    border-top: 1px solid var(--hairline-soft);
  }

  .site-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 0.74rem;
    border-bottom: 0;
  }

  .site-nav a[aria-current="page"] {
    color: var(--ink);
    border-bottom: 0;
    box-shadow: inset 3px 0 0 var(--bronze);
    padding-left: 1rem;
  }

  .lang {
    margin-left: auto;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  .brand-logo { height: clamp(42px, 12vw, 54px); }

  .lang {
    gap: 0.35rem;
    font-size: 0.64rem;
  }
}

@media (max-width: 480px) {
  .brand-logo { height: 42px; }
}

/* ---------- Homepage hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 96svh, 940px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(1100px 480px at 78% -8%, rgba(171, 138, 62, 0.08), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #faf8f3 55%, #f2efe7 100%);
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--ink);
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: auto 0 0 0;
  height: min(52%, 430px);
  width: 100%;
  pointer-events: none;
}

.hero-art svg {
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  padding-bottom: 4rem;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.hero-logo img {
  width: clamp(300px, 46vw, 500px);
  height: auto;
}

.hero-tagline {
  margin: 2.6rem auto 0;
  max-width: 44ch;
  font-size: clamp(1rem, 1.9vw, 1.14rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--bronze);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: 1px;
  height: 72px;
  background: linear-gradient(180deg, rgba(171, 138, 62, 0) 0%, rgba(171, 138, 62, 0.75) 100%);
  animation: heroScroll 2.8s var(--ease) infinite;
}

@keyframes heroScroll {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Generic sections ---------- */
.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section--tint {
  background: var(--alabaster);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.75rem, 6vw, 4rem);
}

.section-head::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--bronze);
  margin: 0 auto 1.6rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}

/* ---------- Homepage intro ---------- */
.intro-inner {
  max-width: 820px;
  margin-inline: auto;
}

.intro-inner::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 2.2rem;
}

.lede {
  font-size: clamp(1.12rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
}

.intro-inner p + p {
  margin-top: 1.35rem;
}

.intro-inner p:not(.lede) {
  max-width: 66ch;
}

.intro-inner .btn {
  margin-top: 2.6rem;
}

/* ---------- Expertise grid ---------- */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.expertise-card {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 3.4vw, 2.75rem);
}

.expertise-num {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--bronze);
}

.expertise-card h3 {
  margin-top: 1.1rem;
  font-size: 1.06rem;
}

.expertise-card p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 44ch;
}

.section-cta {
  text-align: center;
  margin-top: clamp(2.75rem, 6vw, 4rem);
}

/* ---------- Dark band (currently unused; kept for future sections) ---------- */
.band {
  position: relative;
  background:
    radial-gradient(900px 420px at 22% -12%, rgba(200, 176, 131, 0.08), transparent 60%),
    linear-gradient(180deg, #0e1a2e 0%, #0a1424 60%, #070f1e 100%);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(5.5rem, 11vw, 9rem);
  text-align: center;
}

.band-art {
  position: absolute;
  inset: auto 0 0 0;
  height: min(58%, 330px);
  width: 100%;
  pointer-events: none;
  opacity: 0.8;
}

.band-art svg {
  width: 100%;
  height: 100%;
}

.band-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}

.band-inner::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--bronze-soft);
  margin: 0 auto 1.6rem;
}

.band-inner h2 {
  color: #f6f3ea;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
}

.band-inner p {
  margin-top: 1.4rem;
  color: rgba(240, 236, 226, 0.72);
  line-height: 1.85;
}

.band-inner .btn {
  margin-top: 2.6rem;
}

/* ---------- Interior page header ---------- */
.page-head {
  background: var(--alabaster);
  border-bottom: 1px solid var(--hairline-soft);
  padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.page-head-inner {
  max-width: var(--w-mid);
}

.page-head-inner::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 1.8rem;
}

.page-head h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.16;
}

.page-head .page-tagline {
  margin-top: 1.3rem;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
}

.page-head .page-lead {
  margin-top: 1.8rem;
  max-width: 66ch;
}

.page-head .page-lead p + p {
  margin-top: 1.1rem;
}

.page-head .page-lead p:first-child {
  font-size: clamp(1.08rem, 1.9vw, 1.24rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
}

/* ---------- Editorial rows (About / Services / Approach / Team) ---------- */
.rows {
  max-width: var(--w-mid);
}

.row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 1.5rem 4.5rem;
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}

.row + .row {
  border-top: 1px solid var(--hairline-soft);
}

.row-head .row-num {
  display: block;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.row-head h2 {
  font-size: clamp(1.18rem, 2.2vw, 1.42rem);
  max-width: 18ch;
}

.row-body {
  max-width: 62ch;
}

.row-body p + p {
  margin-top: 1.1rem;
}

.page-cta {
  border-top: 1px solid var(--hairline-soft);
  padding-block: clamp(3.5rem, 7vw, 5rem);
  text-align: center;
}

/* ---------- Team profiles ---------- */
.profile-name {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
}

.profile-role {
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 3rem 5rem;
  max-width: var(--w-mid);
}

.contact-org {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-address {
  margin-top: 1.1rem;
  line-height: 1.9;
}

.contact-label {
  margin-top: 1.9rem;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  margin-top: 0.3rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.contact-value a {
  border-bottom: 1px solid rgba(162, 135, 79, 0.5);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.contact-value a:hover,
.contact-value a:focus-visible {
  color: var(--bronze);
  border-bottom-color: var(--bronze);
}

/* Split page header with photo on the right (contact page) */
.page-head-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 2.5rem 4rem;
  align-items: center;
}

.page-head-inner--split::before {
  display: none;
}

.page-head-text::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 1.8rem;
}

.page-head-photo {
  display: block;
  height: clamp(260px, 26vw, 360px);
  width: auto;
  max-width: 100%;
  justify-self: end;
  border: 1px solid var(--hairline-soft);
}

.form-title {
  font-size: clamp(1.25rem, 2.3vw, 1.5rem);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.6rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #d8d2c5;
  border-radius: 0;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(8, 18, 40, 0.08);
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 0.6rem;
}

/* ---------- Simple prose pages (Legal / Privacy) ---------- */
.prose {
  max-width: 70ch;
}

.prose h2 {
  font-size: 1.22rem;
  margin-top: 2.8rem;
  margin-bottom: 1.1rem;
}

.prose p + p {
  margin-top: 1.1rem;
}

.prose .prose-org {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.prose .prose-reg {
  color: var(--muted);
}

.text-link {
  border-bottom: 1px solid rgba(162, 135, 79, 0.5);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--bronze);
  border-bottom-color: var(--bronze);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(244, 241, 233, 0.1);
  color: rgba(238, 234, 224, 0.62);
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: 2.5rem;
  font-size: 0.92rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem 4rem;
  align-items: start;
  padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.footer-wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #f4f1e9;
}

.footer-tagline {
  margin-top: 1.1rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-soft);
}

.footer-address {
  line-height: 2.05;
  text-align: right;
}

.footer-reg {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: rgba(238, 234, 224, 0.42);
}

.footer-domain {
  margin-top: 1.3rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--bronze-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 241, 233, 0.12);
  padding-top: 2.2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.1rem;
  row-gap: 0.5rem;
  font-size: 0.82rem;
}

.footer-links a {
  color: rgba(238, 234, 224, 0.72);
  transition: color 0.25s var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-links .sep {
  color: rgba(238, 234, 224, 0.22);
  user-select: none;
}

.footer-copy {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  color: rgba(238, 234, 224, 0.4);
}

/* ---------- Reveal on scroll ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll {
    animation: none;
    transform: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-head-inner--split {
    grid-template-columns: 1fr;
  }

  .page-head-photo {
    justify-self: start;
    height: 240px;
  }

  .row-head h2,
  .row-body {
    max-width: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-address {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: clamp(560px, 92svh, 780px);
  }
}
