:root {
  --black: #050504;
  --ink: #f4efe5;
  --muted: #a99f91;
  --panel: #151411;
  --panel-raised: #211f19;
  --line: #3a3328;
  --gold: #e6bc73;
  --gold-soft: #9c7440;
  --green: #567a4a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 74%, transparent);
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(5, 5, 4, 0.78);
  border-color: rgba(230, 188, 115, 0.18);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 124px;
  height: 44px;
  object-fit: contain;
  transition: filter 220ms ease, transform 220ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 0 16px rgba(230, 188, 115, 0.22));
  transform: translateY(-1px);
}

.desktop-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ghost-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.ghost-link:hover {
  color: var(--gold);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--gold);
  color: var(--black);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease,
    background 180ms ease;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(230, 188, 115, 0.18);
}

.button:active,
button:active {
  transform: translateY(0);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: rgba(230, 188, 115, 0.34);
}

.button.small {
  min-height: 40px;
  padding: 0 16px;
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 110px clamp(20px, 6vw, 72px) 56px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-scrim {
  background:
    radial-gradient(circle at 50% 55%, rgba(230, 188, 115, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.86) 78%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  transform: translateY(var(--hero-shift, 0));
  transition: transform 80ms linear;
}

.hero-logo {
  width: min(310px, 62vw);
  margin-bottom: 18px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(44px, 7.4vw, 94px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  font-weight: 800;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

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

.hero-status {
  position: absolute;
  right: clamp(20px, 6vw, 72px);
  bottom: 56px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(230, 188, 115, 0.22);
  border-radius: 8px;
  background: rgba(12, 12, 10, 0.62);
  color: var(--muted);
  backdrop-filter: blur(16px);
}

.hero-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.band,
.experience,
.founding,
.space-gallery,
footer {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 72px);
}

.intro,
.membership,
.founding,
.events,
.faq,
.visit {
  background:
    linear-gradient(180deg, rgba(230, 188, 115, 0.04), transparent),
    var(--black);
}

.intro-grid,
.membership,
.founding,
.events,
.faq,
.space-gallery {
  max-width: var(--max);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-top: 18px;
}

.intro-grid p,
.membership-copy p,
.founding-heading p,
.founding-card p,
.process-step p,
.events-heading p,
.event-feature p,
.event-card p,
.faq-list p,
.space-heading p,
.visit-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.experience {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.experience-card,
.membership-panel,
.visit-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
}

.experience-card {
  position: relative;
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease,
    background 220ms ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.experience-card:hover::after {
  opacity: 0.78;
  transform: translateY(0);
}

.experience-card:hover,
.founding-card:hover,
.faq-list details:hover {
  border-color: rgba(230, 188, 115, 0.34);
  transform: translateY(-3px);
}

.experience-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.experience-card h3 {
  margin-top: 70px;
}

.experience-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.membership {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.membership-copy p {
  margin-top: 20px;
}

.membership-panel {
  min-height: auto;
  background:
    radial-gradient(circle at top right, rgba(230, 188, 115, 0.12), transparent 34%),
    var(--panel);
  transition: border-color 220ms ease, transform 220ms ease,
    box-shadow 220ms ease;
}

.membership-panel:hover {
  border-color: rgba(230, 188, 115, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  transform: translateY(-3px);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-top span {
  font-size: 20px;
  font-weight: 800;
}

.panel-top strong {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

ul {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

ul li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.member-meter {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 16px;
  border: 1px solid rgba(230, 188, 115, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.member-meter div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-meter strong {
  color: var(--gold);
  text-align: right;
}

.meter-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.meter-track span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 18px rgba(230, 188, 115, 0.35);
  transform: scaleX(0);
  transform-origin: left;
}

.member-meter.visible .meter-track span,
.membership-panel.visible .meter-track span {
  animation: fillMeter 1100ms 260ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.founding {
  display: grid;
  gap: clamp(26px, 5vw, 52px);
  border-top: 1px solid rgba(230, 188, 115, 0.1);
}

.founding-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: end;
}

.founding-heading h2 {
  margin-top: 12px;
}

.founding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.founding-card {
  position: relative;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    radial-gradient(circle at 50% 0%, rgba(230, 188, 115, 0.11), transparent 38%),
    var(--panel);
  transition: border-color 220ms ease, transform 220ms ease,
    box-shadow 220ms ease;
}

.founding-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(230, 188, 115, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.founding-card span,
.process-step span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.founding-card h3 {
  margin-top: 120px;
}

.founding-card p {
  margin-top: 12px;
}

.process {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) clamp(20px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-line {
  position: absolute;
  left: clamp(42px, 8vw, 92px);
  right: clamp(42px, 8vw, 92px);
  top: clamp(67px, 8vw, 99px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 188, 115, 0.38), transparent);
}

.process-step {
  position: relative;
  padding: 26px 0 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 28px rgba(230, 188, 115, 0.35);
}

.process-step h3 {
  margin-top: 18px;
  font-size: 22px;
}

.process-step p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.65;
}

.space-gallery {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.events {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  border-top: 1px solid rgba(230, 188, 115, 0.1);
}

.events-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: end;
}

.events-heading h2 {
  margin-top: 12px;
}

.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 14px;
}

.event-feature,
.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.event-feature {
  min-height: 620px;
  isolation: isolate;
}

.event-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}

.event-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 45% 65%, rgba(230, 188, 115, 0.18), transparent 42%);
}

.event-feature:hover img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.event-feature div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.event-feature span,
.event-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-feature h3 {
  margin-top: 10px;
  font-size: clamp(32px, 5vw, 58px);
}

.event-feature p {
  max-width: 570px;
  margin-top: 14px;
}

.event-stack {
  display: grid;
  gap: 14px;
}

.event-card {
  min-height: 194px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    radial-gradient(circle at 100% 0%, rgba(230, 188, 115, 0.09), transparent 36%),
    var(--panel);
  transition: border-color 220ms ease, transform 220ms ease;
}

.event-card:hover {
  border-color: rgba(230, 188, 115, 0.34);
  transform: translateY(-3px);
}

.event-card h3 {
  margin-top: 52px;
}

.event-card p {
  margin-top: 10px;
  font-size: 15px;
}

.space-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: end;
}

.space-heading h2 {
  margin-top: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 0.72fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 14px;
}

.gallery-feature,
.gallery-tile,
.gallery-plan {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  isolation: isolate;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition: border-color 220ms ease, transform 220ms ease,
    box-shadow 220ms ease;
}

.gallery-feature {
  grid-row: span 2;
  min-height: 560px;
}

.gallery-feature img,
.gallery-tile img,
.gallery-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 800ms ease, filter 800ms ease;
}

.gallery-feature img {
  object-position: center top;
}

.gallery-feature::after,
.gallery-tile::after,
.gallery-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 65%, rgba(230, 188, 115, 0.16), transparent 42%);
}

.gallery-feature:hover img,
.gallery-tile:hover img,
.gallery-plan:hover img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.gallery-feature:hover,
.gallery-tile:hover,
.gallery-plan:hover {
  border-color: rgba(230, 188, 115, 0.34);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.gallery-copy,
.gallery-tile div,
.plan-list {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.gallery-copy span,
.gallery-tile span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gallery-copy h3,
.gallery-tile h3,
.gallery-plan h3 {
  margin-top: 8px;
}

.gallery-copy p {
  max-width: 520px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-tile {
  min-height: 260px;
}

.gallery-tile h3 {
  font-size: 22px;
}

.crop-entrance img {
  object-position: left bottom;
}

.crop-bays img {
  object-position: 73% 70%;
}

.crop-coffee img {
  object-position: right bottom;
}

.gallery-plan {
  grid-column: span 2;
  min-height: 300px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
}

.gallery-plan::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.96) 0 36%, rgba(5, 5, 4, 0.38)),
    radial-gradient(circle at 80% 55%, rgba(230, 188, 115, 0.1), transparent 38%);
}

.gallery-plan img {
  grid-column: 1 / -1;
  grid-row: 1;
  object-position: center 52%;
}

.plan-list {
  top: 24px;
  bottom: 24px;
  width: min(380px, calc(100% - 44px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-list h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.plan-list ol {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.35;
}

.plan-list li::marker {
  color: var(--gold);
  font-weight: 800;
}

.visit {
  display: grid;
  place-items: center;
}

.visit-card {
  position: relative;
  width: min(820px, 100%);
  min-height: auto;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 188, 115, 0.15), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--panel);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.36);
}

.visit-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(230, 188, 115, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.visit-card h2 {
  margin-top: 10px;
}

.visit-card p {
  margin: 16px auto 0;
  max-width: 560px;
}

.visit-intro,
.interest-form,
.visit-card .form-note {
  position: relative;
  z-index: 1;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-top: 1px solid rgba(230, 188, 115, 0.1);
}

.faq-heading h2 {
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel);
  transition: border-color 220ms ease, transform 220ms ease;
}

.faq-list summary {
  position: relative;
  padding: 22px 56px 22px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 22px 22px;
}

.interest-form {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.interest-form label {
  display: grid;
  gap: 8px;
}

.interest-form label span,
.contact-method legend {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(230, 188, 115, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease,
    background 180ms ease;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%),
    var(--panel-raised);
  background-position:
    calc(100% - 22px) 22px,
    calc(100% - 16px) 22px,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
}

input:focus,
select:focus {
  border-color: rgba(230, 188, 115, 0.72);
  box-shadow: 0 0 0 4px rgba(230, 188, 115, 0.08);
  outline: none;
}

.contact-method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-method legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.contact-method label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(230, 188, 115, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease,
    transform 180ms ease;
}

.contact-method label:hover {
  border-color: rgba(230, 188, 115, 0.42);
  transform: translateY(-1px);
}

.contact-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-method input:checked + span {
  color: var(--black);
}

.contact-method label:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold);
}

.form-note {
  color: #736b60 !important;
  font-size: 13px !important;
}

.success-message {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(230, 188, 115, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at top, rgba(230, 188, 115, 0.12), transparent 52%),
    rgba(230, 188, 115, 0.09);
  color: var(--ink);
  text-align: center;
}

.success-message span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-message strong {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1;
}

.success-message p {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

.portal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 30%, rgba(230, 188, 115, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.22), var(--black)),
    var(--black);
}

.portal-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 48px;
}

.portal-card {
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(230, 188, 115, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(21, 20, 17, 0.86);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.46);
  text-align: center;
}

.portal-card img {
  width: 190px;
  margin: 0 auto 24px;
}

.portal-card h1 {
  margin-top: 12px;
  font-size: clamp(42px, 7vw, 76px);
}

.portal-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.portal-card .hero-actions {
  justify-content: center;
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(230, 188, 115, 0.1), transparent 34%),
    linear-gradient(180deg, #090806, var(--black));
}

.admin-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 20px;
}

.admin-login {
  width: min(520px, 100%);
  margin: 8vh auto 0;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(230, 188, 115, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.admin-login img {
  width: 160px;
  margin-bottom: 24px;
}

.admin-login h1,
.admin-topbar h1 {
  margin-top: 8px;
  font-size: clamp(38px, 5vw, 64px);
}

.admin-login p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.admin-form {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.admin-dashboard {
  display: grid;
  gap: 24px;
}

.admin-dashboard[hidden],
.admin-login[hidden],
.admin-view[hidden] {
  display: none;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.admin-tabs {
  display: flex;
  width: fit-content;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-tab {
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.admin-tab:hover {
  transform: none;
  box-shadow: none;
  color: var(--ink);
}

.admin-tab.is-active {
  background: var(--gold);
  color: var(--black);
}

.admin-view {
  display: grid;
  gap: 20px;
}

.schedule-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.schedule-toolbar > div:last-child {
  text-align: right;
}

.schedule-toolbar h2 {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 44px);
}

.date-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px;
}

.calendar-jump {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  overflow: hidden;
  border: 1px solid rgba(230, 188, 115, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(230, 188, 115, 0.1), transparent),
    rgba(255, 255, 255, 0.025);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
}

.calendar-jump:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(230, 188, 115, 0.17), transparent),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 12px 26px rgba(230, 188, 115, 0.1);
}

.calendar-icon {
  position: relative;
  width: 18px;
  height: 17px;
  flex: 0 0 auto;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
}

.calendar-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 4px;
  height: 1.5px;
  background: var(--gold);
  box-shadow: 0 4px 0 rgba(230, 188, 115, 0.52);
}

.calendar-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 3px;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 8px 0 0 var(--gold);
}

.calendar-copy {
  display: grid;
  gap: 1px;
  min-width: 108px;
}

.calendar-copy strong {
  font-size: 12px;
  line-height: 1.1;
}

.calendar-copy small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
}

.calendar-jump input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  color-scheme: dark;
}

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

.schedule-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lead-summary article,
.schedule-summary article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.lead-summary span,
.schedule-summary span {
  color: var(--gold);
  font-size: 34px;
  font-weight: 800;
}

.lead-summary p,
.schedule-summary p {
  margin-top: 4px;
  color: var(--muted);
}

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

.bay-column {
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel);
}

.bay-column > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.bay-column header span {
  font-size: 18px;
  font-weight: 800;
}

.bay-column header p,
.bay-column header strong {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.bay-column header strong {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bay-bookings {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.booking-card {
  display: grid;
  justify-items: start;
  width: 100%;
  min-height: 0;
  padding: 14px;
  border-color: rgba(230, 188, 115, 0.28);
  background:
    linear-gradient(135deg, rgba(230, 188, 115, 0.13), transparent),
    var(--panel-raised);
  color: var(--ink);
  text-align: left;
}

.booking-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-card strong {
  margin-top: 7px;
  font-size: 16px;
}

.booking-card small {
  margin-top: 3px;
  overflow: hidden;
  max-width: 100%;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-card.is-block {
  border-color: rgba(156, 77, 67, 0.55);
  background:
    linear-gradient(135deg, rgba(156, 77, 67, 0.22), transparent),
    var(--panel-raised);
}

.booking-card.is-block span {
  color: #df9389;
}

.empty-bay {
  display: grid;
  min-height: 158px;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}

.booking-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid rgba(230, 188, 115, 0.28);
  border-radius: 12px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
}

.booking-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.booking-dialog h2 {
  margin-top: 8px;
  font-size: 32px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  min-height: 38px;
  padding: 0;
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 24px;
}

.booking-details {
  display: grid;
  gap: 0;
  margin: 24px 0;
}

.booking-details > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.booking-details dt {
  color: var(--muted);
}

.booking-details dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button.danger {
  border-color: #9c4d43;
  background: #9c4d43;
  color: white;
}

.admin-editor-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-editor-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.lead-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px 160px auto;
  gap: 10px;
}

.lead-list {
  display: grid;
  gap: 10px;
}

.lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px 210px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent),
    var(--panel);
}

.lead-card.is-contacted {
  border-color: rgba(86, 122, 74, 0.42);
}

.lead-card h3 {
  font-size: 18px;
}

.lead-card a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--muted);
  word-break: break-word;
}

.lead-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-status {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.lead-status p {
  color: var(--muted);
  text-align: right;
}

.lead-status strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

footer img {
  width: 130px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fillMeter {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .ghost-link {
    display: none;
  }

  .site-header {
    height: 68px;
  }

  .brand img {
    width: 108px;
  }

  .hero {
    min-height: 92vh;
    padding-bottom: 34px;
  }

  .hero-image {
    object-position: 50% center;
  }

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    width: fit-content;
    margin-top: 22px;
  }

  .intro-grid,
  .experience,
  .membership,
  .founding-heading,
  .founding-grid,
  .process,
  .events-heading,
  .events-grid,
  .space-heading,
  .gallery-grid,
  .gallery-plan,
  .faq {
    grid-template-columns: 1fr;
  }

  .founding-heading,
  .events-heading,
  .space-heading,
  .faq {
    gap: 18px;
  }

  .event-feature {
    min-height: 520px;
  }

  .event-card h3 {
    margin-top: 42px;
  }

  .founding-card {
    min-height: 250px;
  }

  .founding-card h3 {
    margin-top: 74px;
  }

  .process {
    gap: 22px;
    padding-top: 28px;
  }

  .process-line {
    top: 40px;
    bottom: 20px;
    left: 25px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(230, 188, 115, 0.38), transparent);
  }

  .process-step {
    padding: 0 0 0 40px;
  }

  .gallery-feature,
  .gallery-tile,
  .gallery-plan {
    grid-column: auto;
    grid-row: auto;
    transform: none !important;
  }

  .gallery-feature {
    min-height: 520px;
  }

  .gallery-tile {
    min-height: 310px;
  }

  .gallery-plan {
    min-height: 520px;
  }

  .gallery-plan::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 4, 0.9), rgba(5, 5, 4, 0.42) 64%, rgba(5, 5, 4, 0.88)),
      radial-gradient(circle at 50% 70%, rgba(230, 188, 115, 0.14), transparent 38%);
  }

  .gallery-plan img {
    object-position: center bottom;
  }

  .plan-list {
    top: 22px;
    bottom: auto;
    width: calc(100% - 44px);
    justify-content: flex-start;
  }

  .interest-form {
    gap: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .admin-actions,
  .schedule-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-summary,
  .schedule-summary,
  .lead-tools,
  .lead-card,
  .bay-schedule {
    grid-template-columns: 1fr;
  }

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

  .schedule-toolbar > div:last-child {
    text-align: left;
  }

  .calendar-jump {
    width: 100%;
  }

  .calendar-copy {
    min-width: 0;
  }

  .admin-tabs {
    width: 100%;
  }

  .admin-tab {
    flex: 1;
  }

  .lead-status {
    justify-items: start;
  }

  .lead-status p {
    text-align: left;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .hero-content,
  .gallery-feature,
  .gallery-tile,
  .gallery-plan {
    transform: none !important;
  }
}
