:root {
  --bg: #f2e6d8;
  --bg-deep: #e2c9ae;
  --surface: rgba(255, 248, 240, 0.84);
  --surface-strong: #fff8f1;
  --ink: #1c1712;
  --muted: #63564a;
  --line: rgba(128, 80, 45, 0.15);
  --copper: #9f4b22;
  --copper-dark: #6a2e14;
  --amber: #d4974a;
  --foam: #f8ebd8;
  --shadow: 0 28px 80px rgba(76, 43, 20, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 151, 74, 0.24), transparent 24%),
    radial-gradient(circle at top right, rgba(159, 75, 34, 0.14), transparent 20%),
    linear-gradient(180deg, #f7eedf 0%, var(--bg) 100%);
}

.lobster-shell {
  width: min(1240px, calc(100% - 34px));
  margin: 0 auto;
  padding: 22px 0 72px;
}

.site-header,
.hero-copy,
.hero-stage,
.section-card,
.panel,
.metric-card,
.note-card,
.tap-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: rgba(255, 250, 244, 0.82);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.brand img {
  width: 44px;
  height: 44px;
}

.site-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--copper-dark);
  text-decoration: none;
  font-size: 0.96rem;
}

.site-nav a.active {
  font-weight: 700;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 24px;
  margin-bottom: 28px;
}

.hero-copy {
  padding: 42px;
  background: var(--surface);
}

.kicker,
.mini-kicker,
.note-label,
.metric-label,
.tap-label {
  margin: 0;
  color: var(--copper);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.stage-panel h2,
.tap-card h3 {
  font-family: Georgia, "Iowan Old Style", serif;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
}

.lead,
.stage-panel p,
.panel p,
.note-card p,
.note-list li,
.tap-card p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 1.02rem;
}

.hero-actions,
.metric-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 26px 0 28px;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
}

.button-secondary {
  color: var(--copper-dark);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(106, 46, 20, 0.16);
}

.metric-card {
  flex: 1 1 150px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.62);
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.hero-stage {
  display: grid;
  gap: 18px;
  align-content: space-between;
  padding: 26px;
  color: #fff2e4;
  background:
    radial-gradient(circle at 16% 16%, rgba(218, 172, 101, 0.2), transparent 20%),
    linear-gradient(160deg, rgba(106, 57, 28, 0.94), rgba(26, 18, 14, 0.96));
}

.hero-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero-image-card figcaption {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stage-panel {
  border: 1px solid rgba(255, 241, 226, 0.1);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 248, 240, 0.08);
}

.stage-panel h2 {
  margin: 12px 0 10px;
  font-size: 2rem;
  line-height: 1.04;
}

.stage-panel-dark,
.stage-live {
  color: rgba(255, 240, 224, 0.84);
}

.stage-head,
.live-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f7ecdd;
  font-size: 0.78rem;
}

.live-lines {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.live-line {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.live-line:last-child {
  border-bottom: 0;
}

.section-card {
  margin-bottom: 28px;
  padding: 30px;
  background: rgba(255, 249, 242, 0.76);
}

.section-head {
  max-width: 840px;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
}

.story-grid,
.notes-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.notes-grid {
  grid-template-columns: repeat(3, 1fr);
}

.panel,
.note-card,
.tap-card {
  padding: 24px;
  background: var(--surface-strong);
}

.panel-soft {
  background:
    radial-gradient(circle at top right, rgba(221, 181, 119, 0.26), transparent 30%),
    var(--surface-strong);
}

.project-photo {
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.project-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.timeline-list li {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(244, 233, 219, 0.72);
}

.timeline-list strong {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: 1.1rem;
}

.timeline-list span {
  color: var(--muted);
  line-height: 1.55;
}

blockquote {
  margin: 24px 0 0;
  padding: 18px 22px;
  border-left: 5px solid var(--copper);
  border-radius: 0 18px 18px 0;
  color: var(--copper-dark);
  background: rgba(244, 233, 219, 0.74);
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.note-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.note-list li + li {
  margin-top: 10px;
}

.note-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.other-taps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tap-card h3 {
  margin: 8px 0 6px;
  font-size: 1.8rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-nav a {
  color: var(--copper-dark);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .hero-section,
  .story-grid,
  .notes-grid,
  .other-taps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .lobster-shell {
    width: min(100% - 20px, 100%);
    padding-top: 12px;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .section-card,
  .panel,
  .note-card,
  .tap-card {
    padding: 20px;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}
