
:root {
  --ink: #070808;
  --ink-2: #0d0e0e;
  --panel: #111313;
  --panel-2: #151717;
  --steel: #2a2d2d;
  --line: rgba(219, 195, 157, 0.19);
  --paper: #e5dac7;
  --muted: #a59d91;
  --brass: #b48a50;
  --ember: #d46d2c;
  --ember-soft: rgba(212, 109, 44, 0.17);
  --shadow: 0 24px 80px rgba(0,0,0,.55);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 17% 9%, rgba(180,138,80,.08), transparent 28rem),
    radial-gradient(circle at 84% 26%, rgba(212,109,44,.06), transparent 25rem),
    linear-gradient(180deg, #070808, #0a0b0b 48%, #070808);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  z-index: 20;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: soft-light;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--ember); color: #fff; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem; top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: .7rem 1rem;
  border-radius: .25rem;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
}
.nav-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: block;
  width: min(285px, 54vw);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
}
.brand img { aspect-ratio: 1.7 / 1; object-fit: cover; object-position: center; }
nav { display: flex; align-items: center; gap: 1.5rem; }
nav a {
  text-decoration: none;
  color: #cfc5b4;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
nav a:hover, nav a:focus-visible { color: #fff; }
.nav-cta {
  border: 1px solid rgba(180,138,80,.55);
  padding: .62rem .85rem;
  background: rgba(10,10,10,.4);
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 8.7rem clamp(1rem, 3vw, 2.5rem) 5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,8,8,.94) 0%, rgba(7,8,8,.72) 46%, rgba(7,8,8,.18) 75%, rgba(7,8,8,.58) 100%),
    radial-gradient(circle at 72% 46%, rgba(212,109,44,.12), transparent 27rem);
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .76fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.hero-copy { padding-top: 3rem; }
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  font-weight: 500;
  margin-top: 0;
}
h1 {
  margin-bottom: 1.5rem;
  max-width: 800px;
  font-size: clamp(3.5rem, 7.6vw, 7.2rem);
  letter-spacing: -.055em;
}
h1 span { color: #b9a98f; }
.hero-lede {
  max-width: 610px;
  margin: 0;
  color: #beb5a7;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, #c28e4e, #7e562b);
  color: #0b0907;
  box-shadow: 0 12px 35px rgba(150,91,35,.21);
}
.button-primary:hover { background: linear-gradient(135deg, #d19a55, #926132); }
.button-secondary {
  border-color: rgba(229,218,199,.25);
  color: var(--paper);
  background: rgba(0,0,0,.22);
}
.button-secondary:hover { border-color: rgba(229,218,199,.5); }
.launch-note {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #9e978b;
  font-size: .85rem;
}
.status-light {
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 .28rem var(--ember-soft), 0 0 22px rgba(212,109,44,.58);
  animation: pulse 2.3s infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 .42rem rgba(212,109,44,.08), 0 0 30px rgba(212,109,44,.8); }
}

.hero-art { position: relative; justify-self: end; width: min(100%, 445px); }
.art-frame {
  position: relative;
  border: 1px solid rgba(180,138,80,.32);
  background: #080808;
  box-shadow: var(--shadow);
}
.art-frame::before, .art-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 65px; height: 65px;
  border-color: rgba(197,154,94,.72);
  pointer-events: none;
}
.art-frame::before { inset: -8px auto auto -8px; border-top: 1px solid; border-left: 1px solid; }
.art-frame::after { inset: auto -8px -8px auto; border-right: 1px solid; border-bottom: 1px solid; }
.art-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  filter: contrast(1.04) saturate(.9);
}
.art-caption {
  display: flex;
  justify-content: space-between;
  margin-top: .8rem;
  color: #756f66;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .61rem;
}
.hero-shadow {
  position: absolute;
  z-index: 0;
  width: 760px; height: 760px;
  right: -120px; bottom: -180px;
  border-radius: 50%;
  background: rgba(192,85,25,.08);
  filter: blur(80px);
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.section-heading h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 5.8vw, 5.7rem);
  letter-spacing: -.045em;
}
.section-intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
}

.manifesto {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem 6rem;
  border-top: 1px solid var(--line);
}
.manifesto-copy {
  padding-top: 2.3rem;
  color: #bdb4a7;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}
.manifesto-copy p:first-child { margin-top: 0; }
.principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.principles article {
  min-height: 245px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(22,24,24,.9), rgba(10,11,11,.72));
}
.principle-number {
  color: var(--ember);
  font-family: Georgia, serif;
  font-size: .77rem;
}
.principles h3 { font-size: 2rem; margin: 3.8rem 0 .75rem; }
.principles p { color: var(--muted); margin: 0; }

.projects {
  border-top: 1px solid var(--line);
}
.project-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 1rem;
  margin-top: 3rem;
}
.project-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(25,27,27,.95), rgba(11,12,12,.9));
  position: relative;
  overflow: hidden;
}
.project-card::after {
  content: "";
  position: absolute;
  width: 230px; height: 230px;
  right: -120px; bottom: -120px;
  border: 1px solid rgba(180,138,80,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(180,138,80,.02), 0 0 0 60px rgba(180,138,80,.018);
}
.project-featured {
  grid-row: span 2;
  min-height: 740px;
  background:
    radial-gradient(circle at 80% 85%, rgba(212,109,44,.13), transparent 20rem),
    linear-gradient(145deg, #191a1a, #0b0c0c);
}
.project-featured h3 { margin-top: auto; font-size: clamp(3.2rem, 7vw, 6.7rem); max-width: 650px; }
.project-featured p { font-size: 1.15rem; max-width: 620px; }
.project-topline, .project-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #847d72;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .63rem;
}
.project-status { color: var(--brass); }
.project-card h3 { font-size: clamp(2rem, 4vw, 3.4rem); margin: auto 0 1rem; }
.project-card p { color: var(--muted); max-width: 660px; margin: 0 0 2rem; }
.project-footer {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: auto;
  color: #b3aa9d;
}
.project-quiet { background: linear-gradient(145deg, rgba(17,18,18,.88), rgba(8,9,9,.96)); }

.founder { padding-top: 2rem; }
.founder-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 6rem) 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.founder h2 { font-size: clamp(2.8rem, 6vw, 5.8rem); margin-bottom: .6rem; }
.founder-title { color: var(--muted); margin: 0; }
blockquote {
  margin: 0;
  font-family: Georgia, serif;
  color: #c7bbab;
  font-size: clamp(1.7rem, 3.5vw, 3.3rem);
  line-height: 1.2;
  border-left: 1px solid var(--brass);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.launch { padding-top: 4rem; }
.launch-panel {
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(180,138,80,.27);
  background:
    linear-gradient(115deg, rgba(27,26,23,.97), rgba(12,13,13,.97)),
    url("assets/gothburn-industries-logo.webp") center / cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.launch-panel h2 { font-size: clamp(2.5rem, 5.2vw, 5rem); margin-bottom: 1rem; }
.launch-panel p { color: #afa699; max-width: 590px; }
.launch-meter { align-self: center; }
.meter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 0 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  color: #817b72;
  position: relative;
}
.meter-row::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: .48rem; height: .48rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #343737;
}
.meter-row.complete::before { background: var(--brass); }
.meter-row.active::before { background: var(--ember); box-shadow: 0 0 15px rgba(212,109,44,.5); }
.meter-row strong {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #b1a99d;
}

footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 2rem;
  align-items: end;
}
.footer-brand img { width: 250px; opacity: .74; }
.footer-brand p {
  margin: .45rem 0 0;
  color: #6f6a63;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .62rem;
}
.footer-legal { text-align: right; color: #706b64; font-size: .76rem; }
.footer-legal p { margin: .25rem 0; }


.brand-mark {
  position: relative;
}
.logo-tm {
  position: absolute;
  top: .32rem;
  right: -.35rem;
  color: #c8b28c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .68rem;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.85);
}
.footer-logo {
  display: inline-block;
  width: 250px;
}
.footer-logo img {
  width: 100%;
}
.footer-brand .footer-logo + p {
  margin-top: .45rem;
}
.footer-copyright {
  color: #8f887e;
  font-weight: 600;
}
.footer-trademark-notice {
  max-width: 720px;
  margin-left: auto !important;
  font-size: .68rem;
  line-height: 1.55;
  color: #615d57;
}

@media (max-width: 900px) {
  .site-header { position: absolute; }
  .nav-shell { min-height: 64px; }
  .menu-button {
    display: inline-flex;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.3);
  }
  .menu-button span:not(.sr-only) { height: 1px; width: 100%; background: var(--paper); }
  nav {
    display: none;
    position: absolute;
    left: 1rem; right: 1rem; top: 78px;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(8,9,9,.97);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  nav.open { display: flex; }
  nav a { padding: .65rem; }
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 2rem; }
  .hero-art { width: min(88%, 460px); justify-self: center; margin-top: 1.4rem; }
  .art-frame img { height: auto; object-fit: contain; object-position: center top; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-copy { padding-top: 0; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 215px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-featured { min-height: 560px; }
  .founder-card, .launch-panel { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
}

@media (max-width: 560px) {

  .logo-tm {
    top: .2rem;
    right: -.2rem;
    font-size: .58rem;
  }
  .footer-trademark-notice {
    margin-left: 0 !important;
  }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero { padding-inline: 1rem; }
  .hero-copy { padding-top: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-art { width: 100%; }
  .art-frame img { height: auto; object-fit: contain; }
  .art-caption { font-size: .52rem; }
  .section { width: min(calc(100% - 2rem), var(--max)); }
  .project-card, .project-featured { min-height: 430px; }
  .project-featured h3 { font-size: 3.4rem; }
  .launch-panel { gap: 2rem; }
  footer { padding-bottom: 5rem; }
}

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