/* ==========================================================================
   Depot Square Events — Design Tokens
   Signature: the freight tag / shipping manifest, drawn from the building's
   life as a 1926 freight depot before it became an event hall.
   ========================================================================== */

:root {
  /* Color */
  --ink:          #1C1815;
  --ink-soft:     #2A241F;
  --paper:        #EFE7D8;
  --paper-2:      #E4D8C2;
  --paper-3:      #DCCDAF;
  --brick:        #8A3E2C;
  --brick-dark:   #6B2E20;
  --brass:        #C0993F;
  --brass-light:  #DAB868;
  --steel:        #6E6A61;
  --steel-light:  #A79E8C;
  --cream-text:   #F3ECDE;

  /* Type */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-label:   'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --container-wide: 1240px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--ink); color: var(--cream-text); }
.section--accent { background: var(--brick); color: var(--cream-text); }

/* Ambient background texture */
.ambient-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.ambient-bg__texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(28,24,21,0.025) 0px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(28,24,21,0.02) 0px, transparent 1px, transparent 3px);
}
.ambient-bg__gradient {
  position: absolute; top: -10%; right: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(192,153,63,0.10) 0%, transparent 70%);
}

/* Eyebrow / labels — the manifest stamp voice */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--brass);
  border-radius: 50%;
  flex: none;
}
.eyebrow--light { color: var(--brass-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 18px 0 22px;
  color: var(--ink);
}
.section-title--light { color: var(--cream-text); }

.section-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.section-header { max-width: 640px; margin-bottom: 64px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}
.btn--primary {
  background: var(--brick);
  color: var(--cream-text);
  border-color: var(--brick);
}
.btn--primary:hover { background: var(--brick-dark); border-color: var(--brick-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--cream-text);
  border-color: rgba(243,236,222,0.4);
}
.btn--ghost:hover { border-color: var(--cream-text); transform: translateY(-2px); }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brick);
  border-bottom: 1px solid var(--brick);
  padding-bottom: 4px;
  transition: gap .3s var(--ease);
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 14px; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(239,231,216,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: rgba(28,24,21,0.08);
}

.nav { display: flex; align-items: center; justify-content: space-between; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-label);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-text);
  transition: color .4s ease;
}
.header.is-scrolled .nav__logo { color: var(--ink); }
.nav__logo-rivet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 2px rgba(192,153,63,0.25);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-text);
  opacity: 0.85;
  transition: opacity .3s ease, color .4s ease;
}
.header.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  padding: 11px 20px;
  border: 1px solid var(--brass);
  border-radius: var(--radius-sm);
  opacity: 1 !important;
  color: var(--brass-light) !important;
}
.header.is-scrolled .nav__cta { color: var(--brick) !important; border-color: var(--brick); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--cream-text);
  transition: background .4s ease, transform .3s ease, opacity .3s ease;
}
.header.is-scrolled .nav__toggle span { background: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,13,0.55) 0%, rgba(20,16,13,0.62) 45%, rgba(20,16,13,0.85) 100%),
    linear-gradient(100deg, rgba(20,16,13,0.75) 0%, rgba(20,16,13,0.25) 60%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  color: var(--cream-text);
  margin: 20px 0 26px;
}
.hero__title-line { display: block; }
.hero__title-line--italic { font-style: italic; color: var(--brass-light); }

.hero__lede {
  color: rgba(243,236,222,0.82);
  font-size: 1.1rem;
  max-width: 42ch;
  margin-bottom: 34px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 34px; left: 32px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(243,236,222,0.6);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(243,236,222,0.7), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity:.7; } 50% { transform: scaleY(0.5); opacity: .3; } }

/* Ticket tag — the signature element */
.ticket-tag {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 320px;
  background: var(--paper);
  color: var(--ink);
  padding: 30px 26px 24px;
  border-radius: 10px 10px var(--radius-sm) var(--radius-sm);
  transform: rotate(3deg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
  border: 1px solid var(--paper-3);
}
.ticket-tag::before {
  content: '';
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 0;
  border-top: 2px dashed var(--paper-3);
}
.ticket-tag__hole {
  position: absolute;
  top: -9px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--brass);
}
.ticket-tag__head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.02em;
  margin-top: 14px;
}
.ticket-tag__title {
  display: block;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 14px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--paper-3);
}
.ticket-tag__list { display: flex; flex-direction: column; gap: 10px; }
.ticket-tag__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}
.ticket-tag__list span { color: var(--steel); }
.ticket-tag__list b {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
}
.ticket-tag__foot {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--paper-3);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--steel-light);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Ledger (stats)
   ========================================================================== */

.ledger {
  background: var(--paper-2);
  border-top: 1px solid var(--paper-3);
  border-bottom: 1px solid var(--paper-3);
  padding: 40px 0;
}
.ledger__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 40px;
}
.ledger__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--paper-3);
}
.ledger__label {
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}
.ledger__dots {
  flex: 1;
  border-bottom: 1px dotted var(--steel-light);
  transform: translateY(-4px);
}
.ledger__value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brick);
  white-space: nowrap;
}

/* ==========================================================================
   About
   ========================================================================== */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.about__text p { color: var(--ink-soft); margin-bottom: 18px; max-width: 52ch; }

.about__visual { position: relative; }
.about__image-stack { position: relative; padding: 30px 20px 20px 0; }

.torn-frame {
  overflow: hidden;
  border: 1px solid var(--paper-3);
  background: var(--paper);
}
.torn-frame img { width: 100%; height: 100%; object-fit: cover; }
.torn-frame--accent {
  position: absolute;
  bottom: -30px; left: -20px;
  width: 46%;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 50px -18px rgba(28,24,21,0.4);
  border: 6px solid var(--paper);
}
.about__image-stack > .torn-frame:first-child { aspect-ratio: 5/4; }

.postmark {
  position: absolute;
  top: -6px; right: -6px;
  width: 96px; height: 96px;
  border: 1.5px dashed var(--brick);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(10deg);
  font-family: var(--font-label);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brick);
  text-align: center;
  line-height: 1.5;
  background: var(--paper);
}

/* ==========================================================================
   Features
   ========================================================================== */

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--ink-soft);
  border: 1px solid rgba(243,236,222,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(192,153,63,0.4); }
.feature-card__image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.feature-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feature-card:hover .feature-card__image img { transform: scale(1.06); }
.feature-card__stamp {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(28,24,21,0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(192,153,63,0.5);
  color: var(--brass-light);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}
.feature-card__body { padding: 26px 24px 30px; }
.feature-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream-text);
  margin-bottom: 12px;
}
.feature-card__body p { color: rgba(243,236,222,0.68); font-size: 0.95rem; }

/* ==========================================================================
   Amenities
   ========================================================================== */

.amenity-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--paper-3);
}
.amenity-row:first-of-type { padding-top: 0; }
.amenity-row--reverse { grid-template-columns: 1.15fr 0.85fr; }
.amenity-row--reverse .amenity-row__content { order: 2; }
.amenity-row--reverse .amenity-row__media { order: 1; }

.amenity-row__tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  background: rgba(192,153,63,0.12);
  border: 1px solid rgba(192,153,63,0.35);
  padding: 5px 11px;
  border-radius: var(--radius-sm);
}
.amenity-row__content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin: 16px 0 14px;
}
.amenity-row__content p { color: var(--ink-soft); max-width: 46ch; }
.amenity-row__media { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-md); }
.amenity-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.amenity-row__media:hover img { transform: scale(1.05); }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius-sm); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__postmark {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1.5px dashed rgba(243,236,222,0.6);
  color: var(--cream-text);
  font-family: var(--font-label);
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  transform: rotate(-8deg);
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.testimonial__inner { max-width: 780px; text-align: center; margin: 0 auto; }
.testimonial__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--brass);
  margin-bottom: 18px;
}
.testimonial__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--paper-3);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.testimonial__name {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonial__role { font-size: 13px; color: var(--steel); }

/* ==========================================================================
   Mission
   ========================================================================== */

.mission__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.mission__text { color: rgba(243,236,222,0.82); margin-top: 22px; font-size: 1.08rem; }
.mission__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(243,236,222,0.18);
}
.mission__pillar-icon {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--brass-light);
  margin-bottom: 16px;
}
.mission__pillar h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.mission__pillar p { color: rgba(243,236,222,0.68); font-size: 0.92rem; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact__details { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.contact__detail { display: flex; flex-direction: column; gap: 4px; }
.contact__detail-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.contact__detail-value { font-size: 1.05rem; }
a.contact__detail .contact__detail-value { transition: color .3s ease; }
a.contact__detail:hover .contact__detail-value { color: var(--brick); }

.contact__form {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-md);
  padding: 40px;
}
.contact__form-tag {
  position: absolute;
  top: -14px; right: 30px;
  background: var(--ink);
  color: var(--brass-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
}
.form-group input, .form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--paper-3);
  background: transparent;
  padding: 8px 2px 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  resize: vertical;
  transition: border-color .3s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brick);
}
.form-group input.is-invalid, .form-group textarea.is-invalid { border-color: #A6402C; }
.form-error {
  display: block;
  min-height: 18px;
  font-size: 12.5px;
  color: #A6402C;
  margin-top: 6px;
}
.form-success {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brick);
}
#submitBtn.is-stamped { animation: stamp .4s var(--ease); }
@keyframes stamp {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(0.94) rotate(-1.5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--ink); color: rgba(243,236,222,0.7); padding: 64px 0 30px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(243,236,222,0.12);
}
.footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream-text);
  margin-bottom: 10px;
}
.footer__brand p { font-size: 0.9rem; max-width: 34ch; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.92rem; transition: color .3s ease; }
.footer__links a:hover { color: var(--brass-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(243,236,222,0.45);
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,16,13,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border: 1px solid rgba(243,236,222,0.15); }
.lightbox__close {
  position: absolute; top: 26px; right: 32px;
  background: none; border: none; color: var(--cream-text);
  font-size: 34px; line-height: 1; cursor: pointer;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .ticket-tag { justify-self: start; max-width: 340px; transform: rotate(1.5deg); }
  .ledger__inner { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__visual { order: -1; }
  .features__grid { grid-template-columns: 1fr; }
  .amenity-row, .amenity-row--reverse { grid-template-columns: 1fr; gap: 30px; }
  .amenity-row--reverse .amenity-row__content, .amenity-row--reverse .amenity-row__media { order: initial; }
  .mission__pillars { grid-template-columns: 1fr; gap: 30px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .container-wide { padding: 0 22px; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--ink); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 26px; padding: 40px;
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: var(--cream-text) !important; font-size: 14px; }
  .nav__cta { border-color: var(--brass); color: var(--brass-light) !important; }

  .hero__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .ledger__inner { grid-template-columns: 1fr; }
  .torn-frame--accent { display: none; }
  .postmark { display: none; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}