:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0a0a09;
  --panel: rgba(16, 16, 14, 0.72);
  --panel-solid: #11110f;
  --line: rgba(232, 222, 199, 0.15);
  --line-strong: rgba(215, 177, 104, 0.38);
  --text: #f6f1e7;
  --muted: #b8b0a1;
  --muted-strong: #d7ccb8;
  --gold: #d7b168;
  --gold-soft: #8c7447;
  --steel: #9bb0b2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --max: 1180px;
  --header-height: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #050505 0%, #0a0908 44%, #050505 100%),
    #050505;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(232, 222, 199, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(232, 222, 199, 0.03) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  opacity: 0.42;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(215, 177, 104, 0.34);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 18px;
  right: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  max-width: calc(var(--max) + 52px);
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(215, 177, 104, 0.28);
  background: rgba(5, 5, 5, 0.9);
}

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

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 177, 104, 0.2);
  border-radius: var(--radius);
  object-fit: contain;
}

.brand span,
.footer-brand strong {
  color: #fffaf0;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-cta,
.footer-links a,
.footer-email {
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.1;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: rgba(246, 241, 231, 0.72);
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary {
  border-color: rgba(215, 177, 104, 0.5);
  background: linear-gradient(135deg, #d7b168, #9a7b45);
  color: #090806;
  font-weight: 760;
  box-shadow: 0 18px 46px rgba(154, 123, 69, 0.18);
}

.button-secondary {
  border-color: rgba(246, 241, 231, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fffaf0;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(215, 177, 104, 0.42);
  background: rgba(215, 177, 104, 0.09);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

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

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

.hero-section {
  position: relative;
  display: flex;
  min-height: 80svh;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem 24px 2.5rem;
  background: #050505;
  isolation: isolate;
}

.hero-video,
.hero-section::before,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  filter: grayscale(1) brightness(0.62) contrast(1.08) blur(3px);
  opacity: 0.28;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-section::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.78) 0%, rgba(3, 3, 3, 0.46) 100%),
    url("/images/synkra-luxury-poster.jpg?v=city") center / cover;
  content: "";
  opacity: 0.9;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.62) 48%, rgba(3, 3, 3, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.62) 100%);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: #fffaf0;
  font-weight: 720;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: 4.05rem;
  line-height: 1.02;
}

h2 {
  font-size: 3.05rem;
  line-height: 1.04;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.15rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-note {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(246, 241, 231, 0.66);
  font-size: 0.95rem;
}

.section-band {
  padding: 92px 24px;
}

.need-section {
  padding-top: 24px;
}

.need-section .section-grid {
  align-items: start;
}

.section-grid,
.store-layout,
.contact-layout {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 48px;
  align-items: center;
}

.section-grid,
.store-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
}

.store-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.section-copy {
  max-width: 660px;
}

.section-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  font-size: 1.04rem;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 780px;
}

.media-panel,
.wide-media,
.contact-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.media-panel::after,
.wide-media::after,
.contact-image::after,
.manifesto-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.22) 100%);
  content: "";
}

.media-panel img,
.wide-media img,
.contact-image img,
.manifesto-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel {
  aspect-ratio: 1.16;
}

.media-panel.tall {
  aspect-ratio: 0.82;
}

.wide-media {
  width: min(100%, var(--max));
  aspect-ratio: 2.55;
  margin: 28px auto 0;
}

.service-grid,
.company-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 16px;
}

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

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

.premium-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 10, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.premium-card:hover {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(215, 177, 104, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 10, 0.84);
  transform: translateY(-4px);
}

.card-index {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 760;
}

.premium-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.company-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 720;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff3d1;
}

.manifesto-section {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  padding: 96px 24px;
  isolation: isolate;
}

.manifesto-section img {
  position: absolute;
  inset: 0;
  z-index: -3;
  filter: saturate(0.9) brightness(0.68);
}

.manifesto-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(5, 5, 5, 0.58);
  content: "";
}

.manifesto-copy {
  width: min(100%, 900px);
  text-align: center;
}

.manifesto-copy h2 {
  font-size: 4rem;
  line-height: 1.02;
}

.manifesto-copy p {
  margin: 24px auto 0;
  color: var(--muted-strong);
  font-size: 1.14rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: start;
}

.contact-image {
  aspect-ratio: 1.7;
  margin-top: 32px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 15, 13, 0.78);
  box-shadow: var(--shadow);
}

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

.contact-form span {
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(232, 222, 199, 0.15);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: #fffaf0;
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, background 180ms ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(215, 177, 104, 0.58);
  background: rgba(0, 0, 0, 0.42);
}

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

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 28px;
  align-items: center;
  padding: 34px 24px 44px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand p {
  max-width: 360px;
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: rgba(246, 241, 231, 0.72);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: var(--gold);
}

.footer-email {
  color: #fffaf0;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.94) 0%, rgba(10, 9, 8, 0.98) 44%, #050505 100%),
    url("/images/luxury-city.jpg") center top / cover fixed;
}

.legal-hero {
  padding: 9.2rem 24px 3.5rem;
}

.legal-shell {
  width: min(100%, 920px);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 850px;
  font-size: 3.4rem;
  line-height: 1.04;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.legal-content {
  padding-top: 32px;
}

.legal-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-block:first-child {
  border-top-color: var(--line-strong);
}

.legal-block h2 {
  font-size: 1.48rem;
  line-height: 1.2;
}

.legal-block p {
  margin: 14px 0 0;
  color: var(--muted);
}

.legal-block strong {
  color: var(--muted-strong);
}

.legal-block a {
  color: var(--gold);
  font-weight: 720;
}

.legal-block a:hover,
.legal-block a:focus-visible {
  color: #fff3d1;
}

.legal-note {
  margin-top: 12px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(12, 12, 10, 0.72);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

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

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

  .site-nav,
  .header-cta {
    position: fixed;
    left: 18px;
    right: 18px;
    z-index: 60;
    display: none;
  }

  .site-nav {
    top: 102px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .site-nav a {
    min-height: 48px;
  }

  .header-cta {
    top: 340px;
    justify-self: stretch;
  }

  .nav-open .site-nav,
  .nav-open .header-cta {
    display: flex;
  }

  h1 {
    max-width: 720px;
    font-size: 3rem;
  }

  h2,
  .manifesto-copy h2 {
    font-size: 2.45rem;
  }

  .legal-hero h1 {
    font-size: 2.65rem;
  }

  .section-grid,
  .store-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .store-layout .media-panel {
    order: 2;
  }

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

  .wide-media {
    aspect-ratio: 1.7;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 64px;
    padding: 9px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .site-nav,
  .header-cta {
    left: 10px;
    right: 10px;
  }

  .site-nav {
    top: 84px;
  }

  .header-cta {
    top: 320px;
  }

  .hero-section {
    min-height: 80svh;
    padding: 6.3rem 18px 2.4rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.86) 100%),
      rgba(3, 3, 3, 0.2);
  }

  h1 {
    font-size: 2.16rem;
    line-height: 1.05;
  }

  h2,
  .manifesto-copy h2 {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .legal-hero {
    padding: 7.5rem 18px 2rem;
  }

  .legal-hero h1 {
    font-size: 2.05rem;
  }

  .legal-block {
    padding: 24px 0;
  }

  .legal-note {
    padding: 18px;
  }

  h3 {
    font-size: 1.18rem;
  }

  p,
  .section-copy p:not(.eyebrow),
  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .section-band {
    padding: 68px 18px;
  }

  .section-grid,
  .store-layout,
  .contact-layout {
    gap: 30px;
  }

  .service-grid,
  .company-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .premium-card,
  .company-card {
    min-height: 220px;
    padding: 22px;
  }

  .card-index {
    margin-bottom: 32px;
  }

  .media-panel,
  .media-panel.tall,
  .wide-media,
  .contact-image {
    aspect-ratio: 1.08;
  }

  .manifesto-section {
    min-height: 430px;
    padding: 74px 18px;
  }

  .contact-form {
    padding: 16px;
  }

  .site-footer {
    padding: 30px 18px 38px;
  }
}

@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;
    transform: none;
  }
}
