:root {
  --bg: #f3eadf;
  --bg-deep: #e6d4bd;
  --surface: rgba(255, 250, 244, 0.84);
  --surface-strong: #fffaf3;
  --ink: #1d1712;
  --muted: #65584e;
  --line: rgba(116, 76, 43, 0.16);
  --copper: #9f4a22;
  --copper-dark: #6c2f13;
  --malt: #d39a52;
  --forest: #3d6b35;
  --panel-dark: #2f221a;
  --shadow: 0 26px 70px rgba(73, 43, 20, 0.12);
  --shadow-soft: 0 16px 32px rgba(73, 43, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(211, 154, 82, 0.26), transparent 22%),
    radial-gradient(circle at top right, rgba(159, 74, 34, 0.14), transparent 18%),
    linear-gradient(180deg, #fbf2e6 0%, var(--bg) 100%);
}

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

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

.site-header,
.hero-copy,
.live-strip,
.surface-card,
.tap-card,
.media-card,
.lobster-feature-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

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

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

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

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

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

.site-nav a.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 24px;
  margin-bottom: 30px;
}

.hero-copy,
.live-strip,
.surface-card,
.tap-card,
.media-card,
.lobster-feature-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.hero-copy {
  min-height: 620px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.card-label,
.tap-number,
.tap-style,
.meta-label {
  margin: 0;
  color: var(--copper);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.schedule-card h3,
.tap-beer-name,
.timeline-list strong {
  font-family: Georgia, "Times New Roman", serif;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  max-width: 760px;
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  line-height: 1;
}

.hero-lead,
.prose-card p,
.hero-stage-copy,
.schedule-note,
.timeline-list span,
.beer-list li,
.tap-description {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

.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.74);
  border: 1px solid rgba(108, 47, 19, 0.16);
}

.hero-photo-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card::after,
.media-card::after,
.lobster-feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(29, 23, 18, 0.76));
}

.photo-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: #fff8ed;
}

.photo-caption span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 248, 237, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-caption strong {
  display: block;
  max-width: 540px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.live-strip {
  margin: -4px 0 34px;
  padding: 24px;
  color: #f7ecdd;
  background: linear-gradient(160deg, rgba(111, 61, 31, 0.93), rgba(33, 23, 16, 0.97));
}

.live-strip-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr) minmax(360px, 1.35fr);
  gap: 22px;
  align-items: center;
}

.hero-stage-head,
.section-head-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.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.14);
  color: #fff4e7;
  font-size: 0.78rem;
}

.hero-stage-copy {
  margin: 0;
  color: rgba(247, 236, 221, 0.84);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.hero-metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 240, 225, 0.12);
}

.hero-metric dt {
  margin: 0 0 8px;
  color: rgba(247, 236, 221, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metric dd {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.content-section {
  margin-bottom: 28px;
}

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

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.section-intro {
  max-width: 880px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.story-grid,
.lobster-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

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

.visit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founding-card {
  margin-top: 18px;
}

.surface-card {
  padding: 26px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.prose-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.prose-card .card-label + h3 {
  margin-top: 12px;
}

.schedule-note a {
  color: var(--copper-dark);
  font-weight: 700;
}

.media-card,
.lobster-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: var(--panel-dark);
}

.media-card img,
.lobster-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacked-media-card {
  min-height: 100%;
}

.inline-photo {
  margin: 24px 0 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ead6ba;
}

.inline-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.inline-photo figcaption {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.wide-photo img {
  aspect-ratio: 16 / 9;
}

.tap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tap-card {
  padding: 22px;
}

.tap-card-empty {
  grid-column: 1 / -1;
  text-align: center;
}

.tap-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.tap-card-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.tap-beer-name {
  margin: 8px 0 4px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.tap-style {
  margin-bottom: 16px;
}

.tap-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.tap-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(244, 233, 219, 0.72);
}

.tap-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.12rem;
}

.tap-description {
  margin: 0;
}

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

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

.beer-style-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.beer-style-grid span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--copper-dark);
  background: rgba(255, 250, 244, 0.82);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

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

.lobster-feature-card {
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(211, 154, 82, 0.2), transparent 22%),
    linear-gradient(180deg, #f8efdf, #f2e2cb);
}

.lobster-feature-card::after {
  display: none;
}

.lobster-feature-card .card-label,
.lobster-feature-card .timeline-list {
  position: relative;
  z-index: 1;
}

.lobster-feature-card .card-label {
  color: #f4c17d;
}

.lobster-feature-card .timeline-list li {
  background: rgba(255, 250, 243, 0.9);
}

.lobster-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  width: min(190px, 42%);
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.86);
}

.lobster-photo {
  position: absolute;
  inset: 0;
}

.timeline-list strong {
  font-size: 1.05rem;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  gap: 12px;
}

.news-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--copper-dark);
  background: rgba(244, 233, 219, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-card {
  background:
    radial-gradient(circle at top right, rgba(211, 154, 82, 0.2), transparent 22%),
    linear-gradient(180deg, #fff8ed, #f3dfc5);
}

.schedule-card h3 {
  margin: 12px 0 10px;
  font-size: 1.7rem;
}

.schedule-time {
  margin: 0 0 12px;
  color: var(--copper-dark);
  font-size: 1.12rem;
  font-weight: 700;
}

.legal-page .section-head {
  max-width: 860px;
}

.legal-page h1 {
  margin: 10px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1;
}

.legal-card {
  margin-top: 22px;
  max-width: 960px;
}

.legal-card h2,
.legal-card h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.legal-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.legal-card h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 1.28rem;
}

.legal-card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.68;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-meta {
  margin-top: 28px;
}

.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: 1180px) {
  .hero-section,
  .story-grid,
  .lobster-grid,
  .tap-grid,
  .beer-style-grid,
  .about-feature-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-photo-card {
    min-height: auto;
  }

  .hero-photo-card {
    aspect-ratio: 16 / 10;
  }

  .live-strip-copy {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .tap-stats {
    grid-template-columns: 1fr;
  }
}

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

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

  .site-nav {
    width: 100%;
    gap: 12px 16px;
  }

  .hero-copy,
  .surface-card,
  .tap-card {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 9vw, 3.3rem);
  }

  .section-head-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-photo-card {
    aspect-ratio: 4 / 3;
  }

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

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