:root {
  --bg: #060607;
  --text: #f4f5f7;
  --line: rgba(255, 255, 255, 0.12);
  --hive: #f3c640;
  --hive-deep: #1a1507;
  --container: 1160px;
  --gutter: 24px;
  --section-space: 92px;
  --section-space-mobile: 60px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
font-family: "balboa-plus-fill", sans-serif;
font-weight: 400;
font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.002em;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.divider-top {
  border-top: 1px solid var(--line);
}
h1 {
margin: 0 0 20px;
font-family: "balboa-plus-fill", sans-serif;
font-weight: 400;
font-style: normal;
line-height: 1.04;
letter-spacing: -0.02em;
font-size: 80px;
}
h2 {
  margin: 0;
 font-family: "balboa-plus-fill", sans-serif;
 font-weight: 400;
 font-style: normal;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(21px, 2.6vw, 28px);
}

.hero {
  text-align: center;
}

.hero-copy {
max-width: 128ch;
margin-inline: auto;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 56ch;
  height: auto;
  margin: 0 auto;
}
.section.updates {
padding-top: 0px;
}
.subhead {
margin: 0 0 20px;
max-width: 112ch;
font-size: 23px;
line-height: 1.4;
color: #ffffff;
letter-spacing: .5px;
font-weight: 100;
font-style: normal;
-webkit-font-smoothing: antialiased;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.cta-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 56px;
padding: 0 18px;
font-size: 23px;
text-decoration: none;
border: 2px solid transparent;
transition: opacity 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
font-family: "balboa-plus-fill", sans-serif;
font-weight: 200;
font-style: normal;
-webkit-font-smoothing: antialiased;
letter-spacing: -.5px;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-1px);
  opacity: 0.9;
}

.cta-primary {
  background: var(--hive);
  color: #0f0e09;
  border-color: var(--hive);
}

.cta-secondary {
  background: #060607;
  color: var(--hive);
  border-color: var(--hive);
}

.cta-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}

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

.tile {
  position: relative;
  background: #101218;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
}

.tile.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tile a,
.tile img {
  width: 100%;
  height: 100%;
  display: block;
}

.tile img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: filter 180ms ease, transform 280ms ease;
}

.tile a:hover img,
.tile a:focus-visible img {
  filter: brightness(0.9);
  transform: scale(1.04);
}

.visit {
  text-align: center;
  background: var(--hive);
}

.visit.divider-top {
  border-top-color: rgba(0, 0, 0, 0.16);
}

.visit h2 {
  margin-bottom: 14px;
  color: #0f0e09;
}

.visit-address {
margin: 0;
font-size: 30px;
line-height: 1.3;
color: #0f0e09;
font-weight: 500;
letter-spacing: -.5px;
}

.visit-subline {
  margin: 2px 0 0;
  font-size: 20px;
  color: #0f0e09;
}

.cta-visit {
  margin-top: 16px;
  background: #060607;
  color: var(--hive);
  border-color: #060607;
}

.cta-btn:focus-visible,
.tile a:focus-visible {
  outline: 2px solid #f3f4f6;
  outline-offset: 2px;
}

@media (max-width: 920px) {
  .updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  h1{font-size: 50px}
  .visit-address{font-size: 17px}
  .cta-btn{min-height: 48px;font-size: 17px;}
}

@media (max-width: 700px) {
  .section {
    padding: var(--section-space-mobile) 0;
  }

  .subhead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .updates-grid {
    gap: 8px;
  }

  .cta-btn {
    width: 100%;
    max-width: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
