:root {
  --bg: #070707;
  --bg-soft: #0c0c0d;
  --panel: rgba(17, 17, 18, 0.84);
  --panel-solid: #111112;
  --text: #f7f5f3;
  --muted: #aaa6a3;
  --quiet: #74706e;
  --red: #ef2638;
  --red-bright: #ff4757;
  --red-deep: #8f101b;
  --gold: #efc25a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
  --max: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --font-display: "Avenir Next", Avenir, "Segoe UI", Inter, system-ui, sans-serif;
  --font-body: Inter, "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 75% 55% at 93% 3%, rgba(239, 38, 56, 0.18), transparent 64%),
    radial-gradient(ellipse 58% 44% at 0% 20%, rgba(239, 194, 90, 0.055), transparent 72%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.78), rgba(0,0,0,0.08) 68%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  width: 4px;
  z-index: 100;
  pointer-events: none;
  background: linear-gradient(180deg, var(--red), rgba(239,38,56,0.28) 65%, transparent);
  box-shadow: 0 0 28px rgba(239,38,56,0.3);
}

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

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

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

::selection {
  background: rgba(239, 38, 56, 0.36);
  color: #fff;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7,7,7,0.94), rgba(7,7,7,0.76));
  backdrop-filter: blur(22px) saturate(130%);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 13px;
  object-fit: cover;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.54)) drop-shadow(0 0 16px rgba(239,38,56,0.2));
}

.brand-copy {
  display: grid;
  gap: 5px;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-line {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.055);
  outline: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  border-color: rgba(255, 71, 87, 0.58);
  box-shadow: 0 14px 38px rgba(239,38,56,0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 45px rgba(239,38,56,0.31);
}

.button-quiet {
  color: #e8e5e2;
  background: rgba(255,255,255,0.035);
  border-color: var(--line);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(255,255,255,0.065);
  border-color: var(--line-strong);
}

.cta-short { display: none; }

.nav-cta {
  min-height: 42px;
  padding-inline: 17px;
  border-color: rgba(239,38,56,0.36);
  background: rgba(239,38,56,0.07);
  box-shadow: none;
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
  padding: clamp(72px, 10vw, 132px) 0 clamp(90px, 12vw, 150px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.hero-title,
.section-title,
.legal-title,
.contact-title {
  font-family: var(--font-display);
  font-weight: 850;
  color: #fff;
  text-wrap: balance;
}

.hero-title {
  max-width: 850px;
  font-size: clamp(55px, 8.1vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.066em;
}

.hero-title .accent {
  display: block;
  color: var(--red-bright);
}

.hero-lead {
  max-width: 690px;
  margin-top: 34px;
  color: #d8d4d1;
  font-size: clamp(19px, 2.15vw, 28px);
  line-height: 1.34;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

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

.hero-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 77% 18%, rgba(239,38,56,0.25), transparent 40%),
    radial-gradient(circle at 15% 90%, rgba(239,194,90,0.07), transparent 32%),
    linear-gradient(155deg, rgba(24,24,25,0.9), rgba(8,8,9,0.98));
  box-shadow: var(--shadow);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 34%, transparent 66%, rgba(239,38,56,0.045));
}

.hero-wave {
  position: absolute;
  width: 145%;
  max-width: none;
  top: -5%;
  right: -56%;
  opacity: 0.78;
  transform: rotate(-7deg);
}

.art-inner {
  position: relative;
  z-index: 1;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
}

.art-mark {
  width: 72px;
  height: 72px;
  border-radius: 19px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0,0,0,0.42), 0 0 34px rgba(239,38,56,0.16);
}

.art-statement {
  max-width: 360px;
  margin-top: auto;
}

.art-kicker {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.art-statement h2 {
  margin-top: 15px;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 820;
  line-height: 1.01;
  letter-spacing: -0.052em;
}

.art-statement p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.art-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.art-list span {
  min-height: 64px;
  display: flex;
  align-items: flex-end;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 15px;
  background: rgba(255,255,255,0.025);
  color: #d7d3d0;
  font-size: 12px;
  font-weight: 650;
}

.section {
  padding: clamp(92px, 12vw, 152px) 0;
  scroll-margin-top: 100px;
}

.section + .section {
  border-top: 1px solid rgba(255,255,255,0.045);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.section-label {
  position: sticky;
  top: 124px;
}

.section-title {
  max-width: 760px;
  font-size: clamp(43px, 6.3vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  letter-spacing: -0.018em;
}

.section-copy + .section-copy {
  margin-top: 24px;
}

.section-copy strong {
  color: #f4f1ee;
  font-weight: 650;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.principle {
  position: relative;
  min-height: 245px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(19,19,20,0.86), rgba(10,10,11,0.92));
}

.principle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.principle-number {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.principle h3 {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.principle p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 5%, rgba(239,38,56,0.17), transparent 38%),
    linear-gradient(145deg, rgba(20,20,21,0.9), rgba(9,9,10,0.98));
  box-shadow: var(--shadow);
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--gold), transparent);
}

.manifesto-quote {
  max-width: 940px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6.7vw, 83px);
  font-weight: 830;
  line-height: 0.99;
  letter-spacing: -0.061em;
  text-wrap: balance;
}

.manifesto-note {
  max-width: 690px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.67;
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.company-main,
.company-aside {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(19,19,20,0.9), rgba(9,9,10,0.96));
}

.company-main h2 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(37px, 5vw, 62px);
  font-weight: 830;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.company-main h2 strong {
  color: var(--red-bright);
  font-weight: inherit;
}

.company-main p {
  max-width: 670px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.company-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 90% 10%, rgba(239,38,56,0.14), transparent 38%),
    rgba(14,14,15,0.88);
}

.company-aside-label {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.company-aside p {
  margin-top: 28px;
  color: #dad6d3;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.company-location {
  margin-top: 60px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.6;
}

.contact-section {
  padding-top: 34px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: end;
  padding: clamp(40px, 7vw, 78px);
  border: 1px solid rgba(239,38,56,0.23);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 8%, rgba(239,38,56,0.19), transparent 35%),
    linear-gradient(145deg, rgba(22,16,17,0.97), rgba(10,9,10,0.98));
  box-shadow: 0 28px 80px rgba(0,0,0,0.44);
}

.contact-title {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.contact-copy {
  max-width: 580px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.contact-email {
  display: inline-block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 760;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.contact-email::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform-origin: left;
  transition: transform 180ms ease;
}

.contact-email:hover::after,
.contact-email:focus-visible::after {
  transform: scaleX(0.62);
}

.contact-meta {
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  padding: 54px 0 42px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.footer-copy {
  display: grid;
  gap: 5px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-sub {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.footer-right {
  display: grid;
  gap: 12px;
  justify-items: end;
  color: var(--quiet);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms cubic-bezier(.2,.75,.2,1), transform 760ms cubic-bezier(.2,.75,.2,1);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--red-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Legal pages */
.legal-page {
  min-height: calc(100svh - 82px);
  padding: clamp(68px, 9vw, 112px) 0 120px;
}

.legal-header {
  max-width: 850px;
  margin-bottom: 70px;
}

.legal-title {
  font-size: clamp(53px, 8vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.066em;
}

.legal-intro {
  max-width: 700px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-updated {
  margin-top: 20px;
  color: var(--quiet);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(36px, 8vw, 100px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
}

.legal-nav a {
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.4;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: #fff;
  outline: none;
}

.legal-content {
  display: grid;
  gap: 54px;
}

.legal-section {
  scroll-margin-top: 116px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.legal-section p {
  margin-top: 15px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 20px;
}

.legal-section a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(239,38,56,0.7);
  text-underline-offset: 4px;
}

.not-found {
  min-height: calc(100svh - 82px);
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found-code {
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.not-found h1 {
  max-width: 760px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(50px, 8vw, 96px);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.064em;
}

.not-found p {
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.not-found .button {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy { max-width: 800px; }
  .hero-art { min-height: 500px; }
  .art-inner { min-height: 500px; }
  .section-grid { grid-template-columns: 1fr; }
  .section-label { position: static; }
  .company-card,
  .contact-panel { grid-template-columns: 1fr; }
  .contact-details { margin-top: 16px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 12px; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 74px; gap: 12px; }
  .brand-logo { width: 43px; height: 43px; }
  .brand-name { font-size: 12px; letter-spacing: 0.18em; }
  .brand-line { font-size: 9px; letter-spacing: 0.12em; }
  .nav-cta { min-height: 40px; padding-inline: 14px; font-size: 12px; }
  .nav-cta .cta-long { display: none; }
  .nav-cta .cta-short { display: inline; }
  .hero { padding-top: 68px; gap: 54px; }
  .hero-title { font-size: clamp(51px, 16.5vw, 72px); letter-spacing: -0.055em; }
  .hero-lead { font-size: 19px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-art { min-height: 480px; border-radius: 26px; }
  .art-inner { min-height: 480px; padding: 27px; }
  .art-mark { width: 64px; height: 64px; }
  .art-list { grid-template-columns: 1fr; }
  .art-list span { min-height: 48px; align-items: center; }
  .section { padding: 92px 0; }
  .section-title { font-size: clamp(42px, 13vw, 58px); }
  .section-copy { font-size: 18px; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 210px; padding: 27px; }
  .manifesto { padding: 38px 27px; border-radius: 26px; }
  .manifesto-quote { font-size: clamp(39px, 12.2vw, 56px); }
  .manifesto-note { font-size: 16px; }
  .company-main,
  .company-aside,
  .contact-panel { padding: 32px 26px; border-radius: 26px; }
  .company-main h2 { font-size: 38px; }
  .company-location { margin-top: 42px; }
  .contact-title { font-size: 50px; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-right { justify-items: start; }
  .footer-links { justify-content: flex-start; }
  .legal-page { padding-top: 64px; }
  .legal-title { font-size: 57px; }
  .legal-nav { grid-template-columns: 1fr; }
}

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

/* Calm editorial redesign — 2026-07-28 */
:root {
  --bg: #0a0a0a;
  --bg-soft: #0e0e0e;
  --panel: rgba(18, 18, 18, 0.88);
  --panel-solid: #121212;
  --text: #f2f0eb;
  --muted: #aaa7a0;
  --quiet: #77746e;
  --red: #c52632;
  --red-bright: #dc3743;
  --red-deep: #74131b;
  --gold: #b79a5f;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.15);
  --radius-lg: 16px;
  --radius-md: 12px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  background: var(--bg);
  font-weight: 400;
  letter-spacing: 0;
}
body::before,
body::after { display: none; }

.site-header {
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(18px);
}
.nav { min-height: 76px; }
.brand-logo { width: 40px; height: 40px; border-radius: 9px; filter: none; }
.brand { gap: 12px; }
.brand-copy { gap: 3px; }
.brand-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
}
.brand-line {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
}
.nav-link { font-size: 13px; font-weight: 450; padding: 9px 11px; }

.button {
  min-height: 48px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}
.button:hover,.button:focus-visible { transform: none; }
.button-primary {
  color: #f6f3ed;
  background: #a9232d;
  border-color: #b92b36;
  box-shadow: none;
}
.button-primary:hover,.button-primary:focus-visible { background:#b82a35; box-shadow:none; }
.button-quiet { background: transparent; }
.nav-cta { min-height: 40px; background: transparent; border-color: var(--line-strong); }

.hero {
  min-height: calc(100svh - 76px);
  grid-template-columns: minmax(0,1.18fr) minmax(300px,.82fr);
  gap: clamp(48px,8vw,112px);
  padding: clamp(84px,11vw,148px) 0 clamp(96px,12vw,160px);
}
.eyebrow {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: .18em;
}
.eyebrow::before { width: 24px; height: 1px; background: var(--red-bright); }
.hero-title,.section-title,.legal-title,.contact-title { font-weight: 400; }
.hero-title {
  max-width: 820px;
  font-size: clamp(62px,8vw,108px);
  line-height: .96;
  letter-spacing: -.052em;
}
.hero-title .accent { color: var(--text); }
.hero-lead {
  max-width: 610px;
  margin-top: 34px;
  color: #bbb7b0;
  font-size: clamp(18px,1.7vw,23px);
  line-height: 1.55;
  letter-spacing: -.012em;
}
.hero-actions { margin-top: 42px; gap: 14px; }

.hero-art {
  min-height: 600px;
  border-radius: 14px;
  background: #101010;
  box-shadow: none;
}
.hero-art::after { display:none; }
.art-inner { min-height:600px; padding:32px; }
.art-mark { width:64px; height:64px; border-radius:14px; box-shadow:none; }
.calm-field {
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 58% 44%, rgba(177,36,48,.28), transparent 0 19%, rgba(177,36,48,.10) 20% 31%, transparent 32%),
    linear-gradient(145deg, transparent 0 48%, rgba(255,255,255,.04) 48.2% 48.5%, transparent 48.7%),
    #101010;
}
.identity-note {
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:var(--quiet);
  font-size:11px;
  line-height:1.5;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.identity-note span:last-child { text-align:right; }

.section { padding: clamp(104px,13vw,170px) 0; }
.company-card { grid-template-columns:minmax(0,1.35fr) minmax(220px,.65fr); gap:18px; }
.company-main,.company-aside {
  border-radius:14px;
  background:#101010;
  box-shadow:none;
}
.company-main { padding:clamp(42px,6vw,74px); }
.company-main h2 {
  font-size:clamp(42px,5.4vw,70px);
  font-weight:400;
  line-height:1.06;
  letter-spacing:-.045em;
}
.company-main h2 strong { color:var(--text); font-weight:400; }
.company-main p {
  margin-top:34px;
  color:#aaa69f;
  font-size:17px;
  line-height:1.82;
}
.company-aside {
  min-height:100%;
  justify-content:flex-end;
  padding:clamp(32px,4vw,48px);
  background:#151313;
}
.company-location {
  margin-top:0 !important;
  color:#98948d !important;
  font-family:var(--font-body) !important;
  font-size:14px !important;
  font-weight:400 !important;
  line-height:1.75 !important;
  letter-spacing:0 !important;
}

.contact-section { padding-top: 22px; }
.contact-panel {
  border-color:var(--line);
  border-radius:14px;
  background:#f0ede6;
  box-shadow:none;
  color:#111;
}
.contact-panel .eyebrow { color:#6f6a62; }
.contact-panel .eyebrow::before { background:#a9232d; }
.contact-title {
  color:#111;
  font-size:clamp(52px,7vw,88px);
  line-height:.98;
  letter-spacing:-.055em;
}
.contact-copy { color:#605c56; }
.contact-email { color:#111; font-family:var(--font-body); font-weight:500; letter-spacing:-.02em; }
.contact-email::after { height:1px; background:#a9232d; }
.contact-meta { color:#77716a; }

.footer-name { font-family:var(--font-body); font-weight:600; letter-spacing:.16em; }
.footer-logo { border-radius:9px; }
.reveal { transform:translateY(12px); transition-duration:680ms; }

@media (max-width: 900px) {
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-art { min-height:430px; }
  .art-inner { min-height:430px; }
  .company-card { grid-template-columns:1fr; }
  .company-aside { min-height:210px; }
}

@media (max-width: 680px) {
  .shell { width:min(calc(100% - 28px), var(--max)); }
  .nav-links { display:none; }
  .hero { padding:70px 0 92px; gap:52px; }
  .hero-title { font-size:clamp(48px,15vw,72px); }
  .hero-lead { font-size:18px; }
  .hero-art { min-height:360px; }
  .art-inner { min-height:360px; padding:24px; }
  .identity-note { display:grid; }
  .identity-note span:last-child { text-align:left; }
  .section { padding:82px 0; }
  .company-main,.company-aside,.contact-panel { padding:30px; }
  .company-main h2 { font-size:40px; }
  .contact-panel { grid-template-columns:1fr; gap:48px; }
}

/* Premium hero object: restrained light, material depth, and subtle parallax. */
.hero-art {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  isolation: isolate;
  perspective: 1100px;
  background:
    radial-gradient(circle at 52% 44%, rgba(118, 22, 31, 0.10), transparent 42%),
    linear-gradient(145deg, #131313 0%, #0d0d0e 58%, #101010 100%);
  border-color: rgba(255,255,255,0.105);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.055),
    inset 0 -1px 0 rgba(0,0,0,0.72),
    0 30px 80px rgba(0,0,0,0.28);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), transparent 24%, transparent 76%, rgba(255,255,255,0.012)),
    radial-gradient(circle at 72% 17%, rgba(255,255,255,0.025), transparent 30%);
  box-shadow: inset 0 0 42px rgba(0,0,0,0.18);
}

.hero-visual {
  position: absolute;
  inset: -1.5%;
  width: 103%;
  height: 103%;
  display: block;
  pointer-events: none;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1.012);
  transform-origin: 50% 50%;
  transition: transform 700ms cubic-bezier(.2,.75,.2,1);
  will-change: transform;
}

.hero-art.is-interacting .hero-visual {
  transition-duration: 120ms;
}

.hero-visual .halo-ring,
.hero-visual .halo-fill {
  transform-origin: 600px 600px;
  animation: haloBreath 14s ease-in-out infinite;
}

.hero-visual .halo-fill { animation-delay: -2.2s; }

.hero-visual .light-pass {
  opacity: 0.045;
  animation: quietLightPass 26s ease-in-out infinite;
}

@keyframes haloBreath {
  0%, 100% { opacity: 0.76; }
  50% { opacity: 0.86; }
}

@keyframes quietLightPass {
  0%, 34%, 100% { opacity: 0.035; }
  49% { opacity: 0.095; }
  59% { opacity: 0.05; }
}

@media (hover: none), (pointer: coarse) {
  .hero-visual {
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1.008);
    transition-duration: 900ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual {
    transform: none !important;
    transition: none !important;
  }
  .hero-visual .halo-ring,
  .hero-visual .halo-fill,
  .hero-visual .light-pass { animation: none; }
  .hero-visual .halo-ring { opacity: 0.81; }
  .hero-visual .halo-fill { opacity: 0.78; }
  .hero-visual .light-pass { opacity: 0.045; }
}
