:root {
  --ink: #0b0e10;
  --charcoal: #121719;
  --panel: #1a2023;
  --panel-2: #20272a;
  --paper: #f4f0e7;
  --white: #ffffff;
  --muted: #d0cdc5;
  --line: rgba(255, 255, 255, 0.16);
  --copper: #d59a57;
  --copper-dark: #72471e;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.display, .section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.045em;
}
.section-title {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
}
.copy {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.08rem;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #111; background: var(--copper); }
.button-secondary {
  border-color: rgba(255,255,255,.28);
  color: var(--white);
  background: rgba(255,255,255,.035);
}
.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--copper);
  font-weight: 800;
}
.text-link::after { content: " →"; margin-left: 6px; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(11,14,16,.8);
  backdrop-filter: blur(15px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 850;
  letter-spacing: .045em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  font-size: .7rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .93rem;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 1.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,9,10,.96) 0%, rgba(7,9,10,.78) 45%, rgba(7,9,10,.4) 100%),
    url("../images/depot-hero-concept.png") center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 150px;
  padding-bottom: 100px;
}
.hero h1 {
  font-size: clamp(3.8rem, 8vw, 7.7rem);
  line-height: .92;
}
.hero h1 span { display: block; color: var(--copper); }
.hero-copy {
  max-width: 700px;
  margin: 28px 0 34px;
  color: #e2ded6;
  font-size: 1.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.statement { background: var(--charcoal); }
.statement-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.pullquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.concept {
  color: #17191a;
  background: #f1ede3;
}
.concept .eyebrow { color: var(--copper-dark); }
.concept .copy { color: #59574f; }
.concept-frame {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(20,20,20,.16);
  border-radius: 26px;
  background: #e6dfd2;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.concept-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  color: #615f58;
  border-top: 1px solid rgba(20,20,20,.1);
  font-size: .9rem;
}
.concept-caption strong { color: #191b1c; }

.services { background: #12181b; }
.services-intro { color: #e0ddd5; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}
.card {
  min-height: 265px;
  padding: 29px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: #1b2226;
  transition: .2s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(213,154,87,.58);
}
.card-number {
  margin-bottom: 31px;
  color: var(--copper);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .15em;
}
.card h3 { margin: 0 0 12px; color: #fff; font-size: 1.3rem; }
.card p { margin: 0; color: #dedbd4; }

.story { background: #0f1315; }
.story-copy { max-width: 880px; margin-bottom: 48px; }
.closing-line {
  margin-top: 28px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}
.photo-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
}
.photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo:first-child {
  min-height: 470px;
  margin-top: 70px;
  margin-bottom: 35px;
}
.photo img { height: 100%; object-fit: cover; }
.photo:first-child img { object-position: 50% 44%; }
.photo:last-child img { object-position: 54% 50%; }
.caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(7,9,10,.78);
  backdrop-filter: blur(10px);
  color: #f4f0e8;
  font-size: .88rem;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.step {
  position: relative;
  min-height: 235px;
  padding: 74px 27px 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}
.step-number {
  position: absolute;
  top: 18px;
  left: 26px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  font-weight: 850;
}
.step.current {
  border-color: rgba(213,154,87,.6);
  background: linear-gradient(180deg, rgba(213,154,87,.13), var(--panel));
}
.step.current .step-number { color: #111; background: var(--copper); }
.step small {
  color: var(--copper);
  font-weight: 800;
  letter-spacing: .11em;
}
.step h3 { margin: 10px 0; color: #fff; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

.supporters { background: var(--charcoal); }
.supporter-box {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 48px;
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, var(--panel-2), #151a1c);
}
.supporter-box ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.supporter-note { color: #9b9f9d; font-size: .9rem; }

.signup { color: #151515; background: var(--copper); }
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}
.signup .eyebrow { color: var(--copper-dark); }
.signup .copy { color: rgba(20,20,20,.78); }
.form {
  padding: 31px;
  border-radius: var(--radius);
  background: #101416;
  color: var(--paper);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 15px; }
label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 750;
}
input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #1a2023;
}
input:focus, select:focus, textarea:focus { border-color: var(--copper); }
textarea { min-height: 108px; resize: vertical; }
.form-note { margin: 11px 0 0; color: #979b99; font-size: .8rem; }

.page-hero {
  padding: 165px 0 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(213,154,87,.18), transparent 28%),
    linear-gradient(135deg, #182023, #090c0d);
}
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: .95;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 42px;
}
.feature {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}
.feature h3 { margin: 0 0 10px; color: #fff; }
.feature p { margin: 0; color: var(--muted); }

footer {
  padding: 42px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
footer strong { color: var(--paper); }
.domain { color: var(--copper); font-weight: 800; }

@media (max-width: 940px) {
  .statement-grid, .supporter-box, .signup-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .roadmap { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #111719;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}
@media (max-width: 650px) {
  .section { padding: 76px 0; }
  .cards, .roadmap, .photo-grid, .feature-list { grid-template-columns: 1fr; }
  .photo, .photo:first-child { min-height: 430px; margin: 0; }
  .supporter-box { padding: 32px 24px; }
  .hero-inner { padding-top: 130px; padding-bottom: 75px; }
  .hero h1 { font-size: 3.65rem; }
  .header-inner > .button { display: none; }
}
