:root {
  --sumi: #15130f;
  --ink: #2f2a24;
  --cream: #f7f3ee;
  --paper: #fffaf3;
  --stone: #d8ccbb;
  --accent: #a98556;
  --accent-rgb: 169, 133, 86;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--cream);
  color: var(--sumi);
  font-family: Inter, Aptos, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

body[data-brand="ordinata"] {
  --accent: #248a39;
  --accent-rgb: 36, 138, 57;
}

body[data-brand="lvdvs"] {
  --accent: #7c3cff;
  --accent-rgb: 124, 60, 255;
}

body[data-brand="companio"] {
  --accent: #d8792e;
  --accent-rgb: 216, 121, 46;
}

body[data-brand="machina"] {
  --accent: #1fb8d7;
  --accent-rgb: 31, 184, 215;
}

body[data-brand="somnum"] {
  --accent: #436e9f;
  --accent-rgb: 67, 110, 159;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.18);
  background: rgba(21, 19, 15, 0.72);
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

.site-header img {
  display: block;
  width: 132px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.62)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.28));
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
}

.site-header nav a,
.eyebrow,
.button,
.feature p {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header nav a {
  color: rgba(247, 243, 238, 0.82);
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--cream);
}

.site-header nav .nav-logo-link {
  display: none;
  align-items: center;
  justify-content: center;
}

.site-header nav .nav-logo-link img {
  width: 78px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 9px rgba(255, 255, 255, 0.38));
}

.brand-bottom-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  border-top: 1px solid rgba(247, 243, 238, 0.14);
  background: rgba(21, 19, 15, 0.92);
  padding: 13px 16px;
  color: var(--cream);
  backdrop-filter: blur(16px);
}

.brand-bottom-bar a {
  color: rgba(247, 243, 238, 0.86);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-bottom-bar a:hover,
.brand-bottom-bar a:focus-visible {
  color: #fff;
  outline: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38vw);
  gap: clamp(28px, 6vw, 90px);
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 4vw, 56px) 64px;
  background:
    radial-gradient(circle at 78% 24%, rgba(var(--accent-rgb), 0.36), transparent 30%),
    linear-gradient(135deg, #15130f 0%, #2a241f 52%, rgba(var(--accent-rgb), 0.62) 100%);
  color: white;
}

.hero--construction {
  min-height: 100vh;
}

.hero--construction .hero__copy {
  align-self: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(var(--accent-rgb), 0.96);
}

.hero h1,
.content h2 {
  margin: 0;
  font-family: Inter, Aptos, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  line-height: 0.92;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(4rem, 8.5vw, 9.2rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.hero__copy span {
  display: block;
  max-width: 760px;
  margin-top: 28px;
  color: rgba(247, 243, 238, 0.78);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 520px;
  align-self: center;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(255, 255, 255, 0.58)) drop-shadow(0 0 38px rgba(255, 255, 255, 0.26));
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(var(--accent-rgb), 0.72);
  border-radius: var(--radius);
  margin-top: 28px;
  padding: 14px 18px;
  color: var(--accent);
  text-decoration: none;
}

.button:hover,
.button--solid {
  background: var(--accent);
  color: white;
}

.content {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 56px);
}

.content h2 {
  max-width: 680px;
  font-size: clamp(3rem, 6vw, 6.8rem);
}

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

.content__text p {
  margin: 0;
  color: rgba(47, 42, 36, 0.7);
  font-size: 1.08rem;
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 56px) clamp(56px, 8vw, 110px);
}

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

.feature {
  min-height: 260px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  padding: 24px;
}

.feature p {
  margin: 0 0 18px;
  color: var(--accent);
}

.feature h3 {
  margin: 0;
  font-family: Inter, Aptos, ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.feature span {
  display: block;
  margin-top: 18px;
  color: rgba(47, 42, 36, 0.68);
  line-height: 1.65;
}

@media (max-width: 940px) {
  .hero,
  .content,
  .features {
    grid-template-columns: 1fr;
  }

  .hero__logo {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.8rem);
  }
}
