/* ============================================================
   SMOKE & SETTLE — shared stylesheet
   Color palette is preserved exactly from the original concept.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --espresso:     #1A0F08;   /* darkest — the bottom of the glass */
  --leather:      #2C1A0E;   /* deep leather brown — body bg */
  --tobacco:      #3D2410;   /* mid brown — card surfaces */
  --cedar:        #5C3620;   /* lighter brown — hover states */
  --amber:        #C8861A;   /* primary accent — aged scotch in light */
  --amber-bright: #E8A832;   /* hover amber — a flame caught it */
  --amber-dim:    #8A5C12;   /* muted amber — secondary text, rules */
  --smoke:        #8A7060;   /* warm grey — body text */
  --ash:          #BEA898;   /* lighter warm grey — headings */
  --cream:        #F2E8DC;   /* parchment — primary text on dark */
  --amber-lit:    #E6A72C;   /* brighter gold — brighter gold accent */
  --rule:         rgba(200, 134, 26, 0.18);
  --card-bg:      rgba(44, 26, 14, 0.85);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--leather);
  background-image:
    linear-gradient(
      180deg,
      #0E0804 0%,
      #1A0F08 8%,
      #2C1A0E 25%,
      #241408 55%,
      #1A0C06 80%,
      #0E0804 100%
    );
  background-attachment: fixed;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── SMOKE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(200,134,26,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(200,134,26,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(14, 8, 4, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--amber); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── SMOKE VIDEO ── */
.smoke-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}

.hero > *:not(.smoke-video) {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 12px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ash);
  margin-bottom: 52px;
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.65);
}

/* ── PAGE HERO — compact header for interior pages ── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 160px 48px 64px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.page-hero .hero-eyebrow { margin-bottom: 20px; }

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 20px;
}

.page-hero-title em { font-style: italic; color: var(--amber); }

.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--smoke);
  max-width: 620px;
  margin: 0 auto;
}

/* ── AMBER RULE — the signature element ── */
.ember-rule {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--amber-dim) 20%,
    var(--amber-bright) 50%,
    var(--amber-dim) 80%,
    transparent 100%
  );
  margin: 0 auto 52px;
  position: relative;
}

.ember-rule::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 30%;
  right: 30%;
  height: 7px;
  background: radial-gradient(ellipse at center, rgba(232,168,50,0.35) 0%, transparent 70%);
}

.ember-rule.center { margin-top: 40px; }

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 36px;
  background: linear-gradient(155deg, #FBF4E9 0%, #ECDBC3 58%, #DEC9AC 100%);
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

/* Light sweeps across on hover — the "warm sheen" */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -125%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(155deg, #FFFBF2 0%, #F1E3CD 60%, #E6D3B7 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 24px rgba(200, 134, 26, 0.28);
}

.btn-primary:hover::before {
  left: 140%;
}

.btn-ghost {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  color: var(--ash);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--amber-dim);
  color: var(--amber);
}

/* ── SECTION WRAPPER ── */
section {
  position: relative;
  z-index: 1;
  padding: 96px 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 48px;
  max-width: 560px;
}

.section-title em {
  font-style: italic;
  color: var(--amber);
}

/* ── FULL-WIDTH RULE ── */
.full-rule {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--rule) 15%,
    rgba(200,134,26,0.25) 50%,
    var(--rule) 85%,
    transparent 100%
  );
  margin: 0;
}

/* ── CITY GRID ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.city-card {
  background: var(--card-bg);
  border: 1px solid rgba(200,134,26,0.08);
  padding: 36px 32px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: transparent;
  transition: background 0.3s;
}

.city-card:hover {
  border-color: rgba(200,134,26,0.3);
  background: rgba(61,36,16,0.7);
}

.city-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
}

.city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.city-state {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 20px;
}

.city-meta {
  font-size: 0.8rem;
  color: var(--smoke);
  line-height: 1.6;
}

/* ── FEATURED LOUNGE STRIP ── */
.featured-strip {
  background: rgba(14,8,4,0.6);
  border: 1px solid var(--rule);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.featured-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.featured-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
}

.featured-location {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 24px;
}

.featured-desc {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 32px;
}

.featured-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dim);
  border: 1px solid rgba(200,134,26,0.2);
  padding: 5px 12px;
}

.featured-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1A0F08 0%, #3D2410 60%, #2C1A0E 100%);
  border: 1px solid rgba(200,134,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,134,26,0.25);
}

/* Real photo dropped into a featured image slot */
.featured-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #1A0F08;
  border: 1px solid rgba(200,134,26,0.1);
  display: block;
}

/* Wide hero photo on an individual lounge listing */
.lounge-hero-photo {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  background: #1A0F08;
  border: 1px solid rgba(200,134,26,0.1);
  display: block;
  margin-bottom: 40px;
}

/* ── STANDARDS ── */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.standard-item {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.standard-glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(200,134,26,0.2);
  margin-bottom: 12px;
  line-height: 1;
}

.standard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ash);
  margin-bottom: 10px;
}

.standard-body {
  font-size: 0.82rem;
  color: var(--smoke);
  line-height: 1.75;
}

/* ── NEWSLETTER ── */
.newsletter-wrap {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 12px;
}

.newsletter-sub {
  font-size: 0.82rem;
  color: var(--smoke);
  margin-bottom: 36px;
  line-height: 1.7;
}

.newsletter-row {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(14,8,4,0.8);
  border: 1px solid rgba(200,134,26,0.2);
  border-right: none;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
}

.newsletter-input::placeholder { color: var(--smoke); }
.newsletter-input:focus { border-color: var(--amber-dim); }

.newsletter-btn {
  padding: 14px 28px;
  background: var(--amber);
  color: var(--espresso);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover { background: var(--amber-bright); }

.newsletter-note {
  font-size: 0.68rem;
  color: var(--amber-dim);
  margin-top: 14px;
  letter-spacing: 0.1em;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  position: relative;
  z-index: 1;
  display: block;
  height: auto;
  background: none;
  border: none;
  backdrop-filter: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 48px 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}

.breadcrumb a { color: var(--amber-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { margin: 0 10px; color: var(--amber-dim); opacity: 0.6; }

/* ── LOUNGE LISTING GRID (Editor's Picks / City results) ── */
.lounge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

.lounge-card {
  background: var(--card-bg);
  border: 1px solid rgba(200,134,26,0.08);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}

.lounge-card:hover {
  border-color: rgba(200,134,26,0.3);
  background: rgba(61,36,16,0.7);
}

.lounge-card-image {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #1A0F08 0%, #3D2410 60%, #2C1A0E 100%);
  border-bottom: 1px solid rgba(200,134,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lounge-card-body { padding: 28px 28px 32px; }

.lounge-card-rank {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.lounge-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 6px;
}

.lounge-card-location {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 16px;
}

.lounge-card-desc {
  font-size: 0.82rem;
  color: var(--smoke);
  line-height: 1.7;
  margin-bottom: 18px;
}

.lounge-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── ESSENTIALS / THE KIT ── */
.kit-note {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--amber-dim);
  letter-spacing: 0.04em;
}

.kit-note a { color: var(--amber); text-decoration: none; }
.kit-note a:hover { color: var(--amber-bright); }

.kit-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.lounge-card:hover .kit-cta { color: var(--amber-bright); }

/* ── LOUNGE DETAIL PAGE ── */
.lounge-detail {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 48px 96px;
}

.lounge-hero-image {
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, #1A0F08 0%, #3D2410 60%, #2C1A0E 100%);
  border: 1px solid rgba(200,134,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.lounge-detail-header { margin-bottom: 48px; }

.lounge-detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 12px;
}

.lounge-detail-location {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 24px;
}

.lounge-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 64px;
  align-items: start;
}

.lounge-body p {
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.9;
  margin-bottom: 22px;
}

.lounge-body .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 32px;
}

.lounge-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin: 40px 0 16px;
}

/* Sidebar detail card */
.lounge-aside {
  background: rgba(14,8,4,0.6);
  border: 1px solid var(--rule);
  padding: 36px 32px;
}

.aside-block { margin-bottom: 28px; }
.aside-block:last-child { margin-bottom: 0; }

.aside-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.aside-value {
  font-size: 0.9rem;
  color: var(--cream);
  line-height: 1.6;
}

.aside-value a { color: var(--amber-dim); text-decoration: none; }
.aside-value a:hover { color: var(--amber); }

.aside-divider {
  height: 1px;
  background: var(--rule);
  margin: 28px 0;
}

/* ── ABOUT / PROSE ── */
.prose {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 48px 96px;
}

.prose p {
  font-size: 1rem;
  color: var(--smoke);
  line-height: 1.9;
  margin-bottom: 24px;
}

.prose .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.55;
  margin-bottom: 36px;
}

.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--cream);
  margin: 48px 0 18px;
}

.prose h2 em { font-style: italic; color: var(--amber); }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--rule);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: rgba(10,6,3,0.5);
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

.footer-copy {
  font-size: 0.68rem;
  color: var(--amber-dim);
  letter-spacing: 0.08em;
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lounge-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(14, 8, 4, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    padding: 8px 24px 20px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(200,134,26,0.08);
  }

  section { padding: 72px 24px; }
  .page-hero { padding: 130px 24px 48px; }
  .breadcrumb { padding: 100px 24px 0; }
  .lounge-detail { padding: 24px 24px 72px; }
  .prose { padding: 24px 24px 72px; }
  .standards-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-strip { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .newsletter-row { flex-direction: column; gap: 12px; }
  .newsletter-input { border-right: 1px solid rgba(200,134,26,0.2); }
  footer { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
}
