@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&display=swap");

@font-face {
  font-family: "Editorial";
  src: local("Times New Roman");
  font-display: swap;
}

:root {
  --bg: #080807;
  --panel: #0f0e0c;
  --panel-soft: rgba(18, 16, 13, 0.68);
  --text: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.68);
  --subtle: rgba(245, 241, 232, 0.42);
  --line: rgba(245, 241, 232, 0.13);
  --line-strong: rgba(245, 241, 232, 0.22);
  --accent: #c8ab78;
  --accent-soft: rgba(200, 171, 120, 0.16);
  --max: 1480px;
  --side: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::selection {
  background: var(--accent);
  color: #0f0e0c;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,.28) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  padding: 26px var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 7, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  width: min(300px, 62vw);
  display: inline-flex;
  align-items: center;
  background: rgba(10, 10, 9, 0.18);
  padding: 4px 0;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
}

.desktop-nav a,
.mobile-contact {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, .74);
  position: relative;
  padding-bottom: 7px;
}

.desktop-nav a::after,
.mobile-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 240ms ease;
}

.desktop-nav a:hover::after,
.mobile-contact:hover::after {
  width: 100%;
}

.mobile-contact {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px var(--side) 48px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.jpg"), url("assets/hero-placeholder.svg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroScale 16s cubic-bezier(.18,.68,.17,1) forwards;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
 z-index: 2;
  background:
    linear-gradient(90deg, rgba(8,8,7,.97) 0%, rgba(8,8,7,.86) 34%, rgba(8,8,7,.36) 66%, rgba(8,8,7,.76) 100%),
    linear-gradient(180deg, rgba(8,8,7,.22) 0%, rgba(8,8,7,.18) 42%, rgba(8,8,7,.96) 100%),
    radial-gradient(circle at 70% 38%, rgba(200,171,120,.20), transparent 35%);
}

.hero-content {
  width: min(1100px, 100%);
  padding-bottom: clamp(96px, 12vw, 150px);
}

.eyebrow,
.section-kicker,
.panel-label {
  color: var(--accent);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 20px 0 0;
  font-family: "Editorial", "Times New Roman", Georgia, serif;
  font-size: clamp(52px, 8.8vw, 138px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.07em;
  max-width: 1160px;
  text-wrap: balance;
}

.hero-lead {
  margin: 34px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.68;
}

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

.button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(245,241,232,.48);
}

.button-primary {
  background: var(--text);
  color: #15120e;
  border-color: var(--text);
}

.button-secondary {
  background: rgba(245,241,232,.055);
  backdrop-filter: blur(16px);
}

.launch-panel {
  position: absolute;
  right: var(--side);
  bottom: clamp(92px, 9vw, 132px);
  width: min(410px, calc(100vw - 40px));
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(10, 9, 8, .54);
  backdrop-filter: blur(24px);
  box-shadow: 0 40px 110px rgba(0,0,0,.5);
}

.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-soft);
  margin-bottom: 20px;
}

.launch-panel strong {
  display: block;
  margin: 8px 0 12px;
  font-family: "Editorial", "Times New Roman", Georgia, serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.035em;
}

.launch-panel p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
  font-size: 14px;
}

.scroll-cue {
  position: absolute;
  left: var(--side);
  bottom: 36px;
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(245,241,232,.42);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left;
  animation: linePulse 2.2s ease-in-out infinite;
}

.section {
  padding: clamp(88px, 10vw, 158px) var(--side);
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}

.split,
.method-head,
.preview-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(36px, 7vw, 116px);
  align-items: end;
  margin-top: 24px;
}

.section-title {
  margin: 0;
  font-family: "Editorial", "Times New Roman", Georgia, serif;
  font-size: clamp(38px, 5.7vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.76;
}

.focus-grid {
  margin-top: clamp(58px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.focus-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245,241,232,.025), transparent);
  transition: background 260ms ease, transform 260ms ease;
}

.focus-card:hover {
  background: rgba(200,171,120,.055);
  transform: translateY(-4px);
}

.focus-card span,
.step span {
  display: block;
  color: rgba(200,171,120,.72);
  font-family: "Editorial", "Times New Roman", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 34px;
}

.focus-card h3,
.step h3,
.project-card h3 {
  margin: 0;
  font-family: "Editorial", "Times New Roman", Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.focus-card p,
.step p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 14px;
}

.method {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(245,241,232,.018), transparent),
    radial-gradient(circle at 80% 10%, rgba(200,171,120,.08), transparent 30%);
}

.method-head,
.method .section-kicker,
.method-steps {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.method-steps {
  margin-top: clamp(58px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.step {
  padding: clamp(26px, 3vw, 42px);
  background: var(--bg);
  min-height: 265px;
}

.preview-head {
  align-items: start;
}

.project-grid {
  margin-top: clamp(58px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  min-height: 430px;
}

.project-card:nth-child(1) {
  grid-row: span 2;
  min-height: 690px;
}

.project-card picture,
.project-card img {
  width: 100%;
  height: 100%;
}

.project-card img {
  object-fit: cover;
  opacity: .76;
  filter: saturate(.86) contrast(1.05);
  transition: transform 700ms ease, opacity 500ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(8,8,7,.88));
}

.project-card:hover img {
  transform: scale(1.045);
  opacity: .95;
}

.project-card div {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 42px);
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 42px);
}

.project-card span {
  display: block;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-section {
  padding: clamp(96px, 12vw, 190px) var(--side);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(200,171,120,.11), transparent 34%),
    linear-gradient(180deg, rgba(245,241,232,.025), transparent);
}

.contact-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  margin: 18px auto 34px;
  max-width: 970px;
  font-family: "Editorial", "Times New Roman", Georgia, serif;
  font-size: clamp(46px, 7.6vw, 120px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.contact-link {
  display: inline-block;
  font-size: clamp(20px, 2.3vw, 34px);
  color: var(--accent);
  border-bottom: 1px solid rgba(200,171,120,.45);
  padding-bottom: 8px;
}

.socials {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.socials a {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.socials a:hover {
  color: var(--text);
}

.site-footer {
  padding: 28px var(--side);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(245,241,232,.48);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(.2,.65,.17,1);
}

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

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

@keyframes heroScale {
  from { transform: scale(1.09); }
  to { transform: scale(1.025); }
}

@keyframes linePulse {
  0%, 100% { transform: scaleX(.35); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 1120px) {
  .focus-grid,
  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .project-card,
  .project-card:nth-child(1) {
    min-height: 520px;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 20px var(--side);
  }

  .brand {
    width: min(250px, 68vw);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-contact {
    display: inline-flex;
  }

  .hero {
    padding-top: 104px;
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8,8,7,.94), rgba(8,8,7,.62)),
      linear-gradient(180deg, rgba(8,8,7,.12), rgba(8,8,7,.96)),
      radial-gradient(circle at 60% 30%, rgba(200,171,120,.14), transparent 38%);
  }

  .hero-content {
    padding-bottom: 280px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.4vw, 74px);
    line-height: .92;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .launch-panel {
    left: var(--side);
    right: var(--side);
    bottom: 64px;
    width: auto;
    padding: 22px;
  }

  .launch-panel strong {
    font-size: 35px;
  }

  .scroll-cue {
    display: none;
  }

  .split,
  .method-head,
  .preview-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .focus-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: auto;
  }

  .project-card,
  .project-card:nth-child(1) {
    min-height: 410px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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


/* Logo position refinement: align logo more closely with the hero eyebrow text */
.site-header {
  align-items: flex-start;
}

.brand {
  position: relative;
  width: min(318px, 66vw);
  margin-left: -42px;
  margin-top: -12px;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .brand {
    width: min(255px, 74vw);
    margin-left: -14px;
    margin-top: -6px;
  }

  .brand img {
    transform: none;
  }
}


/* Modern navigation refinement */
.desktop-nav {
  gap: clamp(20px, 2.4vw, 36px);
}

.desktop-nav a,
.mobile-contact {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(245, 241, 232, 0.82) !important;
  position: relative;
  padding-bottom: 8px;
}

.desktop-nav a:hover,
.mobile-contact:hover {
  color: rgba(245, 241, 232, 1) !important;
}

.desktop-nav a::after,
.mobile-contact::after {
  height: 1px;
  background: var(--accent);
}

@media (max-width: 760px) {
  .mobile-contact {
    font-size: 12px !important;
    letter-spacing: 0.14em !important;
  }
}


/* Minimalist button typography refinement */
.button {
  min-height: 52px;
  padding: 0 24px;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.button-primary,
.button-secondary {
  backdrop-filter: blur(16px);
}

.project-card h3 {
  max-width: 26ch;
}


/* Portrait-friendly first project card for garage competition */
.project-card:nth-child(1) {
  min-height: 860px;
}

.project-card:nth-child(1) img {
  object-position: center center;
  opacity: .84;
}

@media (max-width: 980px) {
  .project-card:nth-child(1) {
    min-height: 720px;
  }
}


/* Garage project image: show the full, slightly vertical render instead of cropping it aggressively */
.project-card:nth-child(1) {
  background: #080807;
  min-height: 780px;
}

.project-card:nth-child(1) img {
  object-fit: contain;
  object-position: center center;
  padding: 18px;
  opacity: .90;
  background: #080807;
}

.project-card:nth-child(1):hover img {
  transform: none;
  opacity: .96;
}

@media (max-width: 980px) {
  .project-card:nth-child(1) {
    min-height: 680px;
  }

  .project-card:nth-child(1) img {
    padding: 10px;
  }
}

@media (max-width: 760px) {
  .project-card:nth-child(1) {
    min-height: 520px;
  }
}


/* Final garage card fit using the new portrait render */
.project-card:nth-child(1) {
  min-height: 860px;
  background: var(--panel);
}

.project-card:nth-child(1) img {
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  background: transparent !important;
  opacity: .84 !important;
}

.project-card:nth-child(1):hover img {
  transform: scale(1.03);
  opacity: .94 !important;
}

@media (max-width: 980px) {
  .project-card:nth-child(1) {
    min-height: 760px;
  }
}

@media (max-width: 760px) {
  .project-card:nth-child(1) {
    min-height: 620px;
  }
}


/* Hero cleanup: hide static hero background image behind video to avoid overlap/ghosting */
.hero-image {
  display: none !important;
}

.hero-video {
  opacity: 1 !important;
  background: #080807;
}

.hero-overlay {
  z-index: 2 !important;
}


/* FINAL: video-only hero, no static hero image fallback */
.hero-image {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  background-image: none !important;
}

.hero-media {
  background: #080807 !important;
}

.hero-video {
  z-index: 1 !important;
  opacity: 1 !important;
  background: #080807 !important;
}


/* Mobile hero refinement: keep the hero video visible with text over it */
@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 96px var(--side) 28px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    overflow: hidden;
  }

  .hero-media {
    position: absolute !important;
    inset: 0 !important;
    z-index: -3 !important;
    background: #080807 !important;
  }

  .hero-video {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background:
      linear-gradient(180deg,
        rgba(8,8,7,.18) 0%,
        rgba(8,8,7,.34) 34%,
        rgba(8,8,7,.80) 78%,
        rgba(8,8,7,.96) 100%),
      linear-gradient(90deg,
        rgba(8,8,7,.76) 0%,
        rgba(8,8,7,.36) 55%,
        rgba(8,8,7,.48) 100%) !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    padding: 0 0 180px !important;
  }

  .hero .eyebrow {
    width: auto !important;
    margin-left: 0 !important;
    margin-bottom: 18px !important;
    letter-spacing: .20em !important;
    text-align: left !important;
    text-align-last: left !important;
    color: var(--accent) !important;
  }

  .hero h1 {
    max-width: 95vw !important;
    font-size: clamp(45px, 14.8vw, 72px) !important;
    line-height: .92 !important;
    letter-spacing: -.065em !important;
    margin: 0 !important;
    color: var(--text) !important;
  }

  .hero-lead {
    max-width: 92vw !important;
    margin-top: 24px !important;
    color: rgba(245,241,232,.78) !important;
    font-size: 15.5px !important;
    line-height: 1.62 !important;
  }

  .hero-actions {
    margin-top: 28px !important;
    gap: 12px !important;
  }

  .hero-actions .button {
    width: 100% !important;
    min-height: 48px !important;
  }

  .launch-panel {
    position: absolute !important;
    left: var(--side) !important;
    right: var(--side) !important;
    bottom: 24px !important;
    width: auto !important;
    z-index: 4 !important;
    padding: 18px !important;
    background: rgba(10,9,8,.58) !important;
    border: 1px solid rgba(245,241,232,.16) !important;
    backdrop-filter: blur(18px) !important;
  }

  .launch-panel strong {
    font-size: 30px !important;
  }

  .launch-panel p:last-child {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .scroll-cue {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding-bottom: 170px !important;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 62px) !important;
  }

  .hero-lead {
    font-size: 14.5px !important;
  }
}


/* Mobile correction: lighter overlay + show full nav instead of only CONTACTS */
@media (max-width: 760px) {
  .site-header {
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .desktop-nav {
    display: flex !important;
    position: absolute !important;
    top: 18px !important;
    right: var(--side) !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .desktop-nav a {
    font-size: 9px !important;
    letter-spacing: .13em !important;
    color: rgba(245,241,232,.82) !important;
    padding-bottom: 4px !important;
  }

  .mobile-contact {
    display: none !important;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(8,8,7,.06) 0%,
        rgba(8,8,7,.14) 32%,
        rgba(8,8,7,.48) 76%,
        rgba(8,8,7,.72) 100%),
      linear-gradient(90deg,
        rgba(8,8,7,.48) 0%,
        rgba(8,8,7,.20) 52%,
        rgba(8,8,7,.24) 100%) !important;
  }

  .hero-video {
    opacity: 1 !important;
    filter: none !important;
  }

  .hero h1 {
    text-shadow: 0 12px 38px rgba(0,0,0,.58) !important;
  }

  .hero-lead {
    color: rgba(245,241,232,.84) !important;
    text-shadow: 0 8px 28px rgba(0,0,0,.55) !important;
  }

  .hero .eyebrow {
    text-shadow: 0 8px 24px rgba(0,0,0,.50) !important;
  }

  .launch-panel {
    background: rgba(10,9,8,.42) !important;
  }
}

@media (max-width: 420px) {
  .desktop-nav {
    gap: 9px !important;
  }

  .desktop-nav a {
    font-size: 8.3px !important;
    letter-spacing: .11em !important;
  }
}


/* Desktop hero video visibility refinement — logo untouched */
@media (min-width: 761px) {
  .hero-video {
    opacity: 1 !important;
    filter: none !important;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg,
        rgba(8,8,7,.48) 0%,
        rgba(8,8,7,.26) 38%,
        rgba(8,8,7,.16) 68%,
        rgba(8,8,7,.26) 100%),
      linear-gradient(180deg,
        rgba(8,8,7,.06) 0%,
        rgba(8,8,7,.18) 48%,
        rgba(8,8,7,.68) 100%),
      radial-gradient(circle at 70% 38%, rgba(200,171,120,.08), transparent 35%) !important;
  }

  .hero h1 {
    text-shadow: 0 18px 54px rgba(0,0,0,.44) !important;
  }

  .hero-lead,
  .hero .eyebrow {
    text-shadow: 0 10px 32px rgba(0,0,0,.44) !important;
  }
}
