@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Droid+Sans:wght@400;700&family=Oswald:wght@400;500;600;700&display=swap");

:root {
  --ink: #06131d;
  --ink-2: #0f2130;
  --panel: rgba(8, 17, 24, 0.86);
  --panel-strong: rgba(7, 16, 23, 0.95);
  --aqua: #88cfe2;
  --aqua-deep: #5bb7d2;
  --sand: #f4f1e8;
  --paper: #f8fbfd;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Droid Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sand);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(136, 207, 226, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #041019 0%, #0a1823 48%, #07131d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.2));
}

a {
  color: inherit;
}

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

figure {
  margin: 0;
}

.site {
  width: min(1320px, calc(100% - 1rem));
  margin: 0 auto;
  padding: 0.75rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.9rem 1.1rem;
  background: var(--panel-strong);
  backdrop-filter: blur(10px);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.93rem;
  color: rgba(244, 241, 232, 0.88);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(136, 207, 226, 0.35);
  background: rgba(136, 207, 226, 0.08);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  color: #dff6ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.brand-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.2rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.brand-note {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(244, 241, 232, 0.76);
  line-height: 1.4;
}

.socials {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.social {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social:hover {
  transform: translateY(-2px);
  background: rgba(136, 207, 226, 0.18);
  border-color: rgba(136, 207, 226, 0.5);
}

.logo {
  justify-self: center;
  max-width: min(340px, 100%);
}

.logo img {
  width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  gap: 0.6rem;
  padding: 0 1.2rem 1.2rem;
  flex-wrap: wrap;
}

.navlink {
  text-decoration: none;
  color: #f3fbff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.navlink:hover {
  border-color: rgba(136, 207, 226, 0.7);
  background: rgba(136, 207, 226, 0.16);
  transform: translateY(-1px);
}

.navlink.active {
  background: var(--aqua);
  color: #0d2430;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(136, 207, 226, 0.24);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(3, 12, 18, 0.18), rgba(3, 12, 18, 0.86)),
    url("assets/img/website-header-2-1.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(4, 12, 18, 0.92) 0%, rgba(4, 12, 18, 0.72) 38%, rgba(4, 12, 18, 0.45) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.4rem;
  align-items: end;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(136, 207, 226, 0.14);
  border: 1px solid rgba(136, 207, 226, 0.3);
  color: #effcff;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1,
.page-title,
.section h2,
.section h3,
.footer h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin: 0.95rem 0 0.75rem;
  line-height: 0.93;
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 10ch;
}

.hero p {
  margin: 0;
  max-width: 58ch;
  font-size: 1.03rem;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.9);
}

.hero-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.meta-chip {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eefcff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.gallery-main,
.gallery-stack {
  display: grid;
  gap: 1rem;
}

.photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 14rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.photo.large {
  min-height: 28rem;
}

.photo.small {
  min-height: 8.5rem;
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.photo-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 16, 23, 0.65);
  color: #fff;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  margin-top: 1rem;
  padding: clamp(1.1rem, 2vw, 1.4rem);
  background: linear-gradient(180deg, rgba(136, 207, 226, 0.96), #88cfe2);
  color: #093044;
}

.section h2,
.section h3 {
  margin: 0;
}

.section .lede {
  margin: 0.6rem 0 0;
  line-height: 1.7;
  color: rgba(9, 48, 68, 0.9);
  max-width: 62ch;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(8, 18, 26, 0.78);
  color: #eff8fb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

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

.card.media .card-image {
  min-height: 13rem;
  background-size: cover;
  background-position: center;
}

.card.media .card-body {
  padding: 1.1rem;
  display: grid;
  gap: 0.8rem;
}

.card.light {
  background: rgba(255, 255, 255, 0.9);
  color: #0d2f40;
}

.card.light .card-body {
  padding: 1.2rem;
}

.card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  line-height: 1.7;
}

.small {
  font-size: 0.93rem;
  color: rgba(237, 247, 250, 0.84);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.badge {
  padding: 0.43rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.hours {
  display: grid;
  gap: 0.55rem;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  background: rgba(12, 30, 42, 0.07);
  border: 1px solid rgba(12, 30, 42, 0.08);
  font-size: 0.95rem;
}

.about {
  display: grid;
  gap: 0.85rem;
}

.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button.primary {
  background: var(--aqua);
  color: #0c2230;
  box-shadow: 0 14px 36px rgba(136, 207, 226, 0.2);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(136, 207, 226, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.footer {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem 1.4rem;
  color: #e9f7fb;
  background: var(--panel-strong);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.footer small {
  display: block;
  margin-top: 1rem;
  color: rgba(233, 247, 251, 0.72);
  line-height: 1.6;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  color: rgba(233, 247, 251, 0.88);
}

.page-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-intro {
  margin: 0.8rem 0 0;
  max-width: 54ch;
  line-height: 1.75;
  color: rgba(244, 241, 232, 0.9);
}

.embed-panel {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  color: #0d2f40;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.embed-panel .note {
  margin-top: 0.9rem;
  line-height: 1.7;
  color: rgba(13, 47, 64, 0.85);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0.7rem;
  left: 0;
  right: 0;
  z-index: 70;
  padding-inline: 0.25rem;
  pointer-events: none;
}

.site-header__shell {
  width: min(1320px, calc(100% - 0.35rem));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(4, 12, 18, 0.64);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  pointer-events: auto;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .site-header__shell {
  background: rgba(4, 12, 18, 0.9);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.site-header__utility {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.7rem 1rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.utility-stack {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.utility-stack--right {
  justify-content: flex-end;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(244, 241, 232, 0.84);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.utility-link strong {
  color: #fff;
}

.utility-link--accent {
  color: #fff;
}

.utility-note {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.68);
}

.social-links {
  display: flex;
  gap: 0.45rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(136, 207, 226, 0.16);
  border-color: rgba(136, 207, 226, 0.45);
}

.site-header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  min-width: 0;
}

.brand-lockup img {
  width: clamp(150px, 18vw, 215px);
  height: auto;
  flex: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.brand-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: rgba(244, 241, 232, 0.68);
}

.brand-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.05;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.site-nav__link {
  text-decoration: none;
  color: #f6fbff;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover {
  transform: translateY(-1px);
  border-color: rgba(136, 207, 226, 0.55);
  background: rgba(136, 207, 226, 0.12);
}

.site-nav__link.is-active {
  background: linear-gradient(135deg, #88cfe2, #dff6ff);
  color: #07202c;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(136, 207, 226, 0.22);
}

.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.site-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.site-action--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.site-action--ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.site-action--primary {
  color: #06131d;
  background: linear-gradient(135deg, #88cfe2, #c8f0fb);
  box-shadow: 0 14px 30px rgba(136, 207, 226, 0.18);
  padding-inline: 1.15rem;
}

.site-action--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(136, 207, 226, 0.24);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  color: #fff;
}

.menu-toggle span {
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header__drawer {
  display: none;
}

.hero-surface {
  position: relative;
  width: min(1320px, calc(100% - 0.35rem));
  margin: 0.85rem auto 0;
  min-height: min(100svh, 980px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  background: #05131d;
}

.hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(136, 207, 226, 0.16), transparent 34%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(4, 12, 18, 0.18) 0%, rgba(4, 12, 18, 0.52) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-surface__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(3, 10, 15, 0.9) 0%, rgba(3, 10, 15, 0.68) 38%, rgba(3, 10, 15, 0.34) 100%),
    url("assets/img/website-header-2-1.jpg") center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.03);
}

.hero-surface__content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 0.35rem));
  margin: 0 auto;
  padding: clamp(7.5rem, 11vw, 10rem) 1rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: 1.25rem;
  align-items: end;
}

.hero-surface__content--start {
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 1rem;
  padding-bottom: 1rem;
  max-width: 48rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(136, 207, 226, 0.14);
  border: 1px solid rgba(136, 207, 226, 0.35);
  color: #e9fbff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8.4vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 10ch;
  text-wrap: balance;
}

.hero-lead {
  margin: 0;
  max-width: 54ch;
  color: rgba(247, 251, 255, 0.92);
  font-size: clamp(1rem, 1.75vw, 1.18rem);
  line-height: 1.78;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.hero-meta .meta-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.hero-panel {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(6, 15, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.hero-panel__eyebrow {
  margin: 0;
  color: rgba(234, 247, 251, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-panel__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-panel__text {
  margin: 0;
  color: rgba(245, 241, 232, 0.88);
  line-height: 1.7;
  font-size: 0.95rem;
}

.hero-panel__media {
  display: grid;
  gap: 0.75rem;
}

.hero-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.hero-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.hero-panel__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-stat {
  padding: 0.8rem 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-stat span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(233, 247, 251, 0.74);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-strip {
  width: min(1320px, calc(100% - 0.35rem));
  margin: 0 auto;
  padding: 0 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  position: relative;
  z-index: 2;
}

.hero-strip span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

body.menu-open .site-header__drawer {
  overflow: visible;
}

@media (max-width: 959px) {
  .site-header {
    top: 0.45rem;
    padding-inline: 0.2rem;
  }

  .site-header__shell {
    width: min(calc(100% - 0.35rem), 1320px);
    border-radius: 24px;
  }

  .site-header__utility {
    display: none;
  }

  .site-header__main {
    grid-template-columns: auto auto;
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
  }

  .brand-copy {
    display: none;
  }

  .brand-lockup img {
    width: clamp(132px, 36vw, 190px);
  }

  .site-nav,
  .site-actions .site-action--ghost {
    display: none;
  }

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

  .menu-toggle {
    display: flex;
  }

  .site-header__drawer {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  body.menu-open .site-header__drawer {
    max-height: 34rem;
    opacity: 1;
    padding: 0.9rem;
  }

  .mobile-nav {
    display: grid;
    gap: 0.5rem;
  }

  .mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #fff;
    padding: 0.92rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .mobile-nav__link.is-active {
    background: linear-gradient(135deg, #88cfe2, #c8f0fb);
    color: #06131d;
  }

  .mobile-actions {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.9rem;
  }

  .mobile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
  }

  .mobile-socials a {
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .hero-surface {
    min-height: auto;
    border-radius: 28px;
  }

  .hero-surface__content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: clamp(7rem, 18vw, 8.75rem);
  }

  .hero-surface__content--start {
    align-items: start;
  }

  .hero-title {
    max-width: 9ch;
  }

  .hero-panel__facts {
    grid-template-columns: 1fr;
  }

  .hero-thumb {
    min-height: 12rem;
  }
}

@media (max-width: 980px) {
  .brand-band,
  .hero-inner,
  .section-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .logo {
    justify-self: start;
  }

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

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

@media (max-width: 720px) {
  .site {
    width: min(calc(100% - 1rem), 1200px);
    padding-top: 0.5rem;
  }

  .panel,
  .section,
  .footer {
    border-radius: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .navbar {
    gap: 0.5rem;
  }

  .navlink,
  .button {
    width: 100%;
    justify-content: center;
  }

  .topbar,
  .brand-band,
  .navbar,
  .section,
  .footer {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

:root {
  --coral: #ffad7c;
  --gold: #ffd79d;
  --foam: #dff6ff;
  --cream-panel: rgba(247, 243, 235, 0.98);
  --glass-panel: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
}

body {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 201, 153, 0.12), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(136, 207, 226, 0.18), transparent 30%),
    linear-gradient(180deg, #030d15 0%, #071620 44%, #051018 100%);
}

body::before {
  opacity: 0.28;
  background-size: 32px 32px;
}

.site {
  width: min(1360px, calc(100% - 0.65rem));
  padding-top: 0.9rem;
}

.hero-surface {
  min-height: min(100svh, 1040px);
  margin-top: 0.75rem;
  border-radius: 36px;
}

.hero-surface::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 197, 143, 0.18), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(136, 207, 226, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(3, 10, 15, 0.16) 0%, rgba(3, 10, 15, 0.56) 100%);
}

.hero-surface__bg {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

.hero-surface__content {
  padding: clamp(8.8rem, 12vw, 11rem) 1rem 1rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  gap: 1.15rem;
}

.hero-copy {
  gap: 1.1rem;
  padding-bottom: 1.4rem;
}

.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-kicker {
  background: rgba(136, 207, 226, 0.14);
  border-color: rgba(136, 207, 226, 0.35);
  color: #effcff;
}

.section-eyebrow {
  background: rgba(12, 30, 42, 0.06);
  border-color: rgba(12, 30, 42, 0.08);
  color: #0d2f40;
}

.content-section--menu .section-eyebrow,
.content-section--specials .section-eyebrow,
.content-section--social .section-eyebrow,
.content-section--beer-board .section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-title,
.section-heading h2,
.menu-slab__copy h2,
.specials-band__copy h2,
.social-copy h2,
.beer-board-copy h2 {
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.04em;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.7rem, 9.5vw, 7.4rem);
  line-height: 0.9;
  max-width: 10ch;
}

.hero-lead {
  max-width: 52ch;
  font-size: clamp(1rem, 1.75vw, 1.18rem);
  line-height: 1.8;
}

.hero-meta .meta-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-actions .button,
.menu-slab__copy .button,
.specials-band__copy .button,
.social-copy .button,
.info-card .button,
.beer-board-copy .button,
.hero-panel__actions .button {
  min-height: 3.05rem;
}

.button.primary {
  background: linear-gradient(135deg, #88cfe2, #dff6ff);
  color: #06131d;
  box-shadow: 0 16px 34px rgba(136, 207, 226, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.primary:hover,
.button.secondary:hover,
.button.ghost:hover {
  transform: translateY(-2px);
}

.hero-panel {
  display: grid;
  gap: 0.95rem;
  padding: 1.05rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(6, 16, 23, 0.72), rgba(6, 16, 23, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.hero-panel__eyebrow {
  color: rgba(234, 247, 251, 0.7);
}

.hero-panel__title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.hero-panel__text {
  color: rgba(245, 241, 232, 0.88);
}

.hero-thumb {
  min-height: 18rem;
  border-radius: 24px;
}

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

.hero-stat {
  padding: 0.82rem 0.88rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-strip {
  margin-top: -0.35rem;
  padding-bottom: 1.15rem;
  gap: 0.58rem;
}

.hero-strip span,
.chip-row span,
.feature-note-row span {
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.8rem;
}

.content-section {
  width: min(1360px, calc(100% - 0.65rem));
  margin: 1rem auto 0;
  padding: clamp(1rem, 2vw, 1.45rem);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

main [id] {
  scroll-margin-top: 7.5rem;
}

.content-section--featured,
.content-section--story {
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.98), rgba(236, 243, 246, 0.96));
  color: #0d2f40;
}

.content-section--menu,
.content-section--beer-board,
.content-section--social {
  background: linear-gradient(180deg, rgba(6, 16, 23, 0.92), rgba(8, 18, 26, 0.96));
  color: #edf8fb;
}

.content-section--specials {
  background:
    linear-gradient(135deg, rgba(255, 197, 143, 0.18), rgba(136, 207, 226, 0.14)),
    rgba(7, 16, 23, 0.96);
  color: #edf8fb;
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  max-width: 60rem;
  margin-bottom: 1rem;
}

.section-heading--compact {
  margin-bottom: 1rem;
}

.section-heading h2,
.menu-slab__copy h2,
.specials-band__copy h2,
.social-copy h2,
.beer-board-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 0.94;
}

.section-heading p,
.menu-slab__copy p,
.specials-band__copy p,
.social-copy p,
.beer-board-copy p,
.info-card p,
.feature-card p,
.menu-slab__aside p,
.beer-board-shell__lead p {
  margin: 0;
  line-height: 1.75;
}

.section-heading p,
.content-section--featured .section-heading p,
.content-section--story .section-heading p {
  color: inherit;
  opacity: 0.86;
  max-width: 60ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 1rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(8, 18, 26, 0.78);
  color: #eef8fb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  display: grid;
  min-height: 100%;
}

.feature-card--solid {
  background: linear-gradient(180deg, rgba(8, 18, 26, 0.96), rgba(10, 27, 38, 0.94));
}

.feature-card__media {
  position: relative;
  min-height: 18.5rem;
  overflow: hidden;
}

.feature-card__media img,
.menu-slab__media img,
.info-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-card:hover .feature-card__media img,
.menu-slab__panel:hover .menu-slab__media img,
.info-card:hover .info-card__media img {
  transform: scale(1.04);
}

.feature-card__body {
  padding: 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.feature-card__body--center {
  align-content: start;
}

.feature-card__label {
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(136, 207, 226, 0.16);
  border: 1px solid rgba(136, 207, 226, 0.25);
  color: #eafcff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-card h3,
.info-card h3,
.menu-slab__aside h3,
.beer-board-shell__lead h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 0.98;
}

.feature-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

.feature-card p {
  color: rgba(238, 248, 251, 0.86);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.mini-stat {
  padding: 0.88rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.mini-stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(233, 247, 251, 0.74);
  font-size: 0.76rem;
  font-weight: 400;
}

.menu-slab,
.beer-board-layout,
.social-layout,
.specials-band {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.menu-slab,
.beer-board-layout,
.social-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-slab__copy,
.beer-board-copy,
.social-copy {
  padding: clamp(1.1rem, 2vw, 1.4rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.9rem;
}

.menu-slab__copy {
  background: linear-gradient(180deg, rgba(7, 16, 23, 0.96), rgba(10, 24, 34, 0.92));
}

.menu-slab__copy h2,
.beer-board-copy h2,
.specials-band__copy h2,
.social-copy h2 {
  max-width: 12ch;
}

.menu-slab__copy p,
.beer-board-copy p,
.specials-band__copy p,
.social-copy p {
  color: rgba(245, 241, 232, 0.9);
}

.menu-slab__panel,
.beer-board-shell,
.social-embed,
.info-card {
  overflow: hidden;
  border-radius: 28px;
}

.menu-slab__panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-rows: auto 1fr;
}

.menu-slab__media {
  min-height: 18rem;
}

.menu-slab__aside {
  padding: 1.1rem 1.2rem 1.25rem;
  display: grid;
  gap: 0.75rem;
  color: #f5fbff;
}

.menu-slab__aside h3 {
  font-size: 1.7rem;
}

.feature-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-note-row span {
  color: #fff;
}

.specials-band {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  padding: 1.25rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 197, 143, 0.16), rgba(136, 207, 226, 0.16)),
    rgba(7, 16, 23, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.specials-band__copy {
  display: grid;
  gap: 0.9rem;
}

.specials-band__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

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

.info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 30, 42, 0.08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  color: #0d2f40;
  display: grid;
  gap: 0.9rem;
}

.info-card--hours,
.info-card--visit {
  padding: 1.15rem;
}

.info-card__media {
  min-height: 15rem;
  overflow: hidden;
}

.info-card__body {
  padding: 0 1.15rem 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.info-card .section-eyebrow {
  background: rgba(12, 30, 42, 0.06);
  border-color: rgba(12, 30, 42, 0.08);
  color: #0d2f40;
}

.hours--premium .hour-row {
  background: rgba(12, 30, 42, 0.05);
  border-color: rgba(12, 30, 42, 0.06);
}

.footer-links--stacked {
  align-items: flex-start;
}

.social-copy {
  background: rgba(255, 255, 255, 0.06);
}

.social-embed {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.social-embed .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
}

.social-embed__fallback,
.beer-board-shell__fallback {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 20px;
  display: grid;
  gap: 0.75rem;
}

.social-embed__fallback {
  background: rgba(6, 16, 23, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #edf8fb;
}

.beer-board-shell__fallback {
  background: rgba(8, 18, 26, 0.06);
  border: 1px solid rgba(13, 47, 64, 0.08);
  color: #0d2f40;
}

.social-embed__fallback p,
.beer-board-shell__fallback p {
  margin: 0;
  line-height: 1.7;
}

.social-embed__fallback-title,
.beer-board-shell__fallback-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.beer-board-shell__fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.beer-board-shell__fallback .button.primary {
  color: #06131d;
}

.beer-board-shell__fallback .button.ghost {
  color: #0d2f40;
  border-color: rgba(13, 47, 64, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

.beer-board-copy {
  background: rgba(255, 255, 255, 0.06);
}

.beer-board-shell {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #0d2f40;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 0.85rem;
}

.beer-board-shell__lead h3 {
  font-size: 1.7rem;
}

.beer-board-shell__lead p {
  margin-top: 0.35rem;
  color: rgba(13, 47, 64, 0.82);
}

.beer-board-shell__embed {
  min-height: 420px;
}

.beer-board-shell .note {
  margin-top: 0.25rem;
  color: rgba(13, 47, 64, 0.82);
}

.footer--premium {
  margin-top: 1rem;
  padding: 1.2rem 1.2rem 1.35rem;
  color: #e9f7fb;
  background: linear-gradient(180deg, rgba(6, 16, 23, 0.96), rgba(5, 11, 17, 0.98));
}

.footer-brand {
  display: grid;
  gap: 0.45rem;
}

.footer-brand h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand p {
  margin: 0;
  color: rgba(233, 247, 251, 0.78);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.footer-credit {
  display: block;
  margin-top: 1rem;
  text-align: center;
  color: rgba(233, 247, 251, 0.74);
  line-height: 1.7;
}

.footer-credit a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-credit a:hover {
  color: var(--aqua);
  border-bottom-color: var(--aqua);
}

html.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

html.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js-enabled [data-reveal],
  .feature-card__media img,
  .menu-slab__media img,
  .info-card__media img,
  .button,
  .site-nav__link,
  .site-action,
  .social-link,
  .menu-toggle,
  .hero-panel,
  .site-header__shell {
    transition: none !important;
  }
}

@media (max-width: 959px) {
  .site {
    width: min(calc(100% - 0.45rem), 1360px);
  }

  .hero-surface {
    min-height: auto;
    border-radius: 28px;
  }

  .hero-surface__content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: clamp(7.5rem, 20vw, 9rem);
  }

  .hero-title {
    max-width: 9ch;
  }

  .hero-panel__facts {
    grid-template-columns: 1fr;
  }

  .hero-thumb {
    min-height: 13rem;
  }

  .content-section {
    width: min(calc(100% - 0.45rem), 1360px);
    border-radius: 28px;
  }

  .feature-grid,
  .menu-slab,
  .beer-board-layout,
  .story-grid,
  .social-layout,
  .specials-band {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .specials-band__facts {
    grid-template-columns: 1fr;
  }

  .feature-card__media,
  .menu-slab__media,
  .info-card__media {
    min-height: 14rem;
  }

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

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

@media (max-width: 720px) {
  .hero-title {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .section-heading h2,
  .menu-slab__copy h2,
  .specials-band__copy h2,
  .social-copy h2,
  .beer-board-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .button,
  .navlink {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .menu-slab__copy .hero-actions,
  .specials-band__copy .hero-actions,
  .social-copy .hero-actions {
    gap: 0.6rem;
  }

  .hero-actions .button,
  .menu-slab__copy .button,
  .specials-band__copy .button,
  .social-copy .button,
  .info-card .button,
  .beer-board-copy .button {
    width: 100%;
  }

  .feature-card__body,
  .menu-slab__copy,
  .menu-slab__aside,
  .specials-band,
  .social-copy,
  .beer-board-copy,
  .beer-board-shell,
  .info-card--hours,
  .info-card--visit {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-top {
    gap: 0.9rem;
  }
}
