:root {
  --bg: #f6f1e8;
  --panel: #fffaf2;
  --ink: #171513;
  --muted: #625b52;
  --line: #ded2c0;
  --black: #111111;
  --wood: #8b6544;
  --accent: #d8843a;
  --shadow: 0 24px 60px rgba(20, 15, 10, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(246, 241, 232, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 15, 10, .08);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .95rem;
}

nav { display: flex; gap: 18px; flex-wrap: wrap; }

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

nav a:hover { color: var(--ink); }

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

h3 { font-size: 1.18rem; margin-bottom: 10px; }

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 650px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary { background: var(--black); color: white; }
.button.secondary { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.35); }

.hero-image {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.status-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
  background: var(--black);
  color: white;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 28px;
}

.status-panel p { color: rgba(255,255,255,.76); margin-bottom: 0; }

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.status-list span { color: rgba(255,255,255,.58); }

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-heading { max-width: 780px; margin-bottom: 28px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  min-height: 210px;
}

.cards p, .split p, .about p, .contact p, .video-section p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.loop-list { margin: 24px 0 0; padding-left: 22px; color: var(--ink); font-weight: 750; }
.loop-list li { margin-bottom: 10px; }

.image-stack img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.video-section { padding-top: 20px; }

.video-frame {
  width: min(430px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #000;
}

.video-frame video {
  width: 100%;
  max-height: 620px;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-note {
  text-align: center;
  font-size: .92rem;
  margin-top: 14px;
}

.about {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 54px);
}

.about img {
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero, .status-panel, .split, .about, .grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  h1 { font-size: clamp(3.3rem, 16vw, 5.2rem); }
  .status-list li { flex-direction: column; gap: 2px; }
  .video-frame { width: min(360px, 100%); }
}
