:root {
  --ink: #050505;
  --paper: #f5f1e8;
  --white: #ffffff;
  --muted: #77736b;
  --line: rgba(5, 5, 5, 0.18);
  --line-dark: rgba(255, 255, 255, 0.18);
  --accent: #c8f04f;
  --accent-soft: #eff8c7;
  --clay: #c99f7a;
  --font-display: "ABC Oracle", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
  --header-height: 78px;
  --site-pad: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

p {
  color: var(--muted);
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px var(--site-pad);
  background: rgba(5, 5, 5, 0.94);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  transition:
    background 180ms ease,
    min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(5, 5, 5, 0.98);
}

.brand-mark {
  display: inline-grid;
  gap: 2px;
  min-width: 142px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.brand-mark span {
  font-size: 25px;
  line-height: 0.9;
}

.brand-mark small {
  font-size: 11px;
  line-height: 1;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 13px;
}

.site-nav a,
.header-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.header-link:hover {
  border-color: var(--line-dark);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-link {
  justify-self: end;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  min-height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  padding: 0 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-video,
.hero img {
  width: 100%;
  height: 88svh;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 52%);
}

.hero-content {
  position: absolute;
  left: var(--site-pad);
  right: var(--site-pad);
  bottom: 42px;
  max-width: 860px;
}

.eyebrow {
  margin-bottom: 14px;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 980px;
  font-size: 88px;
  text-transform: uppercase;
}

h2 {
  font-size: 48px;
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.section-pad,
.page-shell {
  padding-inline: var(--site-pad);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 44px;
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.intro-text {
  display: grid;
  gap: 20px;
  align-content: end;
  font-size: 20px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.feature-band-dark {
  background: var(--ink);
  color: var(--white);
}

.feature-band-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-media {
  min-height: 620px;
  background: var(--ink);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
  padding: 60px var(--site-pad);
}

.feature-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 19px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 64px;
}

.image-tile {
  display: grid;
  min-height: 560px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.image-tile div {
  display: grid;
  gap: 14px;
  align-content: end;
  padding: 22px;
}

.image-tile a,
.direct-contact a {
  width: fit-content;
  border-bottom: 2px solid currentColor;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.page-shell {
  padding-top: 132px;
  padding-bottom: 72px;
}

.page-hero,
.split-hero,
.story-hero,
.location-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 32px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero > p,
.split-copy > p,
.location-copy > p {
  max-width: 560px;
  font-size: 20px;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.menu-layout-flip {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.menu-board {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
}

.menu-board-head,
.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px 72px;
  align-items: end;
  gap: 12px;
}

.menu-board-head {
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}

.price-head {
  display: contents;
}

.price-head span,
.menu-row strong {
  justify-self: end;
}

.menu-row {
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
}

.menu-row span,
.menu-row strong {
  color: var(--ink);
}

.extras-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.extras-list span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  background: var(--paper);
}

.menu-image img,
.split-media img,
.story-image img,
.location-main-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

.smoothie-section,
.review-strip {
  padding-top: 54px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.smoothie-grid,
.review-grid,
.contact-highlights,
.about-gallery,
.location-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.smoothie-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.smoothie-card,
.contact-card,
.review-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.smoothie-card strong,
.contact-card span {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}

.split-media img {
  min-height: 640px;
}

.club-layout,
.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 24px;
  padding-top: 28px;
}

.club-benefits,
.direct-contact {
  display: grid;
  gap: 24px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--accent-soft);
  padding: 28px;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list div {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.benefit-list strong {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}

.studio-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.form-head {
  margin-bottom: 8px;
}

.studio-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 12px;
}

.studio-form input,
.studio-form select,
.studio-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}

.studio-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 14px;
}

.hidden-field {
  display: none;
}

.contact-highlights {
  padding: 28px 0;
}

.contact-card {
  min-height: 300px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.contact-card h2 {
  font-size: 40px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: break-word;
}

.direct-contact img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 4px;
}

.direct-contact div {
  display: grid;
  gap: 14px;
}

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

.story-copy {
  max-width: 1040px;
  margin: 48px auto;
  display: grid;
  gap: 24px;
}

.story-copy h2 {
  font-size: 24px;
}

.story-copy p {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.about-gallery figure,
.location-gallery figure {
  margin: 0;
}

.about-gallery img,
.location-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

figcaption {
  margin-top: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.location-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.location-gallery {
  padding-top: 28px;
}

.review-card {
  min-height: 210px;
  background: var(--white);
}

.review-card strong {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}

.thanks-panel {
  min-height: 58svh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
  max-width: 900px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, auto) minmax(210px, auto);
  gap: 28px;
  padding: 34px var(--site-pad);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 13px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 40px;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 18px;
    padding-right: var(--site-pad);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    position: static;
  }

  .site-nav,
  .header-link {
    display: none;
  }

  .site-header.nav-open .site-nav {
    flex: 1 0 100%;
    display: grid;
    justify-items: stretch;
    gap: 6px;
    width: 100%;
    margin-top: 18px;
  }

  .site-header.nav-open .site-nav a {
    justify-content: center;
    min-height: 46px;
    border-color: var(--line-dark);
  }

  .intro-grid,
  .feature-band,
  .page-hero,
  .split-hero,
  .story-hero,
  .location-hero,
  .menu-layout,
  .menu-layout-flip,
  .club-layout,
  .form-section {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    min-height: 460px;
  }

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

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

@media (max-width: 720px) {
  :root {
    --site-pad: 16px;
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 24px;
  }

  .brand-mark {
    min-width: 110px;
  }

  .hero,
  .hero-video {
    min-height: 82svh;
    height: 82svh;
  }

  .hero-content {
    bottom: 24px;
  }

  .hero-copy,
  .intro-text,
  .feature-copy p:not(.eyebrow),
  .page-hero > p,
  .split-copy > p,
  .location-copy > p {
    font-size: 17px;
  }

  .hero-copy {
    max-width: 34ch;
  }

  .page-shell {
    padding-top: 104px;
  }

  .tile-grid,
  .smoothie-grid,
  .contact-highlights,
  .about-gallery,
  .location-gallery,
  .review-grid,
  .feature-duo {
    grid-template-columns: 1fr;
  }

  .image-tile,
  .smoothie-card,
  .contact-card {
    min-height: auto;
  }

  .image-tile img,
  .menu-image img,
  .split-media img,
  .story-image img,
  .location-main-image img,
  .feature-media,
  .feature-media img,
  .about-gallery img,
  .location-gallery img,
  .direct-contact img {
    min-height: 0;
    height: 420px;
  }

  .menu-board {
    padding: 20px;
  }

  .menu-board-head,
  .menu-row {
    grid-template-columns: minmax(0, 1fr) 54px 54px;
  }

  .menu-row {
    font-size: 17px;
  }

  .story-copy p {
    font-size: 22px;
  }

  .contact-card h2 {
    font-size: 32px;
  }

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