:root {
  color-scheme: dark;
  --black: #030405;
  --ink: #07090b;
  --navy: #071018;
  --ivory: #f5efe4;
  --soft-ivory: #cfc5b5;
  --muted: #938a7d;
  --champagne: #d7b36a;
  --champagne-soft: rgba(215, 179, 106, 0.42);
  --line: rgba(245, 239, 228, 0.13);
  --line-strong: rgba(215, 179, 106, 0.44);
  --max: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Libre Franklin", Arial, sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(215, 179, 106, 0.09), transparent 24rem),
    linear-gradient(180deg, #030405 0%, #071018 46%, #030405 100%);
  color: var(--ivory);
  font-family: var(--sans);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245, 239, 228, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 239, 228, 0.02) 1px, transparent 1px);
  background-size: 140px 140px;
  content: "";
  opacity: 0.28;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(3, 4, 5, 0.8);
  content: "";
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(215, 179, 106, 0.36);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 24px;
  right: 24px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), calc(var(--max) + 56px));
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(245, 239, 228, 0.1);
  background: rgba(3, 4, 5, 0.54);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(215, 179, 106, 0.28);
  background: rgba(3, 4, 5, 0.9);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: 92px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.group-signature {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-left: 14px;
  padding-left: 18px;
  border-left: 1px solid rgba(245, 239, 228, 0.12);
  color: rgba(245, 239, 228, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.group-signature img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 2px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: rgba(245, 239, 228, 0.66);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.045);
  color: var(--ivory);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
}

.menu-toggle span {
  position: absolute;
  width: 19px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.nav-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: end;
  overflow: hidden;
  padding: 6.8rem 24px 3.55rem;
  background: var(--black);
  isolation: isolate;
}

.hero-image,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  background: url("/images/synkra-hero-private-garage.png") center / cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.78);
}

.hero-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.88) 0%, rgba(3, 4, 5, 0.72) 38%, rgba(3, 4, 5, 0.24) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.2) 0%, rgba(3, 4, 5, 0.3) 42%, rgba(3, 4, 5, 0.92) 100%);
}

.hero::after {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 32px;
  height: 1px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(215, 179, 106, 0.72), rgba(245, 239, 228, 0.08), transparent);
  content: "";
}

.hero-inner,
.threshold p,
.editorial-section,
.partners-inner,
.contact-section,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-inner {
  padding-top: 2rem;
}

.kicker {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: 5rem;
  line-height: 0.88;
}

h2 {
  max-width: 760px;
  font-size: 4.15rem;
  line-height: 0.94;
}

p {
  margin: 0;
  color: var(--soft-ivory);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-copy {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(245, 239, 228, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.button-primary {
  border-color: rgba(215, 179, 106, 0.72);
  background: rgba(3, 4, 5, 0.34);
  color: var(--ivory);
}

.button-quiet {
  border-color: rgba(245, 239, 228, 0.24);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(245, 239, 228, 0.88);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: rgba(215, 179, 106, 0.92);
  color: #080705;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(215, 179, 106, 0.56);
  color: var(--ivory);
}

.inline-button {
  margin-top: 34px;
}

.hero-aside {
  position: absolute;
  right: clamp(24px, 6vw, 72px);
  bottom: 3.55rem;
  display: grid;
  gap: 10px;
  color: rgba(245, 239, 228, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.threshold {
  padding: 28px 24px 46px;
  border-top: 1px solid rgba(215, 179, 106, 0.2);
  border-bottom: 1px solid rgba(245, 239, 228, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.threshold p {
  max-width: 840px;
  color: rgba(245, 239, 228, 0.76);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.18;
}

.editorial-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.88fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  padding: 132px 24px;
}

.editorial-section.reverse {
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 0.9fr);
}

.section-index {
  position: absolute;
  top: 98px;
  left: 24px;
  color: rgba(215, 179, 106, 0.54);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1;
}

.editorial-copy {
  max-width: 680px;
  padding-left: clamp(0px, 4vw, 62px);
}

.editorial-section.reverse .editorial-copy {
  padding-left: 0;
}

.editorial-copy p:not(.kicker),
.partners-copy p,
.contact-intro p {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(207, 197, 181, 0.84);
  font-size: 1.03rem;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 228, 0.1);
  background: var(--ink);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.45);
}

.image-frame::before {
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(245, 239, 228, 0.08);
  content: "";
}

.image-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 4, 5, 0.02), rgba(3, 4, 5, 0.3));
  content: "";
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.82);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.image-frame:hover img {
  filter: saturate(0.9) contrast(1.08) brightness(0.88);
  transform: scale(1.025);
}

.image-frame.portrait {
  aspect-ratio: 0.86;
}

.image-frame.wide {
  aspect-ratio: 1.28;
}

.corridor {
  position: relative;
  display: grid;
  min-height: 740px;
  place-items: center;
  overflow: hidden;
  padding: 126px 24px;
  background: #020303;
  isolation: isolate;
}

.corridor-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("/images/synkra-miami-villa-night.png") center / cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.68);
}

.corridor::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.86), rgba(3, 4, 5, 0.52), rgba(3, 4, 5, 0.26)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.14), rgba(3, 4, 5, 0.88));
  content: "";
}

.corridor-content {
  width: min(100%, var(--max));
}

.corridor h2 {
  max-width: 880px;
  font-size: 5rem;
}

.corridor p:not(.kicker) {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(245, 239, 228, 0.78);
  font-size: 1.08rem;
}

.partners-panel {
  padding: 150px 24px;
  border-top: 1px solid rgba(245, 239, 228, 0.08);
  border-bottom: 1px solid rgba(215, 179, 106, 0.18);
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.96), rgba(3, 4, 5, 0.74)),
    url("/images/synkra-private-meeting.png") center / cover;
}

.partners-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 56px;
}

.partners-inner .section-index {
  position: static;
}

.partners-copy {
  max-width: 720px;
}

.split-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 120px 24px;
  background: var(--black);
  isolation: isolate;
}

.split-panel-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("/images/synkra-private-meeting.png") center / cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.62);
}

.split-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.9), rgba(3, 4, 5, 0.66), rgba(3, 4, 5, 0.34)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.1), rgba(3, 4, 5, 0.88));
  content: "";
}

.split-panel-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split-panel-content p:not(.kicker),
.final-cta p {
  max-width: 580px;
  margin-top: 26px;
  color: rgba(207, 197, 181, 0.84);
  font-size: 1.03rem;
}

.final-cta {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 126px 24px;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  align-items: end;
  overflow: hidden;
  padding: 9rem 24px 5rem;
  background: var(--black);
  isolation: isolate;
}

.page-hero-image,
.page-hero-shade {
  position: absolute;
  inset: 0;
}

.page-hero-image {
  z-index: -3;
  background: url("/images/synkra-hero-private-garage.png") center / cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.68);
}

.about-image {
  background-image: url("/images/synkra-private-meeting.png");
}

.services-image {
  background-image: url("/images/synkra-vehicle-interior.png");
}

.partners-image {
  background-image: url("/images/synkra-private-meeting.png");
}

.page-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.9), rgba(3, 4, 5, 0.62), rgba(3, 4, 5, 0.32)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.14), rgba(3, 4, 5, 0.9));
}

.page-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.kicker) {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(245, 239, 228, 0.8);
  font-size: 1.08rem;
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(40px, 7vw, 90px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 112px 24px;
}

.statement-copy p {
  color: rgba(245, 239, 228, 0.82);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.04;
}

.quiet-copy {
  display: grid;
  gap: 22px;
  align-self: end;
}

.quiet-copy p {
  color: rgba(207, 197, 181, 0.82);
}

.service-stack {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 112px 24px 36px;
}

.service-block {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding: 54px 0;
  border-top: 1px solid rgba(245, 239, 228, 0.12);
}

.service-block:last-child {
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
}

.service-number,
.partner-grid span {
  color: rgba(215, 179, 106, 0.58);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.service-block h2 {
  max-width: 520px;
  font-size: 3rem;
}

.service-detail {
  display: grid;
  gap: 18px;
}

.service-detail p {
  color: rgba(207, 197, 181, 0.82);
}

.service-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ivory);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 112px 24px;
}

.partner-grid article {
  min-height: 260px;
  padding: 30px;
  border-top: 1px solid rgba(245, 239, 228, 0.12);
  border-left: 1px solid rgba(245, 239, 228, 0.1);
}

.partner-grid article:nth-child(3n) {
  border-right: 1px solid rgba(245, 239, 228, 0.1);
}

.partner-grid article:nth-last-child(-n + 3) {
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
}

.partner-grid h2 {
  margin-top: 42px;
  font-size: 2rem;
  line-height: 1;
}

.partner-grid p {
  margin-top: 18px;
  color: rgba(207, 197, 181, 0.78);
}

.contact-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 11rem 24px 7rem;
  align-items: start;
  isolation: isolate;
}

.contact-page-image,
.contact-page-shade {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.contact-page-image {
  z-index: -4;
  background: url("/images/synkra-hero-private-garage.png") center / cover;
  filter: saturate(0.72) contrast(1.06) brightness(0.44);
}

.contact-page-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.94), rgba(3, 4, 5, 0.78), rgba(3, 4, 5, 0.54)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.12), rgba(3, 4, 5, 0.96));
}

.contact-page h1 {
  font-size: 5rem;
}

.contact-form-panel {
  padding: 34px 0 0 36px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
  padding: 132px 24px;
}

.contact-index {
  top: 98px;
}

.contact-intro {
  position: sticky;
  top: 132px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0 0 0 36px;
  border-left: 1px solid rgba(215, 179, 106, 0.28);
}

.contact-form label {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.contact-form span {
  color: rgba(245, 239, 228, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(245, 239, 228, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--ivory);
  outline: none;
  padding: 13px 0 14px;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(215, 179, 106, 0.72);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--champagne) 50%),
    linear-gradient(135deg, var(--champagne) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) calc(50% - 2px),
    calc(100% - 8px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

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

.form-status {
  min-height: 1.5em;
  color: var(--champagne);
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: 44px 24px 56px;
  border-top: 1px solid rgba(245, 239, 228, 0.1);
}

.site-footer strong {
  display: block;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.44rem;
  font-weight: 600;
}

.site-footer p {
  margin-top: 9px;
  color: rgba(207, 197, 181, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  display: inline-flex;
  margin-top: 9px;
  color: var(--champagne);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #f2d593;
}

.group-line {
  color: rgba(215, 179, 106, 0.72) !important;
  font-weight: 700;
}

.legal-disclaimer {
  grid-column: 1 / -1;
  max-width: 880px;
  margin-top: 0;
  color: rgba(207, 197, 181, 0.56) !important;
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
}

[data-reveal] {
  opacity: 0;
  clip-path: inset(0 0 24px 0);
  transform: translateY(26px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease), clip-path 850ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .group-signature {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 104px;
    left: 24px;
    right: 24px;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(245, 239, 228, 0.12);
    background: rgba(3, 4, 5, 0.96);
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(24px);
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 14px;
  }

  .nav-open .site-nav {
    display: flex;
  }

  h1 {
    max-width: 760px;
    font-size: 4.7rem;
  }

  h2,
  .corridor h2 {
    font-size: 3.45rem;
  }

  .hero-aside {
    display: none;
  }

  .editorial-section,
  .editorial-section.reverse,
  .contact-section,
  .partners-inner,
  .statement-section,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .service-block {
    grid-template-columns: 54px 1fr;
  }

  .service-detail {
    grid-column: 2;
  }

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

  .partner-grid article:nth-child(3n) {
    border-right: 0;
  }

  .partner-grid article:nth-child(2n) {
    border-right: 1px solid rgba(245, 239, 228, 0.1);
  }

  .partner-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .partner-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(245, 239, 228, 0.12);
  }

  .editorial-copy,
  .editorial-section.reverse .editorial-copy {
    padding-left: clamp(30px, 8vw, 72px);
  }

  .contact-intro {
    position: static;
  }

  .contact-form {
    padding-left: 0;
    border-left: 0;
  }

  .contact-form-panel {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 8px;
  }

  .brand {
    gap: 0;
  }

  .brand-logo {
    width: 74px;
    height: 48px;
  }

  .site-nav {
    top: 84px;
    left: 10px;
    right: 10px;
  }

  .hero {
    min-height: 88svh;
    padding: 7rem 18px 4rem;
  }

  .hero-image {
    background-position: 68% center;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(3, 4, 5, 0.52) 0%, rgba(3, 4, 5, 0.92) 100%),
      rgba(3, 4, 5, 0.26);
  }

  .hero::after {
    left: 18px;
    right: 18px;
    bottom: 22px;
    width: calc(100% - 36px);
  }

  .hero-inner {
    padding-top: 5rem;
  }

  h1 {
    font-size: 3.04rem;
    line-height: 0.95;
  }

  .page-hero h1,
  .contact-page h1 {
    font-size: 3.04rem;
    line-height: 0.95;
  }

  h2,
  .corridor h2 {
    font-size: 2.42rem;
    line-height: 1;
  }

  p,
  .editorial-copy p:not(.kicker),
  .partners-copy p,
  .contact-intro p,
  .corridor p:not(.kicker),
  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .threshold {
    padding: 34px 18px;
  }

  .threshold p {
    font-size: 1.45rem;
  }

  .editorial-section,
  .editorial-section.reverse {
    gap: 32px;
    padding: 82px 18px;
  }

  .page-hero {
    min-height: 68svh;
    padding: 7.4rem 18px 4rem;
  }

  .page-hero p:not(.kicker) {
    font-size: 0.98rem;
  }

  .statement-section,
  .service-stack,
  .partner-grid,
  .final-cta {
    padding: 72px 18px;
  }

  .statement-copy p {
    font-size: 2.04rem;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 0;
  }

  .service-detail {
    grid-column: auto;
  }

  .service-block h2 {
    font-size: 2.2rem;
  }

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

  .partner-grid article,
  .partner-grid article:nth-child(2n),
  .partner-grid article:nth-child(3n) {
    min-height: 220px;
    border-right: 1px solid rgba(245, 239, 228, 0.1);
  }

  .partner-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .partner-grid article:last-child {
    border-bottom: 1px solid rgba(245, 239, 228, 0.12);
  }

  .partner-grid h2 {
    margin-top: 34px;
    font-size: 1.72rem;
  }

  .section-index {
    top: 58px;
    left: 18px;
  }

  .editorial-copy,
  .editorial-section.reverse .editorial-copy {
    padding-left: 36px;
  }

  .image-frame.portrait,
  .image-frame.wide {
    aspect-ratio: 1;
  }

  .image-frame::before {
    inset: 12px;
  }

  .corridor {
    min-height: 580px;
    padding: 86px 18px;
  }

  .corridor-image {
    background-position: 60% center;
  }

  .partners-panel,
  .contact-section,
  .split-panel {
    padding: 86px 18px;
  }

  .split-panel {
    min-height: 540px;
  }

  .contact-section {
    gap: 38px;
  }

  .contact-page {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 8rem 18px 5rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 18px 44px;
  }

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

@media (max-width: 430px) {
  h1 {
    font-size: 2.62rem;
  }

  .page-hero h1,
  .contact-page h1 {
    font-size: 2.62rem;
  }

  h2,
  .corridor h2 {
    font-size: 2.12rem;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
