@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --paper: #f4efe5;
  --bone: #fbf8f1;
  --stock: #e9dfc9;
  --ink: #11100e;
  --muted: #625a4d;
  --rust: #c9412a;
  --gold: #e3a32d;
  --harbour: #145c77;
  --kelp: #6b8e4e;
  --rule: 2px solid var(--ink);
  --radius: 8px;
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
  --wrap: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rust);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--bone);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.concept-bar {
  background: var(--ink);
  color: var(--bone);
  padding: 9px 16px;
  font-family: var(--mono);
  font-size: 0.74rem;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  border-bottom: var(--rule);
}

.site-header {
  background: rgba(244, 239, 229, 0.96);
  border-bottom: var(--rule);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.header-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: block;
  width: 136px;
}

.brand:hover,
.footer-logo:hover {
  background: transparent;
}

.site-nav,
.header-actions,
.hero-actions,
.menu-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav {
  justify-content: center;
}

.site-nav a {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--rule);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  font-size: 0.78rem;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--rust);
  color: var(--bone);
}

.btn-primary:hover {
  background: var(--ink);
  color: var(--gold);
}

.btn-secondary {
  background: var(--bone);
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-plain {
  background: transparent;
  color: var(--ink);
}

.hero {
  padding: 72px 0 56px;
  border-bottom: var(--rule);
  background:
    linear-gradient(90deg, rgba(20, 92, 119, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(20, 92, 119, 0.12) 0 1px, transparent 1px 100%);
  background-size: 38px 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.tile-label {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--harbour);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 7vw, 5.9rem);
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-photo {
  margin: 0;
  border: var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  min-height: 540px;
  display: grid;
  grid-template-rows: 1fr auto;
}

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

.hero-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: var(--gold);
  border-top: var(--rule);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.quick-info {
  border-bottom: var(--rule);
  background: var(--bone);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-grid article {
  min-width: 0;
  padding: 24px;
  border-left: var(--rule);
}

.info-grid article:last-child {
  border-right: var(--rule);
}

.info-grid strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.info-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading > p:last-child,
.story-copy > p,
.faq-grid > div:first-child p,
.owner-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 28px;
  align-items: end;
}

.beer-food {
  background: var(--paper);
}

.beer-shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.beer-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 270px auto;
  background: var(--bone);
  border: var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}

.beer-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background: var(--stock);
  border-bottom: var(--rule);
}

.beer-card div {
  padding: 18px;
}

.beer-card p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.beer-card span {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--harbour);
  text-transform: uppercase;
}

.menu-panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--harbour);
  color: var(--bone);
  border: var(--rule);
  border-radius: var(--radius);
}

.menu-panel .eyebrow,
.menu-panel p {
  color: var(--bone);
}

.menu-panel h3 {
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.menu-panel p:last-child {
  max-width: 780px;
  margin-top: 14px;
}

.story {
  background: var(--stock);
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
}

.story-media {
  border: var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.proof-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-grid article {
  min-width: 0;
  padding: 18px;
  background: var(--bone);
  border: var(--rule);
  border-radius: var(--radius);
}

.proof-grid span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--rust);
}

.proof-grid p {
  color: var(--ink);
  font-size: 0.92rem;
}

.gallery-band {
  padding: 22px 0;
  background: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border: var(--rule);
  border-color: var(--bone);
  border-radius: var(--radius);
}

.groups {
  background: var(--paper);
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.group-card {
  min-width: 0;
  padding: 22px;
  background: var(--bone);
  border: var(--rule);
  border-radius: var(--radius);
}

.group-card h3 {
  font-size: 1.32rem;
}

.group-card p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.group-card a {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.group-card-accent {
  background: var(--gold);
}

.group-card-accent .tile-label,
.group-card-accent p {
  color: var(--ink);
}

.faq {
  background: var(--stock);
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-list article {
  padding: 20px;
  background: var(--bone);
  border: var(--rule);
  border-radius: var(--radius);
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.owner-cta {
  padding: 56px 0;
  background: var(--harbour);
  color: var(--bone);
  border-bottom: var(--rule);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.owner-grid .eyebrow,
.owner-grid p {
  color: var(--bone);
}

.owner-grid h2 {
  max-width: 840px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.site-footer {
  padding: 42px 0 24px;
  background: var(--ink);
  color: var(--bone);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 126px;
  margin-bottom: 18px;
  filter: brightness(1.2);
}

.site-footer a {
  color: var(--bone);
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer nav {
  display: grid;
  gap: 10px;
  text-align: right;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.disclaimer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 248, 241, 0.35);
  color: rgba(251, 248, 241, 0.74);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .header-grid {
    grid-template-columns: 140px 1fr;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 14px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .hero-grid,
  .story-grid,
  .faq-grid,
  .owner-grid,
  .section-heading-split,
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-photo {
    min-height: 0;
  }

  .hero-photo img {
    min-height: 320px;
  }

  .info-grid,
  .beer-shelf,
  .group-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid img {
    height: 260px;
  }

  .menu-actions,
  .owner-grid .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(100% - 24px, 1180px);
  }

  .concept-bar {
    font-size: 0.68rem;
  }

  .site-header {
    position: static;
  }

  .header-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 14px;
  }

  .brand {
    width: 124px;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .menu-actions {
    width: 100%;
  }

  .site-nav a {
    padding: 8px 0;
  }

  .btn {
    width: 100%;
    min-height: 46px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13.5vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .hero {
    padding: 34px 0 36px;
  }

  .hero-lede {
    margin: 18px 0;
  }

  .hero-photo img {
    min-height: 260px;
  }

  .hero-photo figcaption {
    display: block;
  }

  .hero-photo figcaption strong {
    display: block;
    margin-top: 5px;
  }

  .info-grid,
  .beer-shelf,
  .group-grid,
  .faq-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .info-grid article,
  .info-grid article:last-child {
    border: 0;
    border-bottom: var(--rule);
  }

  .info-grid article:first-child {
    border-top: 0;
  }

  .section {
    padding: 54px 0;
  }

  .beer-card {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto;
  }

  .beer-card img {
    border-right: var(--rule);
    border-bottom: 0;
    padding: 10px;
    min-height: 190px;
  }

  .menu-panel,
  .group-card,
  .faq-list article,
  .proof-grid article {
    padding: 18px;
  }

  .story-media img {
    aspect-ratio: 4 / 3;
  }

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

  .site-footer nav {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
