@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Cormorant+Garamond:ital,wght@1,600&family=Manrope:wght@400;500;600&display=swap");

:root {
  --ink: #0d0e0e;
  --ink-2: #181919;
  --cream: #dedfdd;
  --paper: #f1f1ef;
  --lime: #c7f36b;
  --aqua: #9fdf62;
  --muted: #a9adab;
  --line: rgba(13, 14, 14, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
.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;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-200%);
  transition: 0.2s;
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #101716;
  color: #fff;
}
.error {
  padding: 2rem;
  text-align: center;
}
.error p:first-child {
  color: var(--lime);
  letter-spacing: 0.2em;
}
.error h1 {
  font: 500 clamp(4rem, 15vw, 10rem) / 0.9 var(--display);
  margin: 1rem;
}
.error .button {
  margin-top: 2rem;
}
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 4.5rem);
  color: white;
  transition:
    background 0.35s,
    padding 0.35s;
}
.site-header.scrolled {
  background: rgba(16, 23, 22, 0.94);
  backdrop-filter: blur(14px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}
.brand-name {
  font-size: 0.7rem;
  line-height: 1.08;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.brand-name strong {
  color: var(--lime);
  font-weight: 600;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.7vw, 1.6rem);
}
.site-nav > a:not(.button) {
  font-size: 0.74rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: var(--lime);
  transition: right 0.25s;
}
.site-nav > a:hover::after {
  right: 0;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  width: 2.75rem;
  height: 2.75rem;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 7px 0;
  transition: 0.25s;
}
.menu-cocktail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.icon-arrow {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 10rem clamp(1.25rem, 6vw, 7rem) clamp(4rem, 8vw, 7rem);
  color: white;
  background: var(--ink);
  isolation: isolate;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-media {
  background: url("../images/matt-bartending-event.webp") 58% 28% / cover
    no-repeat;
  transform: scale(1.01);
  animation: heroZoom 14s ease-out both;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 14, 13, 0.93) 0%,
      rgba(8, 14, 13, 0.72) 42%,
      rgba(8, 14, 13, 0.18) 78%
    ),
    linear-gradient(0deg, rgba(8, 14, 13, 0.82), transparent 55%);
}
@keyframes heroZoom {
  to {
    transform: scale(1.07);
  }
}
.hero-content {
  max-width: 780px;
}
.eyebrow,
.section-index {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
}
.eyebrow {
  color: var(--lime);
  margin: 0 0 1.4rem;
}
.hero h1,
.services h2,
.events h2,
.about h2,
.quote h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.065em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(4rem, 10vw, 8.8rem);
}
h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--lime);
}
.hero-copy {
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  max-width: 560px;
  color: #e1e6e3;
  margin: 2rem 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 190px;
  padding: 1rem 1.2rem;
  background: var(--lime);
  color: var(--ink);
  border: 1px solid var(--lime);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.button:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}
.button-small {
  min-width: auto;
  padding: 0.7rem 1rem;
  gap: 0.7rem;
}
.text-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--lime);
}
.hero-note {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: clamp(2rem, 4vw, 3.5rem);
  font-size: 0.68rem;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4dad7;
}
.hero-island {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -3%;
  width: min(58vw, 900px);
  height: auto;
  opacity: 0.34;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(199, 243, 107, 0.12));
  animation: islandDraw 1.2s ease-out both;
}
@keyframes islandDraw {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}
@keyframes float {
  50% {
    transform: translateY(-18px);
  }
}
.ticker {
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #0d0e0e;
  color: white;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(199, 243, 107, 0.55);
}
.ticker-group {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 2.4rem;
  padding: 0 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
}
.ticker i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex: 0 0 6px;
}
.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 7rem);
}
.section-index {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  color: #515956;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
}
.section-index::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: #527526;
  flex: 0 0 2.5rem;
}
.section-index.light {
  color: #c6cdca;
  border-color: rgba(255, 255, 255, 0.18);
}
.section-index.light::before {
  background: var(--lime);
}
.intro {
  background: var(--paper);
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(3rem, 10vw, 10rem);
  padding-top: clamp(3rem, 7vw, 6rem);
}
.intro-statement {
  position: relative;
  min-height: 0;
}
.intro h2 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 500;
  margin: 0;
}
.intro h2 span {
  font-family: var(--serif);
  font-style: italic;
  color: #558b7d;
}
.intro-copy {
  font-size: 1.05rem;
  padding-top: 1rem;
}
.intro-copy p:first-child {
  font-size: 1.35rem;
  line-height: 1.45;
}
.services {
  background: var(--ink);
  color: white;
}
.services-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding: 4rem 0;
}
.services-heading .eyebrow {
  align-self: start;
}
.services h2,
.events h2,
.about h2,
.quote h2 {
  font-size: clamp(3rem, 6.5vw, 7rem);
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-row {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    background 0.3s ease;
}
.service-row:last-child {
  border-right: 0;
}
.service-row:hover {
  background: rgba(199, 243, 107, 0.06);
}
.service-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: auto;
}
.service-row h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
}
.service-row p {
  color: #bfc8c4;
  margin: 0;
}
.cocktail-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cocktail-rail figure {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #171918;
}
.cocktail-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.4s ease;
}
.cocktail-rail figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}
.cocktail-rail figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  min-height: 0;
  padding: 4rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(7, 8, 8, 0.94));
}
.cocktail-rail figcaption strong,
.cocktail-rail figcaption span {
  display: block;
}
.cocktail-rail figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  line-height: 1;
  text-transform: uppercase;
}
.cocktail-rail figcaption span {
  margin-top: 0.55rem;
  color: #aeb7b3;
  font-size: 0.76rem;
  line-height: 1.45;
}
.service-facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 2rem 0;
  color: #c2cac6;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.67rem;
}
.service-facts span {
  padding: 0.15rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.service-facts span:last-child {
  border-right: 0;
}
.events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}
.events-copy {
  position: sticky;
  top: 9rem;
}
.events h2 {
  margin: 3rem 0 2rem;
}
.events h2 em {
  color: #558b7d;
}
.events-copy > p {
  max-width: 510px;
  margin: 0 0 2rem;
  font-size: 1.1rem;
}
.text-link.dark:hover {
  color: #367c6d;
}
.event-stack {
  border-top: 1px solid var(--line);
}
.event-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 2.4rem 1rem;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.3s,
    padding 0.3s;
}
.event-card:hover {
  background: var(--cream);
  padding-left: 1.7rem;
  padding-right: 1.7rem;
}
.event-card img {
  width: 4rem;
  height: 4rem;
  flex: 0 0 4rem;
}
.event-card strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 500;
}
.about {
  background: var(--cream);
}
.about > .section-index {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.about-heading > .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 700;
}
.about-heading > .eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 0.55rem;
  border-radius: 50%;
  background: #527526;
}
.about h2 {
  margin: 0;
}
.about h2 em {
  color: #558b7d;
}
.about .lead {
  font-size: 1.35rem;
  line-height: 1.4;
}
.about-story {
  max-width: 620px;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-portrait {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 2.25rem 0 0;
  overflow: hidden;
  background: var(--ink);
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 68% 40%;
  filter: saturate(1.03) contrast(1.02);
}
.about-portrait figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 3.5rem 1rem 0.9rem;
  color: white;
  background: linear-gradient(transparent, rgba(5, 6, 6, 0.88));
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-principle {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(320px, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--ink);
}
.about-principle span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-principle p {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.3vw, 5rem);
  font-style: italic;
  line-height: 1;
  color: #426326;
}
.quote {
  background: #12201d;
  color: white;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.55fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.quote-intro .section-index {
  margin-bottom: 4rem;
}
.quote h2 {
  font-size: clamp(3.6rem, 5.4vw, 6.5rem);
  line-height: 0.88;
  margin-bottom: 2rem;
}
.quote-intro > p:not(.eyebrow) {
  color: #b9c4c0;
  max-width: 550px;
}
.direct-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 2rem;
}
.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
  width: max-content;
}
.direct-contact svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.direct-contact a:hover {
  color: var(--lime);
}
.quote-form {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(1.5rem, 4vw, 3.5rem);
}
.quote-form label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.quote-form label span {
  color: #6f7774;
  text-transform: none;
  letter-spacing: 0;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quote-form input,
.quote-form textarea,
.quote-form select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #87918d;
  background: transparent;
  border-radius: 0;
  padding: 0.75rem 0.1rem;
  color: var(--ink);
  margin-top: 0.3rem;
  outline: none;
}
.quote-form textarea {
  resize: vertical;
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: #317365;
  box-shadow: 0 2px 0 #317365;
}
.form-note,
.form-status {
  font-size: 0.73rem;
  color: #606a66;
}
.button-submit {
  width: 100%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  cursor: pointer;
  margin-top: 1rem;
}
.button-submit:hover {
  background: #2a5f53;
  color: white;
  border-color: #2a5f53;
}
.site-footer {
  background: #0a100f;
  color: white;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 6vw, 7rem) 2rem;
}
.footer-brand {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 3rem;
}
.footer-brand em {
  font-family: var(--serif);
  color: var(--lime);
}
.footer-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 0 5rem;
}
.footer-meta p {
  margin-right: auto;
  color: #9da7a3;
}
.footer-meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}
.social-icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
}
.footer-meta a:hover {
  color: var(--lime);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #737d79;
  font-size: 0.7rem;
}
.footer-bottom a:hover {
  color: white;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 800px) {
  .site-header {
    padding: 1rem 1.25rem;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: max(7rem, calc(env(safe-area-inset-top) + 5.5rem)) 2rem max(2.5rem, calc(env(safe-area-inset-bottom) + 1.5rem));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.35s;
  }
  .site-nav.open {
    transform: none;
  }
  .site-nav > a:not(.button) {
    display: inline-block;
    font-family: var(--display);
    font-size: 2.2rem;
    text-transform: none;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    outline: none;
  }
  .site-nav > a:not(.button):focus-visible,
  .site-nav > a:not(.button):active,
  .site-nav > a:not(.button)[aria-current="location"] {
    color: white;
    text-decoration: underline;
    text-decoration-color: var(--lime);
    text-decoration-thickness: 3px;
    text-underline-offset: 0.25em;
  }
  .site-nav .button {
    margin-top: 1rem;
  }
  .menu-toggle {
    z-index: 2;
    position: relative;
  }
  .menu-toggle.active span:not(.sr-only) {
    opacity: 0;
  }
  .menu-toggle.active .menu-cocktail {
    opacity: 1;
    transform: scale(1);
  }
  .hero {
    padding-bottom: 4rem;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(8, 14, 13, 0.95) 0%,
      rgba(8, 14, 13, 0.55) 70%,
      rgba(8, 14, 13, 0.35)
    );
  }
  .hero-media {
    background-position: 56% center;
  }
  .hero-island {
    top: 12%;
    right: -24%;
    width: min(92vw, 720px);
    opacity: 0.25;
  }
  .hero-note {
    display: none;
  }
  .intro-grid,
  .services-heading,
  .events,
  .about,
  .quote {
    grid-template-columns: 1fr;
  }
  .intro-statement {
    min-height: 0;
    padding-bottom: 0;
  }
  .services-heading {
    gap: 1.5rem;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .service-row {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .service-row:last-child {
    border-bottom: 0;
  }
  .cocktail-rail figure {
    min-height: clamp(150px, 34vw, 240px);
  }
  .events-copy {
    position: static;
  }
  .about {
    gap: 4rem;
  }
  .about-layout,
  .about-principle {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-heading {
    grid-column: auto;
  }
  .about-portrait {
    width: min(100%, 500px);
  }
  .footer-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-meta p {
    width: 100%;
    margin-right: 0;
  }
  .footer-bottom {
    gap: 1rem;
    flex-direction: column;
  }
  .footer-brand em {
    display: block;
  }
}
@media (max-width: 520px) {
  .ticker {
    padding: 0;
  }
  .ticker-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1rem 1.25rem;
    text-align: center;
  }
  .ticker i {
    display: none;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 20vw, 5.8rem);
  }
  .hero-island {
    top: 18%;
    right: -48%;
    width: 135vw;
    opacity: 0.19;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }
  .button {
    width: 100%;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .service-row {
    min-height: 0;
    gap: 0.75rem;
    padding: 1.5rem;
  }
  .cocktail-rail {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .cocktail-rail figure {
    aspect-ratio: 4 / 5;
  }
  .cocktail-rail figcaption {
    padding: 4rem 1rem 1rem;
  }
  .service-row h3 {
    font-size: 1.6rem;
  }
  .about h2,
  .services h2,
  .events h2,
  .quote h2 {
    font-size: 3.2rem;
  }
  .event-card {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-brand {
    font-size: 3.5rem;
  }
}
@media (min-width: 801px) and (max-width: 1100px) {
  .quote {
    grid-template-columns: 1fr;
  }
  .quote-intro {
    max-width: 720px;
  }
}
.hero h1,
.services h2,
.events h2,
.about h2,
.quote h2 {
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(4.5rem, 9.6vw, 9rem);
}
h1 em,
h2 em {
  text-transform: none;
  letter-spacing: -0.045em;
}
.intro h2 {
  letter-spacing: -0.025em;
  font-weight: 600;
  text-transform: uppercase;
}
.intro h2 span {
  text-transform: none;
}
.service-row h3,
.event-card strong {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero-media {
  filter: saturate(0.88) contrast(1.08);
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.72) 47%,
      rgba(5, 5, 5, 0.18) 80%
    ),
    linear-gradient(0deg, rgba(5, 5, 5, 0.88), transparent 58%);
}
.intro h2 span,
.events h2 em,
.about h2 em {
  color: #426326;
}
.ticker {
  border-bottom: 1px solid #9ebe5d;
}
.pricing-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--lime);
  color: var(--ink);
}
.pricing-card .eyebrow {
  color: #34441e;
  margin-bottom: 0.4rem;
}
.pricing-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.pricing-card > p {
  margin: 0;
  max-width: 420px;
}
.button-inverse,
.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.button-inverse:hover,
.button-dark:hover {
  background: white;
  border-color: white;
  color: var(--ink);
}
.button-dark {
  width: max-content;
  margin-top: 0.5rem;
}
.button-dark:hover {
  background: var(--lime);
  border-color: var(--lime);
}
.process {
  background: #f7f7f5;
}
.process-heading {
  display: block;
  padding: 4rem 0;
}
.process-heading .eyebrow {
  color: #426326;
  align-self: start;
}
.process h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.process h2 em {
  color: #426326;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  padding: 2.2rem 2rem 3rem;
  border-right: 1px solid var(--line);
  text-align: center;
  transition:
    background 0.3s,
    transform 0.3s;
}
.process-step:last-child {
  border-right: 0;
}
.process-step:hover {
  background: #e7eddc;
  transform: translateY(-6px);
}
.process-icon {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
}
.process-icon svg {
  width: 2.7rem;
  height: 2.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-step h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 1.5rem 0 1rem;
}
.process-step p {
  color: #555b58;
}
.quote {
  background: #171818;
}
.site-footer {
  background: #080909;
}
@media (max-width: 800px) {
  .process-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-step:last-child {
    border-bottom: 0;
  }
  .pricing-card {
    grid-template-columns: 1fr;
  }
  .pricing-card .button {
    width: 100%;
  }
  .direct-contact a {
    width: 100%;
    overflow-wrap: anywhere;
  }
  .hero h1 {
    font-size: clamp(4rem, 16vw, 7rem);
  }
}
.faq {
  background: var(--ink);
  color: white;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(3rem, 9vw, 9rem);
  padding-top: 4rem;
}
.faq-heading {
  position: sticky;
  top: 8rem;
  align-self: start;
}
.faq h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.faq h2 em {
  color: var(--lime);
}
.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.7rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  position: relative;
  flex: 0 0 1.4rem;
  width: 1.4rem;
  height: 1.4rem;
}
.faq summary span::before,
.faq summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transition: transform 0.25s;
}
.faq summary span::after {
  transform: rotate(90deg);
}
.faq details[open] summary span::after {
  transform: rotate(0);
}
.faq details p {
  max-width: 620px;
  margin: 0;
  padding: 0 3rem 1.7rem 0;
  color: #b9c0bd;
}
.faq summary:hover {
  color: var(--lime);
}
@media (max-width: 800px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-heading {
    position: static;
  }
  .site-nav {
    overflow-y: auto;
  }
  .site-nav > a:not(.button) {
    font-size: 1.9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
