@font-face {
  font-family: "Hamston";
  src: url("assets/fonts/hamston.woff2") format("woff2"),
    url("assets/fonts/hamston.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-medium.woff2") format("woff2"),
    url("assets/fonts/barlow-condensed-medium.otf") format("opentype");
  font-display: swap;
}

:root {
  --honey: #f4aa00;
  --honey-light: #ffc538;
  --ink: #11110f;
  --cream: #f3efe6;
  --paper: #fffdf8;
  --sage: #c9cfbf;
  --line: rgba(17, 17, 15, 0.18);
  --display: "Hamston", Georgia, serif;
  --sans: "Barlow Condensed", "Arial Narrow", sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --radius: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.15rem;
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 250;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
}

.event-bar {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ink);
  background: var(--honey);
}

.event-bar[hidden] {
  display: none;
}

.event-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.1rem;
  padding: 0.55rem var(--gutter);
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: center;
}

.event-bar__inner[hidden] {
  display: none;
}

.event-bar__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-bar__pulse {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--ink);
  animation: eventPulse 1.6s ease-in-out infinite;
}

@keyframes eventPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.6); }
}

.event-bar__detail,
.event-bar__countdown {
  margin: 0;
}

.event-bar__countdown {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.event-bar__actions {
  display: inline-flex;
  gap: 0.6rem;
}

.event-bar__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--ink);
  border-radius: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.event-bar__cta:hover,
.event-bar__cta:focus-visible {
  color: var(--honey);
  background: var(--ink);
}

.event-bar__cta--ghost {
  border-color: rgba(17, 17, 15, 0.4);
}

body.has-event-bar .site-header,
body.has-event-bar .scroll-progress {
  top: var(--event-bar-h, 0);
}

body.has-event-bar main {
  padding-top: var(--event-bar-h, 0);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 6rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 4.8rem;
  border-color: var(--line);
}

.brand {
  position: relative;
  z-index: 102;
  width: clamp(8rem, 12vw, 10rem);
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 2.25rem);
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 2px;
  background: var(--honey);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.75rem 1.15rem;
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.nav-social {
  display: none;
}

.social-icon {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.social-icon svg path {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: var(--ink);
  background: var(--honey);
  transform: translateY(-3px);
}

.social-rail {
  position: fixed;
  z-index: 80;
  right: 1rem;
  top: 50%;
  display: flex;
  min-height: 15rem;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 1.25rem 0.65rem 0.85rem;
  color: var(--paper);
  background: rgba(17, 17, 15, 0.92);
  border-radius: 2rem;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.social-rail::before {
  display: none;
}

.social-rail > span {
  position: absolute;
  top: 1.3rem;
  left: 50%;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateX(-50%);
}

.social-rail .social-icon {
  width: 2rem;
  height: 2rem;
  border-color: rgba(255, 255, 255, 0.45);
}

.social-rail .social-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1.18fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding: clamp(8.5rem, 13vh, 10rem) var(--gutter) 4rem;
  background:
    radial-gradient(circle at 12% 86%, rgba(244, 170, 0, 0.2), transparent 27rem),
    var(--cream);
}

.hero__content,
.hero__visual {
  min-width: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
}

.hero::before {
  position: absolute;
  top: 6rem;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(17, 17, 15, 0.08);
  content: "";
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 9.5vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

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

.hero h1 em,
.section h2 em {
  color: var(--honey);
  font-style: normal;
}

.hero__intro {
  max-width: 31rem;
  margin: 2rem 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.hero__actions,
.visit__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

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

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--ink);
  background: var(--honey);
}

.button--yellow {
  background: var(--honey);
  border-color: var(--honey);
}

.button--yellow:hover,
.button--yellow:focus-visible {
  background: var(--paper);
}

.button--outline {
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.25rem, 0.25rem);
}

.hero__visual {
  position: relative;
  min-height: min(68vh, 50rem);
  overflow: hidden;
  border-radius: 50% 50% var(--radius) var(--radius);
  background: var(--sage);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 15, 0.38));
  content: "";
}

.hero__visual picture {
  display: contents;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: min(68vh, 50rem);
  object-fit: cover;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.035);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__badge {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  width: 8.4rem;
  height: 8.4rem;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-align: center;
}

.hero__badge span + span {
  margin-top: 0.15rem;
}

.hexagon {
  position: absolute;
  z-index: 2;
  width: 4rem;
  aspect-ratio: 1;
  background: var(--honey);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.hexagon--one {
  top: 2rem;
  left: -1.2rem;
}

.hexagon--two {
  top: 5.2rem;
  left: 1.5rem;
  width: 2.7rem;
  background: var(--paper);
}

.hero__scroll {
  position: absolute;
  bottom: 1rem;
  left: var(--gutter);
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  padding: 1.1rem 0;
  color: var(--ink);
  background: var(--honey);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 25s linear infinite;
}

.ticker span {
  padding: 0 2.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.ticker i {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--ink);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}

.section-number {
  align-self: start;
  padding-top: 0.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.section-number::before {
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  margin-right: 0.75rem;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

.intro {
  display: grid;
  grid-template-columns: 0.28fr 1.1fr 0.72fr;
  gap: clamp(2rem, 5vw, 6rem);
  background: var(--paper);
}

.section h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.intro__copy {
  align-self: end;
  max-width: 30rem;
}

.lead {
  margin-top: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  line-height: 1.12;
}

.intro__copy .text-link {
  margin-top: 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  padding-top: 0;
  background: var(--paper);
}

.feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature--image {
  min-height: 46rem;
  grid-row: 1 / 3;
}

.feature--image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.55));
  content: "";
}

.feature--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.feature--image:hover img {
  transform: scale(1.05);
}

.feature__caption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 1.5rem;
  left: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature--yellow {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--honey);
}

.feature--yellow h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.85;
  text-transform: uppercase;
}

.feature--yellow p:last-child {
  max-width: 22rem;
  margin-bottom: 0;
}

.feature__icon {
  align-self: flex-end;
  font-size: 3rem;
}

.feature--quote {
  display: grid;
  min-height: 17rem;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--paper);
  background: var(--ink);
}

.feature--quote blockquote {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.15;
}

.gallery {
  background: var(--cream);
}

.gallery__heading {
  display: grid;
  grid-template-columns: auto 1fr minmax(15rem, 0.45fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.gallery__heading > p {
  max-width: 25rem;
  margin: 0;
  color: rgba(17, 17, 15, 0.7);
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 18rem);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: var(--sage);
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 17, 15, 0.7));
  content: "";
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.gallery-item--wide {
  grid-row: 1 / 3;
  grid-column: 1 / 3;
}

.gallery-item--wide img {
  object-position: 50% 70%;
}

.gallery-item--portrait img {
  object-position: 50% 50%;
}

.gallery-item--detail img {
  object-position: 50% 55%;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.1);
  transform: scale(1.06);
}

.gallery-item--interior {
  grid-row: 2;
  grid-column: 3 / 5;
}

.gallery-item--walkway {
  grid-row: 3;
  grid-column: 1 / 3;
}

.gallery-item--landscape {
  grid-row: 3;
  grid-column: 3 / 5;
}

.gallery-item--minerals {
  grid-row: 4;
  grid-column: 1 / 4;
}

.gallery-item--owl {
  grid-row: 4;
  grid-column: 4;
}

.gallery-item--owl img {
  object-position: 50% 45%;
}

.gallery-item--bears {
  grid-row: 5;
  grid-column: 1 / 3;
}

.gallery-item--bears img {
  object-position: 50% 60%;
}

.gallery-item--crystals {
  grid-row: 5;
  grid-column: 3 / 5;
}

.gallery-item--spheres {
  grid-row: 6;
  grid-column: 1 / 3;
}

.gallery-item--spheres img {
  object-position: 50% 78%;
}

.gallery-item--geode {
  grid-row: 6;
  grid-column: 3 / 5;
}

.gallery-item--geode img {
  object-position: 50% 60%;
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1rem;
  left: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.gallery-item > span strong {
  font-weight: 400;
}

.gallery-poster {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  overflow: hidden;
  background: var(--honey);
  border-radius: var(--radius);
}

.gallery-poster > span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-poster strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 0.82;
}

.gallery-poster i {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 12rem;
  aspect-ratio: 1;
  background: rgba(255, 253, 248, 0.26);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.gallery-lightbox {
  width: min(92vw, 74rem);
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--paper);
  background: transparent;
}

.gallery-lightbox::backdrop {
  background: rgba(17, 17, 15, 0.92);
  backdrop-filter: blur(12px);
}

.gallery-lightbox figure {
  margin: 0;
}

.gallery-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  margin-inline: auto;
  border-radius: var(--radius);
  transition: opacity 200ms ease;
}

.gallery-lightbox img.is-loading {
  opacity: 0.4;
}

.gallery-lightbox img.has-error {
  opacity: 0.3;
}

.gallery-lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-lightbox__count {
  color: rgba(255, 253, 248, 0.6);
}

.gallery-lightbox__close {
  position: absolute;
  z-index: 2;
  top: -1rem;
  right: -1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--honey);
  font: 300 2rem/1 Arial, sans-serif;
  cursor: pointer;
}

.gallery-lightbox__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(17, 17, 15, 0.55);
  font: 300 1.3rem/1 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 200ms ease, border-color 200ms ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  border-color: var(--honey);
  background: rgba(17, 17, 15, 0.85);
}

.gallery-lightbox__nav--prev {
  left: 1rem;
}

.gallery-lightbox__nav--next {
  right: 1rem;
}

.honey-mark {
  position: relative;
  width: 4rem;
  height: 5rem;
}

.honey-mark i {
  position: absolute;
  width: 2.5rem;
  aspect-ratio: 1;
  background: var(--honey);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.honey-mark i:nth-child(1) {
  top: 0;
}

.honey-mark i:nth-child(2) {
  top: 2rem;
  left: 1.8rem;
  background: var(--paper);
}

.honey-mark i:nth-child(3) {
  top: 4rem;
  width: 1.5rem;
}

.visit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 9vw, 10rem);
  color: var(--paper);
  background: var(--ink);
}

.visit__title .section-number {
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.visit__title > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 2.2rem 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.3rem;
}

.text-link--light {
  color: var(--paper);
}

.event-board {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.event-board__main {
  position: relative;
  min-height: 27rem;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  color: var(--ink);
  background: var(--honey);
  border-radius: var(--radius);
}

.event-board__main::after {
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: 23rem;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 15, 0.25);
  border-radius: 50%;
  content: "";
}

.event-date {
  display: grid;
  grid-template-columns: auto 1fr auto auto 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin: clamp(4rem, 8vw, 8rem) 0 1.5rem;
}

.event-date span {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-date strong {
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 400;
  line-height: 0.7;
}

.event-date i {
  font-size: 2rem;
  font-style: normal;
}

.event-board__main > p:last-child {
  margin: 0;
  font-size: 1.15rem;
}

.event-board__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1rem;
}

.event-board__meta > article {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius);
}

.event-board__meta > article:nth-child(2) {
  background: var(--sage);
}

.event-board__meta > article > span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-board__meta > article > strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.event-board__meta small {
  color: rgba(17, 17, 15, 0.65);
}

.countdown {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  background: var(--paper) !important;
}

.countdown > span {
  grid-column: 1 / -1;
}

.countdown div {
  display: grid;
  align-content: end;
}

.countdown div strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 400;
  line-height: 0.8;
}

.countdown div small {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(30rem, 1.28fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  background: var(--paper);
}

.location__heading .section-number {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.location__heading .lead {
  max-width: 30rem;
  margin: 2rem 0;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.copy-address {
  display: inline-flex;
  min-height: 3.4rem;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.copy-address svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.copy-address:hover,
.copy-address:focus-visible,
.copy-address.is-copied {
  color: var(--paper);
  background: var(--ink);
}

.map-card {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  border-radius: 50% 50% var(--radius) var(--radius);
  background: var(--sage);
  box-shadow: 0 2rem 5rem rgba(17, 17, 15, 0.12);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.45) contrast(1.05);
  transition: filter 350ms ease;
}

.map-card:hover iframe {
  filter: saturate(0.85) contrast(1.02);
}

.map-card__label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  color: var(--paper);
  background: rgba(17, 17, 15, 0.9);
  border-radius: 0.7rem;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.map-card__label div {
  display: grid;
}

.map-card__label strong {
  font-size: 1.15rem;
  font-weight: 400;
}

.map-card__label span {
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.85rem;
}

.map-pin {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  background: var(--honey);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.vendors {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 3rem 8vw;
  background: var(--cream);
}

.vendors__heading .section-number {
  margin-bottom: 5rem;
}

.vendors__content {
  align-self: end;
  max-width: 30rem;
}

.vendor-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.vendor-logo,
.vendor-note {
  display: grid;
  min-height: 18rem;
  place-items: center;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.vendor-logo img {
  width: min(75%, 19rem);
  max-height: 10rem;
  object-fit: contain;
  transition: transform 300ms ease;
}

.vendor-logo:hover img {
  transform: scale(1.06);
}

.vendor-note {
  place-content: center;
  align-items: start;
  background: var(--honey);
}

.vendor-note span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vendor-note strong {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.inquiry-form {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.inquiry-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.inquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.inquiry-form__field {
  display: grid;
  gap: 0.5rem;
}

.inquiry-form__field label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.inquiry-form__field label span {
  letter-spacing: normal;
  text-transform: none;
  opacity: 0.85;
}

.inquiry-form__field input,
.inquiry-form__field textarea {
  width: 100%;
  padding: 0.6rem 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.3);
  background: transparent;
  color: inherit;
  font: inherit;
  resize: vertical;
  transition: border-color 180ms ease;
}

.inquiry-form__field textarea {
  min-height: 4.5rem;
}

.inquiry-form__field input:focus-visible,
.inquiry-form__field textarea:focus-visible {
  border-color: var(--ink);
  outline: none;
}

.inquiry-form__submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.4rem;
}

.inquiry-form__submit button[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

.inquiry-form__status {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.inquiry-form__fallback {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.inquiry-form__fallback a {
  color: inherit;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 10rem);
  background: var(--paper);
}

.faq__heading .section-number {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.faq__list {
  align-self: end;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 1.6rem 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 42rem;
  margin: -0.3rem 0 1.8rem;
  color: rgba(17, 17, 15, 0.7);
}

.faq details p a {
  text-underline-offset: 0.2rem;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 6vw;
  overflow: hidden;
  background: var(--honey);
}

.contact h2 em {
  color: var(--paper);
}

.contact__panel {
  display: grid;
  gap: 2.5rem;
  align-self: end;
}

.contact-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.45);
  text-decoration: none;
}

.contact-link span {
  grid-column: 1;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-link strong {
  grid-column: 1;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.contact-link i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-link:hover i,
.contact-link:focus-visible i {
  transform: translate(0.3rem, -0.3rem);
}

.contact__mark .hexagon--large {
  top: -6rem;
  right: 8%;
  width: 13rem;
  background: rgba(255, 253, 248, 0.15);
}

.contact__mark .hexagon--small {
  right: 0;
  bottom: -2rem;
  width: 7rem;
  background: rgba(17, 17, 15, 0.08);
}

.site-footer {
  padding: 4rem var(--gutter) 1.5rem;
  color: var(--paper);
  background: var(--ink);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
}

.brand--footer img {
  filter: brightness(0) invert(1);
}

.footer__top p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 1.25rem;
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-social-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
}

.footer-social-link .social-icon {
  width: 2.2rem;
  height: 2.2rem;
}

.footer-social-link .social-icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.footer__social a,
.footer__bottom a {
  text-decoration: none;
}

.footer__social a:hover,
.footer__bottom a:hover {
  color: var(--honey);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: reveal 650ms ease forwards;
}

.hero__content .reveal:nth-child(2) {
  animation-delay: 80ms;
}

.hero__content .reveal:nth-child(3) {
  animation-delay: 160ms;
}

.hero__content .reveal:nth-child(4) {
  animation-delay: 240ms;
}

.hero__visual.reveal {
  animation-delay: 140ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.motion-item {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.6rem 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    position: relative;
    display: block;
    width: 2rem;
    height: 1rem;
  }

  .menu-toggle__icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle__icon i:first-child {
    top: 0.15rem;
  }

  .menu-toggle__icon i:last-child {
    top: 0.75rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    top: 0.45rem;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 0.45rem;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem var(--gutter) 4rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background: var(--honey);
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2.8rem, 10vw, 5rem);
    line-height: 0.95;
  }

  .nav-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .nav-social .social-icon {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    font-family: var(--sans);
  }

  .nav-social .social-icon::after {
    display: none;
  }

  .social-rail {
    display: none;
  }

  .site-nav .nav-cta {
    padding: 0;
    color: var(--ink);
    background: transparent;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 9rem;
  }

  .hero::before,
  .hero__scroll {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__visual {
    min-height: 60vh;
  }

  .hero__visual img {
    min-height: 60vh;
  }

  .intro {
    grid-template-columns: auto 1fr;
  }

  .intro__copy {
    grid-column: 2;
  }

  .gallery__heading {
    grid-template-columns: auto 1fr;
  }

  .gallery__heading > p {
    grid-column: 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 22rem 18rem 20rem 18rem 20rem 18rem 20rem 20rem;
  }

  .gallery-item--wide {
    grid-row: 1;
    grid-column: 1 / -1;
  }

  .gallery-item--portrait {
    grid-row: 2;
    grid-column: 1;
  }

  .gallery-item--detail {
    grid-row: 2;
    grid-column: 2;
  }

  .gallery-item--interior {
    grid-row: 3;
    grid-column: 1 / -1;
  }

  .gallery-item--walkway {
    grid-row: 4;
    grid-column: 1;
  }

  .gallery-item--landscape {
    grid-row: 4;
    grid-column: 2;
  }

  .gallery-item--minerals {
    grid-row: 5;
    grid-column: 1 / -1;
  }

  .gallery-item--owl {
    grid-row: 6;
    grid-column: 1;
  }

  .gallery-item--crystals {
    grid-row: 6;
    grid-column: 2;
  }

  .gallery-item--bears {
    grid-row: 7;
    grid-column: 1 / -1;
  }

  .gallery-item--spheres {
    grid-row: 8;
    grid-column: 1;
  }

  .gallery-item--geode {
    grid-row: 8;
    grid-column: 2;
  }

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

  .event-board__meta {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .map-card {
    min-height: 34rem;
  }

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

  .visit__title .section-number,
  .vendors__heading .section-number {
    margin-bottom: 3rem;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 1.25rem;
    --radius: 0.9rem;
  }

  body {
    font-size: 1.05rem;
  }

  .site-header {
    min-height: 5rem;
  }

  .brand {
    width: 7.5rem;
  }

  .menu-toggle__label {
    display: none;
  }

  .hero {
    gap: 2.5rem;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14.5vw, 5.5rem);
  }

  .hero__intro {
    margin: 1.5rem 0;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 31rem;
  }

  .hero__visual {
    border-radius: 10rem 10rem var(--radius) var(--radius);
  }

  .hero__badge {
    right: 1rem;
    bottom: 1rem;
    width: 6.7rem;
    height: 6.7rem;
    font-size: 0.55rem;
  }

  .ticker span {
    padding: 0 1.5rem;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .intro__copy {
    grid-column: 1;
    margin-top: 1rem;
  }

  .section h2 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

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

  .feature--image {
    min-height: 33rem;
    grid-row: auto;
  }

  .feature--yellow {
    min-height: 25rem;
  }

  .feature--quote {
    min-height: 15rem;
    grid-template-columns: 1fr;
  }

  .honey-mark {
    height: 3rem;
  }

  .honey-mark i:nth-child(3) {
    display: none;
  }

  .gallery__heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery__heading > p {
    grid-column: 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 24rem 16rem 20rem 16rem 20rem 16rem 20rem 18rem;
  }

  .gallery-item--wide {
    grid-row: 1;
    grid-column: 1 / -1;
  }

  .gallery-item--portrait {
    grid-row: 2;
    grid-column: 1;
  }

  .gallery-item--detail {
    grid-row: 2;
    grid-column: 2;
  }

  .gallery-item--interior {
    grid-row: 3;
    grid-column: 1 / -1;
  }

  .gallery-item--walkway {
    grid-row: 4;
    grid-column: 1;
  }

  .gallery-item--landscape {
    grid-row: 4;
    grid-column: 2;
  }

  .gallery-item--minerals {
    grid-row: 5;
    grid-column: 1 / -1;
  }

  .gallery-item--owl {
    grid-row: 6;
    grid-column: 1;
  }

  .gallery-item--crystals {
    grid-row: 6;
    grid-column: 2;
  }

  .gallery-item--bears {
    grid-row: 7;
    grid-column: 1 / -1;
  }

  .gallery-item--spheres {
    grid-row: 8;
    grid-column: 1;
  }

  .gallery-item--geode {
    grid-row: 8;
    grid-column: 2;
  }

  .gallery-item > span {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    font-size: 0.65rem;
  }

  .gallery-lightbox {
    width: calc(100vw - 2rem);
  }

  .gallery-lightbox__close {
    top: -0.5rem;
    right: -0.5rem;
  }

  .gallery-lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .gallery-lightbox__nav--prev {
    left: 0.5rem;
  }

  .gallery-lightbox__nav--next {
    right: 0.5rem;
  }

  .visit__title .section-number,
  .vendors__heading .section-number {
    margin-bottom: 2.5rem;
  }

  .visit__links {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-board__main {
    min-height: 23rem;
  }

  .event-date {
    grid-template-columns: auto 1fr auto;
    margin-top: 4rem;
  }

  .event-date span:nth-of-type(2) {
    grid-row: 2;
    grid-column: 1;
  }

  .event-date strong:nth-of-type(2) {
    grid-row: 2;
    grid-column: 2;
  }

  .event-date i {
    grid-row: 1 / 3;
    grid-column: 3;
    align-self: center;
  }

  .event-board__meta {
    grid-template-columns: 1fr;
  }

  .event-board__meta > article {
    min-height: 11rem;
  }

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

  .vendor-strip {
    grid-template-columns: 1fr 1fr;
  }

  .vendor-logo,
  .vendor-note {
    min-height: 13rem;
  }

  .vendor-note {
    grid-column: 1 / -1;
  }

  .map-card {
    min-height: 28rem;
    border-radius: 9rem 9rem var(--radius) var(--radius);
  }

  .location__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .location__actions .button,
  .copy-address {
    width: 100%;
  }

  .inquiry-form__row {
    grid-template-columns: 1fr;
  }

  .faq summary {
    font-size: 1.35rem;
  }

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

  .contact__panel {
    gap: 2rem;
  }

  .contact__actions {
    margin-top: 1rem;
  }

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

  .footer__social {
    justify-content: flex-start;
  }

  .footer__bottom {
    gap: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) and (min-width: 721px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature--image {
    min-height: 38rem;
    grid-row: auto;
  }

  .feature--yellow,
  .feature--quote {
    min-height: 18rem;
  }
}

@media (max-width: 980px) and (max-height: 650px) {
  .site-nav {
    justify-content: flex-start;
    gap: 0.55rem;
    padding-top: 5.5rem;
    padding-bottom: 1.25rem;
  }

  .site-nav a {
    font-size: clamp(1.9rem, 7vh, 2.7rem);
    line-height: 0.9;
  }

  .nav-social {
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 980px) and (max-height: 420px) and (min-width: 480px) {
  .site-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 2rem;
    align-content: center;
    padding: 4.75rem 2rem 1rem;
  }

  .site-nav a {
    font-size: clamp(1.55rem, 7vh, 2rem);
    line-height: 0.88;
  }

  .nav-social {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 0.4rem;
    padding-bottom: 0;
  }

  .nav-social .social-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
