* {
  box-sizing: border-box;
}

:root {
  --background: #f5f1e8;
  --foreground: #17130f;
  --ink: #1f1914;
  --muted: #6f6255;
  --line: rgba(31, 25, 20, 0.16);
  --paper: #fffaf1;
  --paper-strong: #ede1cd;
  --green: #253d35;
  --red: #743527;
  --gold: #b27735;
}

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

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: #fffaf1;
  background: #17130f;
}

.heroMedia,
.heroShade {
  position: absolute;
  inset: 0;
}

.heroMedia img {
  height: 100%;
  opacity: 0.58;
}

.heroShade {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.92) 0%, rgba(23, 19, 15, 0.74) 42%, rgba(23, 19, 15, 0.48) 100%),
    linear-gradient(180deg, rgba(23, 19, 15, 0.35) 0%, rgba(23, 19, 15, 0.88) 100%);
}

.heroInner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  min-height: 92vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 0 54px;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.22);
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.82rem;
}

.brand {
  color: #fffaf1;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.menu a {
  text-decoration: none;
}

.menu a:hover {
  color: #fffaf1;
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
  margin-top: 140px;
}

.heroCopy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e3a95f;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.93;
  max-width: 920px;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.14;
}

.lede {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  line-height: 1.48;
}

.statusPanel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.14);
  backdrop-filter: blur(14px);
}

.statusPanel div {
  padding: 18px;
  background: rgba(23, 19, 15, 0.46);
}

.panelLabel,
.metric span,
.shotMeta span,
dt {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.statusPanel .panelLabel {
  color: rgba(255, 250, 241, 0.62);
}

.statusPanel strong {
  color: #fffaf1;
  font-size: 1rem;
  line-height: 1.25;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.currentFocus,
.aboutCta {
  border-bottom: 1px solid var(--line);
}

.sectionHeader {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.focusGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.focusLead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.58rem);
  line-height: 1.42;
}

.focusMetrics,
.readinessGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.readinessGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric {
  min-height: 160px;
  padding: 22px;
  background: var(--paper);
}

.metric strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.22rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.actionList {
  display: grid;
  border-top: 1px solid var(--line);
}

.actionItem {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.actionItem span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
}

.actionItem p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 2.1vw, 1.7rem);
  line-height: 1.26;
}

.updateList {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.updateItem {
  min-height: 250px;
  padding: 20px;
  background: var(--paper);
}

.updateItem span,
.voiceCard span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.updateItem p,
.voiceIntro p,
.voiceCard p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
}

.shotGrid,
.voiceGrid,
.decisionList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shotCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.shotImage {
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.shotImage img {
  height: 100%;
}

.shotMeta {
  padding: 16px;
}

.shotMeta p {
  margin-bottom: 14px;
  color: var(--green);
  font-weight: 750;
}

.shotMeta dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.shotMeta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.voiceLab {
  border-top: 1px solid var(--line);
}

.voiceIntro {
  max-width: 800px;
  margin: -10px 0 28px;
}

.voiceIntro p {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.7vw, 1.32rem);
}

.voiceCard {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green);
  color: #fffaf1;
}

.voiceCard h3 {
  color: #fffaf1;
}

.voiceCard p {
  margin-bottom: 22px;
  color: rgba(255, 250, 241, 0.74);
}

.voiceCard span {
  color: #e3a95f;
}

.voiceCard audio {
  width: 100%;
  height: 42px;
}

.scenes {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 560px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sceneBlock {
  padding: clamp(34px, 6vw, 70px);
}

.sceneBlock.primary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--green);
}

.sceneBlock.primary h2,
.sceneBlock.primary p:not(.eyebrow) {
  color: #fffaf1;
}

.sceneBlock p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.sceneBlock.garden {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  gap: 30px;
  background: var(--paper-strong);
}

.gardenImage {
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.gardenImage img {
  height: 100%;
}

.decisionList {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.decisionList p {
  min-height: 190px;
  margin: 0;
  padding: 22px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.storyboardCallout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.storyboardCallout p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--green);
  color: #fffaf1;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero,
  .heroInner {
    min-height: auto;
  }

  .heroGrid,
  .focusGrid,
  .sectionHeader,
  .scenes,
  .storyboardCallout {
    grid-template-columns: 1fr;
  }

  .heroGrid {
    margin-top: 78px;
  }

  .readinessGrid,
  .focusMetrics,
  .shotGrid,
  .updateList,
  .voiceGrid,
  .decisionList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .heroInner,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .heroInner {
    padding: 18px 0 40px;
  }

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

  .menu {
    justify-content: flex-start;
  }

  .heroGrid {
    margin-top: 54px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.75rem, 18vw, 4.6rem);
  }

  .section {
    padding: 58px 0;
  }

  .readinessGrid,
  .focusMetrics,
  .shotGrid,
  .updateList,
  .voiceGrid,
  .decisionList {
    grid-template-columns: 1fr;
  }

  .actionItem {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .metric,
  .updateItem,
  .voiceCard,
  .decisionList p {
    min-height: auto;
  }

  .sceneBlock {
    padding: 36px 18px;
  }
}
