/* ───────── NAVIGATION ───────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(20,16,12,0.95) 0%, rgba(20,16,12,0) 100%);
  backdrop-filter: blur(4px);
}

.nav-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--brass-bright);
  letter-spacing: 0.02em;
}
.nav-mark::before {
  content: '✈';
  margin-right: 8px;
  color: var(--brass);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--paper-warm);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.nav-links a:hover { color: var(--brass-bright); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  border: 1px solid var(--brass);
  padding: 10px 22px;
  color: var(--brass-bright);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.nav-cta:hover {
  background: var(--brass);
  color: var(--ink);
}

/* ───────── HERO ───────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 48px;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,133,58,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--ink) 0%, var(--leather) 100%);
  overflow: hidden;
}

/* Smoke wisps */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,133,58,0.06) 0%, transparent 70%);
  filter: blur(40px);
  animation: drift 20s ease-in-out infinite;
}
.hero::before { top: -200px; right: -100px; }
.hero::after {
  bottom: -200px; left: -150px;
  animation-delay: -10s;
  background: radial-gradient(circle, rgba(90,31,26,0.15) 0%, transparent 70%);
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: rise 1s ease 0.2s forwards;
}
.hero-tag .line {
  width: 60px;
  height: 1px;
  background: var(--brass);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 1.2s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-bright);
  display: block;
}

.hero-sub {
  font-size: 21px;
  color: var(--paper-warm);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 44px;
  max-width: 480px;
  opacity: 0;
  animation: rise 1s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: rise 1s ease 0.9s forwards;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
  padding: 16px 36px;
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--brass-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,133,58,0.3);
}

.btn-ghost {
  color: var(--paper);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.btn-ghost:hover { color: var(--brass-bright); }

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero logo emblem */
.hero-emblem {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.emblem-frame {
  width: 520px;
  height: 520px;
  position: relative;
  opacity: 0;
  animation: emblemIn 1.4s ease 0.5s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes emblemIn {
  from { opacity: 0; transform: scale(0.92) rotate(-3deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* Glowing aura behind the badge */
.emblem-frame::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,133,58,0.18) 0%, rgba(184,133,58,0.05) 40%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Rotating decorative ring */
.emblem-rotor {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(184,133,58,0.3);
  z-index: 1;
  animation: rotate 80s linear infinite;
}
.emblem-rotor::before,
.emblem-rotor::after {
  content: '✦';
  position: absolute;
  color: var(--brass);
  font-size: 14px;
  line-height: 1;
}
.emblem-rotor::before { top: -8px; left: 50%; transform: translateX(-50%); }
.emblem-rotor::after { bottom: -8px; left: 50%; transform: translateX(-50%); }

@keyframes rotate {
  to { transform: rotate(360deg); }
}

/* The logo image itself */
.emblem-img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6))
          drop-shadow(0 0 20px rgba(184,133,58,0.15));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.emblem-frame:hover .emblem-img {
  transform: scale(1.03);
}

/* Established badge floating */
.est-badge {
  position: absolute;
  bottom: 32px;
  right: 48px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--brass);
  opacity: 0;
  animation: rise 1s ease 1.2s forwards;
}
.est-badge::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--brass);
  margin-right: 12px;
  vertical-align: middle;
}

/* ───────── ATMOSPHERE SECTION ───────── */
.atmosphere {
  padding: 140px 48px;
  background: var(--char);
  position: relative;
  border-top: 1px solid rgba(184,133,58,0.15);
  border-bottom: 1px solid rgba(184,133,58,0.15);
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-head .mono {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-head .mono::before,
.section-head .mono::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--brass-bright);
}

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

.feature-card {
  text-align: left;
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(42,29,20,0.6) 0%, rgba(31,24,19,0.3) 100%);
  border: 1px solid rgba(184,133,58,0.15);
  position: relative;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--brass);
  transition: width 0.6s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 40px;
  background: var(--brass);
  transition: height 0.6s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,133,58,0.4);
}
.feature-card:hover::before { width: 80px; }
.feature-card:hover::after { height: 80px; }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 80px;
  color: var(--brass);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 16px;
  line-height: 1.1;
}

.feature-card p {
  color: var(--paper-warm);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
}

/* ───────── SELECTIONS ───────── */
.selections {
  padding: 140px 48px;
  background: var(--ink);
  position: relative;
}

.selections-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.cigar-list {
  display: grid;
  gap: 0;
}

.cigar-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px 100px 80px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(184,133,58,0.12);
  align-items: baseline;
  transition: padding 0.4s ease;
  cursor: pointer;
}
.cigar-row:hover {
  padding-left: 20px;
}
.cigar-row:hover .cigar-name { color: var(--brass-bright); }

.cigar-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--brass);
  letter-spacing: 0.1em;
}

.cigar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--paper);
  transition: color 0.4s ease;
}
.cigar-name em {
  display: block;
  font-size: 14px;
  color: var(--smoke);
  font-style: italic;
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.cigar-origin {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper-warm);
  text-transform: uppercase;
}

.cigar-strength {
  display: flex;
  gap: 4px;
}
.cigar-strength span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184,133,58,0.2);
}
.cigar-strength span.active {
  background: var(--brass);
  box-shadow: 0 0 8px rgba(184,133,58,0.5);
}

.cigar-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--brass-bright);
  font-style: italic;
  text-align: right;
}

/* ───────── EXPERIENCE / SPLIT ───────── */
.experience {
  padding: 140px 48px;
  background: var(--leather);
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 100px,
      rgba(184,133,58,0.02) 100px,
      rgba(184,133,58,0.02) 101px
    );
  pointer-events: none;
}

.exp-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.exp-visual {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at top right, var(--oxblood) 0%, var(--leather) 60%),
    var(--char);
  position: relative;
  border: 1px solid rgba(184,133,58,0.2);
  overflow: hidden;
}

.exp-visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(184,133,58,0.3);
}

.compass {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1;
  animation: rotate 60s linear infinite;
}

.ember-glow {
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ember) 0%, transparent 70%);
  filter: blur(20px);
  animation: ember 3s ease-in-out infinite;
}
@keyframes ember {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.exp-visual-label {
  position: absolute;
  top: 48px;
  left: 48px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--brass);
  text-transform: uppercase;
}
.exp-visual-coords {
  position: absolute;
  bottom: 48px;
  left: 48px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--paper-warm);
  opacity: 0.6;
}

.exp-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 32px;
}
.exp-text h2 em {
  font-style: italic;
  color: var(--brass-bright);
}

.exp-text p {
  color: var(--paper-warm);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.exp-list {
  list-style: none;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(184,133,58,0.2);
}
.exp-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  color: var(--paper);
  font-size: 18px;
}
.exp-list li::before {
  content: '✦';
  color: var(--brass);
  font-size: 12px;
}

/* ───────── HOURS / VISIT ───────── */
.visit {
  padding: 140px 48px;
  background: var(--ink);
  position: relative;
}

.visit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.hours-block {
  border: 1px solid rgba(184,133,58,0.2);
  padding: 60px 48px;
  background: linear-gradient(180deg, rgba(42,29,20,0.4) 0%, transparent 100%);
}

.hours-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 42px;
  font-weight: 400;
  color: var(--brass-bright);
  margin-bottom: 8px;
}
.hours-block .sub {
  color: var(--smoke);
  font-size: 16px;
  margin-bottom: 36px;
  font-style: italic;
}

.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(184,133,58,0.15);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--paper);
}
.hours-list .time {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--brass);
}
.hours-list .closed { color: var(--oxblood); }

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-item .mono { margin-bottom: 10px; display: block; }
.contact-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--paper);
  font-weight: 400;
  line-height: 1.3;
}
.contact-item .value em {
  display: block;
  font-style: italic;
  color: var(--brass-bright);
  font-size: 22px;
  margin-top: 4px;
}

/* ───────── FOOTER ───────── */
footer {
  background: var(--char);
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(184,133,58,0.2);
  text-align: center;
}

.footer-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--brass-bright);
  margin-bottom: 16px;
}
.footer-mark::before {
  content: '✈';
  margin-right: 12px;
  color: var(--brass);
  font-style: normal;
}

.footer-tag {
  color: var(--smoke);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 32px;
}

.footer-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(237,224,200,0.3);
  text-transform: uppercase;
}


/* ───────── FLOOR PLANS / BLUEPRINTS ───────── */
.blueprints {
  padding: 140px 48px 160px;
  background: linear-gradient(180deg, var(--char) 0%, #0a1828 50%, var(--char) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184,133,58,0.15);
  border-bottom: 1px solid rgba(184,133,58,0.15);
}

/* Faint grid lines hint at blueprint vibe */
.blueprints::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,184,240,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,184,240,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.bp-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bp-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(184,133,58,0.2);
}
.bp-head .mono { margin-bottom: 16px; display: block; }
.bp-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--paper);
}
.bp-head h2 em {
  font-style: italic;
  color: var(--brass-bright);
  display: block;
}
.bp-head-meta {
  text-align: right;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--brass);
  text-transform: uppercase;
  line-height: 2;
}
.bp-head-meta span { display: block; }
.bp-head-meta .paper { color: var(--paper-warm); }

/* Floor tab switcher */
.bp-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(184,133,58,0.2);
}
.bp-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 24px 32px;
  cursor: pointer;
  text-align: left;
  color: var(--paper-warm);
  font-family: inherit;
  transition: all 0.4s ease;
  position: relative;
}
.bp-tab:hover { background: rgba(184,133,58,0.04); }
.bp-tab .num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--brass);
  margin-bottom: 8px;
  display: block;
}
.bp-tab .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
  transition: color 0.3s ease;
}
.bp-tab .name em {
  font-style: italic;
  color: var(--brass-bright);
}
.bp-tab .desc {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--smoke);
  margin-top: 6px;
  text-transform: uppercase;
}
.bp-tab.active {
  border-bottom-color: var(--brass);
  background: rgba(184,133,58,0.06);
}
.bp-tab.active .name { color: var(--brass-bright); }

/* Blueprint image container */
.bp-stage {
  position: relative;
  border: 1px solid rgba(122,184,240,0.25);
  background: #0a1828;
  padding: 32px;
  box-shadow:
    inset 0 0 80px rgba(0,0,0,0.4),
    0 30px 60px rgba(0,0,0,0.5);
}
.bp-stage::before,
.bp-stage::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--brass);
}
.bp-stage::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.bp-stage::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}

.bp-corner-tr, .bp-corner-bl {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--brass);
}
.bp-corner-tr {
  top: -1px; right: -1px;
  border-left: none; border-bottom: none;
}
.bp-corner-bl {
  bottom: -1px; left: -1px;
  border-right: none; border-top: none;
}

.bp-image-wrap {
  position: relative;
  overflow: hidden;
}
.bp-image {
  width: 100%;
  height: auto;
  display: none;
  transition: opacity 0.6s ease;
}
.bp-image.active { display: block; animation: bpFade 0.8s ease; }
@keyframes bpFade {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* Room callout grid */
.bp-rooms {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bp-rooms-set { display: none; }
.bp-rooms-set.active { display: contents; }

.bp-room {
  padding: 24px 20px;
  background: rgba(20,16,12,0.6);
  border: 1px solid rgba(184,133,58,0.15);
  border-left: 2px solid var(--brass);
  transition: all 0.4s ease;
}
.bp-room:hover {
  border-left-width: 4px;
  transform: translateX(2px);
}
.bp-room .code {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--brass);
  margin-bottom: 6px;
  display: block;
}
.bp-room h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 8px;
  line-height: 1.1;
}
.bp-room h4 em {
  font-style: italic;
  color: var(--brass-bright);
}
.bp-room p {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--paper-warm);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* First-class banner */
.bp-banner {
  margin-top: 60px;
  padding: 32px 40px;
  border: 1px solid var(--brass);
  background:
    linear-gradient(90deg, rgba(184,133,58,0.08) 0%, transparent 50%, rgba(184,133,58,0.08) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.bp-banner-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  color: var(--brass-bright);
  margin-bottom: 6px;
}
.bp-banner-text p {
  color: var(--paper-warm);
  font-size: 16px;
  font-weight: 300;
}
.bp-banner .btn-ghost { flex-shrink: 0; }


/* ───────── MERCH / SHOP ───────── */
.merch {
  padding: 140px 48px 160px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,133,58,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(90,31,26,0.08) 0%, transparent 50%),
    var(--ink);
  position: relative;
  border-top: 1px solid rgba(184,133,58,0.15);
}

.merch-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.merch-head {
  text-align: center;
  margin-bottom: 80px;
}
.merch-head .mono {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.merch-head .mono::before,
.merch-head .mono::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
}
.merch-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 16px;
}
.merch-head h2 em {
  font-style: italic;
  color: var(--brass-bright);
}
.merch-head p {
  color: var(--paper-warm);
  font-size: 19px;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
}

/* Category filter */
.merch-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 64px;
  border-top: 1px solid rgba(184,133,58,0.15);
  border-bottom: 1px solid rgba(184,133,58,0.15);
}
.merch-filter {
  background: transparent;
  border: none;
  padding: 18px 28px;
  color: var(--paper-warm);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.merch-filter:hover { color: var(--brass-bright); }
.merch-filter.active {
  color: var(--brass-bright);
  background: rgba(184,133,58,0.05);
}
.merch-filter.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 2px;
  background: var(--brass);
}

/* Product grid */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product {
  background: linear-gradient(180deg, rgba(42,29,20,0.4) 0%, rgba(20,16,12,0.2) 100%);
  border: 1px solid rgba(184,133,58,0.12);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}
.product:hover {
  border-color: rgba(184,133,58,0.4);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.product:hover .product-img-stage {
  background-position: center 45%;
}
.product:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-img-stage {
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, #2a1d14 0%, #14100c 80%);
  background-size: 120% 120%;
  background-position: center 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-position 0.8s ease;
}
.product-img-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.3;
  pointer-events: none;
}

.product-svg {
  width: 75%;
  height: 75%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--oxblood);
  color: var(--paper);
  padding: 5px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}
.product-tag.new { background: var(--brass); color: var(--ink); }
.product-tag.limited { background: transparent; border: 1px solid var(--brass); color: var(--brass-bright); }

.product-quick-add {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--brass);
  color: var(--ink);
  border: none;
  padding: 10px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
  z-index: 3;
}
.product-quick-add:hover { background: var(--brass-bright); }

.product-info {
  padding: 24px 24px 28px;
  position: relative;
}
.product-info::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.3;
}
.product-cat {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.15;
  margin-bottom: 4px;
}
.product-name em {
  font-style: italic;
  color: var(--brass-bright);
  display: block;
  font-size: 16px;
  margin-top: 2px;
}
.product-desc {
  font-size: 14px;
  color: var(--paper-warm);
  line-height: 1.5;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 16px;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px dashed rgba(184,133,58,0.2);
  padding-top: 14px;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--brass-bright);
}
.product-variants {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--smoke);
  text-transform: uppercase;
}

/* Members exclusive banner */
.merch-members {
  margin-top: 72px;
  padding: 48px 56px;
  border: 1px solid var(--brass);
  background:
    linear-gradient(135deg, rgba(184,133,58,0.1) 0%, transparent 60%),
    rgba(42,29,20,0.6);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.merch-members::before {
  content: '✦';
  position: absolute;
  top: 16px;
  right: 24px;
  color: var(--brass);
  font-size: 20px;
  opacity: 0.5;
}
.merch-members h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: var(--brass-bright);
  margin-bottom: 8px;
  line-height: 1.1;
}
.merch-members p {
  color: var(--paper-warm);
  font-size: 17px;
  font-weight: 300;
  max-width: 580px;
  line-height: 1.5;
}


/* ───────── INTERIOR SHOWCASE ───────── */
.showcase {
  padding: 120px 48px 140px;
  background: var(--char);
  position: relative;
  border-top: 1px solid rgba(184,133,58,0.15);
}

.showcase-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.showcase-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.showcase-head .mono { display: block; margin-bottom: 18px; }
.showcase-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--paper);
}
.showcase-head h2 em {
  font-style: italic;
  color: var(--brass-bright);
  display: block;
}
.showcase-head p {
  color: var(--paper-warm);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 480px;
}

/* The big render */
.showcase-hero {
  position: relative;
  border: 1px solid rgba(184,133,58,0.3);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.showcase-hero::before,
.showcase-hero::after,
.showcase-hero .corner-tr,
.showcase-hero .corner-bl {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--brass);
  z-index: 3;
}
.showcase-hero::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.showcase-hero::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
.showcase-hero .corner-tr {
  top: -1px; right: -1px;
  border-left: none; border-bottom: none;
}
.showcase-hero .corner-bl {
  bottom: -1px; left: -1px;
  border-right: none; border-top: none;
}
.showcase-hero img {
  width: 100%;
  display: block;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-hero:hover img { transform: scale(1.02); }

/* Caption overlay on hero */
.showcase-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 40px;
  background: linear-gradient(0deg, rgba(20,16,12,0.85) 0%, transparent 100%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.showcase-cap .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--brass-bright);
}
.showcase-cap .meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--paper-warm);
  text-transform: uppercase;
  text-align: right;
}

/* Hotspots over the hero render */
.hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 4;
  cursor: pointer;
}
.hotspot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brass);
  animation: hotspotPulse 2s ease-in-out infinite;
}
.hotspot::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--paper);
  z-index: 1;
}
.hotspot .tip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ink);
  border: 1px solid var(--brass);
  padding: 10px 16px;
  white-space: nowrap;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brass-bright);
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.hotspot:hover .tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@keyframes hotspotPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(184,133,58,0.6); }
  50% { transform: scale(1.1); opacity: 0.7; box-shadow: 0 0 0 12px rgba(184,133,58,0); }
}

/* ───────── DETAIL GALLERY GRID ───────── */
.gallery {
  padding: 140px 48px;
  background: var(--ink);
  position: relative;
}
.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: 64px;
  aspect-ratio: 16/10;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,133,58,0.15);
  background: var(--char);
  cursor: pointer;
  transition: border-color 0.4s ease;
}
.gallery-item:hover {
  border-color: rgba(184,133,58,0.5);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item.featured {
  grid-row: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,16,12,0.95) 0%, rgba(20,16,12,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
  transition: background 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  background: linear-gradient(0deg, rgba(20,16,12,0.95) 0%, rgba(20,16,12,0.5) 60%, rgba(184,133,58,0.1) 100%);
}
.gallery-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--brass);
  margin-bottom: 8px;
}
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 6px;
}
.gallery-title em {
  font-style: italic;
  color: var(--brass-bright);
}
.gallery-desc {
  font-size: 14px;
  color: var(--paper-warm);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.gallery-item:hover .gallery-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: 4px;
}

/* ───────── BLUEPRINT-TO-RENDER COMPARISON ───────── */
.blueprint-real {
  margin-top: 60px;
  padding: 40px;
  border: 1px solid rgba(184,133,58,0.25);
  background: linear-gradient(135deg, rgba(184,133,58,0.04) 0%, transparent 60%);
}
.blueprint-real-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.blueprint-real-head h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--brass-bright);
  font-weight: 400;
}
.blueprint-real-head .divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.blueprint-real img {
  width: 100%;
  display: block;
  border: 1px solid rgba(184,133,58,0.2);
}
.blueprint-real p {
  margin-top: 16px;
  color: var(--paper-warm);
  font-size: 15px;
  font-style: italic;
  text-align: center;
}


/* ───────── PARALLAX CINEMATIC ───────── */
.parallax {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--ink);
}

/* Fixed background image */
.parallax-bg {
  position: absolute;
  inset: -10% 0;
  background-image: url('assets/images/interior-hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  z-index: 1;
}

/* Fallback for browsers that don't support background-attachment: fixed (iOS Safari) */
@supports (-webkit-touch-callout: none) {
  .parallax-bg {
    background-attachment: scroll;
    transform: translateZ(0);
  }
}

/* Vignette gradients for legibility */
.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.75) 0%, rgba(20,16,12,0.35) 30%, rgba(20,16,12,0.35) 70%, rgba(20,16,12,0.85) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(20,16,12,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Subtle grain over the image */
.parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.12;
  z-index: 3;
  pointer-events: none;
}

/* Content layer */
.parallax-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Decorative brass corner brackets */
.parallax-content::before,
.parallax-content::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid var(--brass);
}
.parallax-content::before {
  top: 80px; left: 40px;
  border-right: none; border-bottom: none;
}
.parallax-content::after {
  bottom: 80px; right: 40px;
  border-left: none; border-top: none;
}

/* Top label */
.parallax-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.parallax-label::before,
.parallax-label::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--brass);
}

/* The big quote */
.parallax-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 1.1;
  color: var(--paper);
  letter-spacing: -0.005em;
  max-width: 14ch;
  margin-bottom: 36px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.parallax-quote .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.parallax-quote .word.accent {
  color: var(--brass-bright);
  font-style: italic;
}

/* Attribution */
.parallax-attr {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--paper-warm);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.2s;
}
.parallax-attr::before {
  content: '— ';
  color: var(--brass);
}

/* Footer detail line */
.parallax-foot {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  z-index: 5;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--paper-warm);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1.5s ease 0.4s;
}
.parallax-foot .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-block;
  margin: 0 14px;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--brass);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Active state - revealed when in view */
.parallax.in-view .parallax-label,
.parallax.in-view .parallax-attr,
.parallax.in-view .parallax-foot {
  opacity: 1;
  transform: translateY(0);
}
.parallax.in-view .parallax-quote .word {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger each word */
.parallax.in-view .parallax-quote .word:nth-child(1) { transition-delay: 0.3s; }
.parallax.in-view .parallax-quote .word:nth-child(2) { transition-delay: 0.4s; }
.parallax.in-view .parallax-quote .word:nth-child(3) { transition-delay: 0.5s; }
.parallax.in-view .parallax-quote .word:nth-child(4) { transition-delay: 0.6s; }
.parallax.in-view .parallax-quote .word:nth-child(5) { transition-delay: 0.7s; }
.parallax.in-view .parallax-quote .word:nth-child(6) { transition-delay: 0.8s; }
.parallax.in-view .parallax-quote .word:nth-child(7) { transition-delay: 0.9s; }
.parallax.in-view .parallax-quote .word:nth-child(8) { transition-delay: 1.0s; }
.parallax.in-view .parallax-quote .word:nth-child(9) { transition-delay: 1.1s; }
.parallax.in-view .parallax-quote .word:nth-child(10) { transition-delay: 1.2s; }
.parallax.in-view .parallax-quote .word:nth-child(11) { transition-delay: 1.3s; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .parallax { min-height: 600px; }
  .parallax-content::before, .parallax-content::after {
    width: 28px; height: 28px;
  }
  .parallax-content::before { top: 32px; left: 24px; }
  .parallax-content::after { bottom: 32px; right: 24px; }
  .parallax-foot { padding: 0 32px; bottom: 28px; flex-direction: column; gap: 8px; }
  .parallax-label::before, .parallax-label::after { width: 24px; }
}

/* ───────── WAITING LIST ───────── */
.waitlist {
  padding: 140px 48px;
  background:
    radial-gradient(ellipse at top, rgba(184,133,58,0.06) 0%, transparent 60%),
    var(--char);
  position: relative;
}

.waitlist-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.waitlist-pitch .mono {
  display: inline-block;
  margin-bottom: 18px;
}
.waitlist-pitch .mono::before,
.waitlist-pitch .mono::after {
  content: '✦';
  margin: 0 14px;
  color: var(--brass);
}
.waitlist-pitch h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 24px;
}
.waitlist-pitch h2 em {
  font-style: italic;
  color: var(--brass-bright);
}
.waitlist-pitch .lede {
  font-size: 18px;
  color: var(--paper-warm);
  margin-bottom: 28px;
  max-width: 44ch;
}
.waitlist-pitch .lede strong {
  font-weight: 500;
  color: var(--brass-bright);
  letter-spacing: 0.04em;
}

.waitlist-pledge {
  list-style: none;
  border-top: 1px dashed rgba(184,133,58,0.2);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.waitlist-pledge li {
  position: relative;
  padding-left: 22px;
  color: var(--smoke);
  font-size: 15px;
  font-style: italic;
}
.waitlist-pledge li::before {
  content: '✈';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--brass);
  font-style: normal;
  font-size: 12px;
}

/* The form itself — passport / boarding-pass framing */
.waitlist-form {
  position: relative;
  padding: 48px 44px 36px;
  border: 1px dashed rgba(184,133,58,0.45);
  background: linear-gradient(180deg, rgba(42,29,20,0.55) 0%, rgba(20,16,12,0.4) 100%);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--brass);
}
.form-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.form-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.form-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.form-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.form-stamp {
  align-self: flex-end;
  border: 1px solid rgba(184,133,58,0.5);
  padding: 6px 14px;
  margin-bottom: 4px;
  transform: rotate(2deg);
  background: rgba(20,16,12,0.4);
}
.form-stamp .mono {
  font-size: 9px;
  color: var(--brass);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field .mono {
  font-size: 10px;
}
.form-field input {
  appearance: none;
  background: rgba(20,16,12,0.6);
  border: none;
  border-bottom: 1px solid rgba(184,133,58,0.4);
  color: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  padding: 10px 4px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.form-field input::placeholder {
  color: var(--smoke);
  font-style: italic;
}
.form-field input:focus {
  border-bottom-color: var(--brass-bright);
  background: rgba(20,16,12,0.85);
}
.form-field input:invalid:not(:placeholder-shown) {
  border-bottom-color: var(--oxblood);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0 4px;
  cursor: pointer;
  color: var(--paper-warm);
  font-size: 16px;
}
.form-check input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--brass);
  background: transparent;
  margin-top: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}
.form-check input[type=checkbox]:checked {
  background: var(--brass);
}
.form-check input[type=checkbox]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--ink);
  font-weight: 700;
}
.form-check span em {
  font-style: italic;
  color: var(--brass-bright);
}

.form-submit {
  align-self: flex-start;
  margin-top: 8px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: wait;
}

.form-message {
  min-height: 1.4em;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--paper-warm);
  margin: 0;
}
.form-message.success {
  color: var(--brass-bright);
}
.form-message.error {
  color: var(--oxblood);
  font-style: normal;
  letter-spacing: 0.02em;
}

.form-fine {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(184,133,58,0.15);
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; gap: 60px; }
  .emblem-frame { width: 400px; height: 400px; }
  .atmosphere-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; gap: 60px; }
  .visit-inner { grid-template-columns: 1fr; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 56px; }
  .waitlist-pitch h2 { font-size: 44px; }
  .cigar-row {
    grid-template-columns: 40px 1fr auto;
    grid-template-areas:
      "num name price"
      "num origin price"
      "num strength price";
    gap: 8px 20px;
  }
  .cigar-num { grid-area: num; }
  .cigar-name { grid-area: name; font-size: 22px; }
  .cigar-origin { grid-area: origin; }
  .cigar-strength { grid-area: strength; margin-top: 8px; }
  .cigar-price { grid-area: price; }
  .nav-links { display: none; }
  .bp-head { grid-template-columns: 1fr; }
  .bp-head-meta { text-align: left; }
  .bp-tabs { flex-direction: column; }
  .bp-rooms { grid-template-columns: repeat(2, 1fr); }
  .bp-banner { flex-direction: column; align-items: flex-start; }
  .showcase-head { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
  }
  .gallery-item.featured { grid-row: span 1; }
  .gallery-item { aspect-ratio: 4/3; }
  .showcase-cap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .showcase-cap .meta { text-align: left; }
  
  .merch-grid { grid-template-columns: 1fr; }
  .merch-members { grid-template-columns: 1fr; padding: 32px; }
  
  
}


@media (max-width: 900px) {
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  nav { padding: 20px 24px; }
  .hero, .atmosphere, .selections, .experience, .visit, .waitlist { padding-left: 24px; padding-right: 24px; }
  .emblem-frame { width: 300px; height: 300px; }
  .hours-block { padding: 40px 28px; }
  .waitlist-form { padding: 36px 24px 28px; }
  .waitlist-pitch h2 { font-size: 38px; }
  .footer-meta { flex-direction: column; gap: 12px; }
}
