/* ═══════════════════════════════════════════════
   PORCHLANDIA — screen.css
   The porch has a color. It's amber.
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --amber:        #EF9F27;
  --amber-dim:    #BA7517;
  --amber-deep:   #854F0B;
  --amber-glow:   rgba(239, 159, 39, 0.15);
  --dark:         #1a1208;
  --dark-mid:     #2d1f0e;
  --smoke:        #3d2e1a;
  --smoke-light:  #6b5540;
  --warm:         #f7f0e6;
  --warm-mid:     #ede0cc;
  --warm-dim:     #d4c4a8;
  --cream:        #faf6ef;
  --serif:        'Lora', Georgia, serif;
  --sans:         'Mulish', system-ui, sans-serif;
  --transition:   0.2s ease;
  --max-width:    1100px;
  --text-width:   720px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { color: var(--amber-dim); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }
ul { list-style: none; }

/* ── BASE ── */
body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
  color: var(--smoke);
  background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark);
}

p { margin-bottom: 1.25rem; }

::selection { background: rgba(239, 159, 39, 0.25); }

/* ── SITE WRAPPER ── */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main { flex: 1; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 240, 230, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(186, 117, 23, 0.12);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 2rem;
}

.site-logo {
  height: 52px;
  width: auto;
}

.site-title-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--dark);
}

.site-nav {
  display: flex;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav-link {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--smoke);
  transition: color var(--transition);
}

.site-nav-link:hover,
.current .site-nav-link {
  color: var(--amber-dim);
}

.site-header-actions { display: flex; align-items: center; gap: 1rem; }

.site-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.site-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--smoke);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── BUTTONS ── */
.porch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.porch-btn-subscribe {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--dark);
}

.porch-btn-subscribe:hover {
  background: var(--amber-dim);
  border-color: var(--amber-dim);
  color: var(--dark);
}

.porch-btn-hero {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--dark);
  font-size: 0.9375rem;
  padding: 0.75rem 2rem;
}

.porch-btn-hero:hover {
  background: var(--amber-dim);
  border-color: var(--amber-dim);
  color: var(--dark);
}

.porch-btn-ghost {
  background: transparent;
  border-color: rgba(247, 240, 230, 0.5);
  color: var(--warm);
  font-size: 0.9375rem;
  padding: 0.75rem 2rem;
}

.porch-btn-ghost:hover {
  border-color: var(--warm);
  color: var(--warm);
}

.porch-btn-account {
  background: transparent;
  border-color: var(--amber-dim);
  color: var(--amber-dim);
}

.porch-btn-account:hover {
  background: var(--amber-glow);
}

/* ── HERO ── */
.porch-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.porch-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.7;
  filter: saturate(1) brightness(0.85);
  z-index: 0;
}

.porch-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 8, 0.3) 0%,
    rgba(26, 18, 8, 0.55) 50%,
    rgba(26, 18, 8, 0.8) 100%
  );
}

.porch-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-logo {
  max-width: 520px;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 500;
  color: var(--warm);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-description {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(247, 240, 230, 0.85);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-lantern-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(239, 159, 39, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── INTRO ── */
.porch-intro {
  background: var(--dark);
  padding: 4rem 2rem;
}

.porch-intro-inner {
  max-width: var(--text-width);
  margin: 0 auto;
  text-align: center;
}

.porch-intro-text {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-style: italic;
  line-height: 1.8;
  color: rgba(247, 240, 230, 0.8);
  margin-bottom: 0;
}

.porch-intro-text em {
  color: var(--amber);
  font-style: normal;
}

/* ── POST GRID ── */
.porch-posts {
  padding: 5rem 2rem;
}

.porch-posts-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--warm-mid);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.post-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* ── POST CARD ── */
.post-card {
  background: white;
  border: 1px solid var(--warm-mid);
  border-radius: 3px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(61, 46, 26, 0.1);
}

.post-card-image-link { display: block; overflow: hidden; aspect-ratio: 16/9; }

.post-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-image { transform: scale(1.03); }

.post-card-featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.post-card-content { padding: 1.5rem; }

.post-card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 0.5rem;
}

.post-card-title-link { color: inherit; }

.post-card-title {
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color var(--transition);
}

.post-card:hover .post-card-title { color: var(--amber-deep); }

.post-card-excerpt {
  font-size: 0.9375rem;
  color: var(--smoke-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--warm-dim);
  border-top: 1px solid var(--warm-mid);
  padding-top: 0.875rem;
}

/* ── POST ARTICLE ── */
.post-article { max-width: 100%; }

.post-header {
  background: var(--dark);
  padding: 6rem 2rem 4rem;
}

.post-header-inner {
  max-width: var(--text-width);
  margin: 0 auto;
  text-align: center;
}

.post-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.post-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-style: italic;
  color: var(--warm);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.post-excerpt {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: rgba(247, 240, 230, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.post-meta {
  font-size: 0.8125rem;
  color: rgba(247, 240, 230, 0.45);
  letter-spacing: 0.05em;
}

.post-meta-divider { margin: 0 0.5rem; }

.post-feature-image {
  max-height: 600px;
  overflow: hidden;
}

.post-feature-image img {
  width: 100%;
  object-fit: cover;
}

.post-content {
  max-width: var(--text-width);
  margin: 4rem auto;
  padding: 0 2rem;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--smoke);
}

.post-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--smoke-light);
}

.post-content img { border-radius: 3px; margin: 2rem auto; }
.post-content a { border-bottom: 1px solid var(--amber-glow); }
.post-content a:hover { border-color: var(--amber); }

.post-footer { border-top: 1px solid var(--warm-mid); padding: 2rem; }
.post-footer-inner {
  max-width: var(--text-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-share { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.post-share-label { color: var(--warm-dim); }
.post-share-link { font-weight: 500; }

.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.post-tag-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke-light);
  background: var(--warm-mid);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ── POST MORE ── */
.post-more {
  background: var(--warm);
  padding: 5rem 2rem;
  border-top: 1px solid var(--warm-mid);
}

.post-more-inner { max-width: var(--max-width); margin: 0 auto; }
.post-more-heading { margin-bottom: 2.5rem; }

/* ── SUBSCRIBE SECTION ── */
.porch-subscribe {
  background: var(--dark-mid);
  padding: 6rem 2rem;
  text-align: center;
}

.porch-subscribe-inner { max-width: 560px; margin: 0 auto; }

.subscribe-lantern {
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.subscribe-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--warm);
  margin-bottom: 1rem;
}

.subscribe-body {
  font-size: 1rem;
  color: rgba(247, 240, 230, 0.65);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-input {
  flex: 1;
  min-width: 240px;
  padding: 0.625rem 1rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  background: rgba(247, 240, 230, 0.1);
  border: 1px solid rgba(247, 240, 230, 0.2);
  border-radius: 2px;
  color: var(--warm);
  outline: none;
  transition: border-color var(--transition);
}

.subscribe-input::placeholder { color: rgba(247, 240, 230, 0.35); }
.subscribe-input:focus { border-color: var(--amber); }

.subscribe-form .porch-btn .success-text { display: none; }
.subscribe-form.success .porch-btn .default-text { display: none; }
.subscribe-form.success .porch-btn .success-text { display: block; }

/* ── PAGE ── */
.page-header {
  background: var(--dark);
  padding: 5rem 2rem 3.5rem;
  text-align: center;
}

.page-header-inner { max-width: var(--text-width); margin: 0 auto; }

.page-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-style: italic;
  color: var(--warm);
}

.page-excerpt {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(247, 240, 230, 0.65);
  margin-top: 1rem;
  font-size: 1.125rem;
}

.page-content {
  max-width: var(--text-width);
  margin: 4rem auto;
  padding: 0 2rem;
  font-size: 1.0625rem;
  line-height: 1.85;
}

.page-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.page-content h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.page-content p { margin-bottom: 1.5rem; }
.page-content blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--smoke-light);
}

.page-feature-image { height: 500px; overflow: hidden; }
.page-feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

/* About page — mug toast sits higher in the frame */
.page-slug-about .page-feature-image img { object-position: center 25%; }

/* ── ARCHIVE ── */
.archive-header {
  background: var(--dark);
  padding: 5rem 2rem 3.5rem;
  text-align: center;
}

.archive-header-inner { max-width: var(--text-width); margin: 0 auto; }
.archive-title { font-size: 2.5rem; font-style: italic; color: var(--warm); }
.archive-description { color: rgba(247, 240, 230, 0.65); margin-top: 0.75rem; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
  font-size: 0.875rem;
}

.pagination a {
  font-weight: 600;
  color: var(--amber-dim);
  letter-spacing: 0.05em;
}

.pagination .page-number { color: var(--warm-dim); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(186, 117, 23, 0.15);
  padding: 4rem 2rem 2rem;
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo { height: 64px; width: auto; margin-bottom: 0.75rem; }

.footer-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--warm);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(247, 240, 230, 0.45);
  margin-bottom: 2.5rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: rgba(247, 240, 230, 0.45);
  transition: color var(--transition);
}

.footer-nav-link:hover { color: var(--amber); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 240, 230, 0.06);
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(247, 240, 230, 0.25);
  margin-bottom: 0.5rem;
}

.footer-inscription {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(239, 159, 39, 0.35);
  letter-spacing: 0.02em;
}

/* ── ACCENT COLOR (Ghost Brand) ── */
:root { --ghost-accent-color: #EF9F27; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav-toggle { display: flex; }
  .site-nav.open { display: flex; }

  .site-header-inner { padding: 0.75rem 1.25rem; }

  .site-nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(247, 240, 230, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--warm-mid);
  }

  .porch-hero { min-height: 80vh; }
  .hero-logo { height: 120px; }
  .hero-actions { flex-direction: column; }
  .porch-btn-hero, .porch-btn-ghost { width: 100%; max-width: 280px; }

  .post-grid { grid-template-columns: 1fr; }
  .porch-posts { padding: 3rem 1.25rem; }
  .post-content { padding: 0 1.25rem; margin: 2.5rem auto; }
  .post-header { padding: 4rem 1.25rem 2.5rem; }

  .subscribe-form { flex-direction: column; align-items: center; }
  .subscribe-input { min-width: unset; width: 100%; max-width: 360px; }

  .footer-nav { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .site-header-actions .porch-btn-subscribe { display: none; }
}

/* ── GHOST CARD WIDTHS (required) ── */
.kg-width-wide {
  margin-left: calc(50% - min(45vw, 680px));
  margin-right: calc(50% - min(45vw, 680px));
  width: min(90vw, 1360px);
  max-width: unset;
}

.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: unset;
}

.kg-image { max-width: 100%; }
.kg-image-card { margin: 2rem 0; }
.kg-image-card figcaption {
  font-size: 0.8125rem;
  color: var(--smoke-light);
  text-align: center;
  margin-top: 0.5rem;
}

.kg-gallery-container { display: flex; flex-direction: column; gap: 0.5rem; }
.kg-gallery-row { display: flex; gap: 0.5rem; }
.kg-gallery-image { flex: 1; object-fit: cover; }

.kg-bookmark-card {
  border: 1px solid var(--warm-mid);
  border-radius: 3px;
  overflow: hidden;
  margin: 2rem 0;
}

.kg-video-card { margin: 2rem 0; }
.kg-video-card video { width: 100%; }

/* ── PAYWALL ── */
.post-paywall {
  border: 1px solid var(--warm-mid);
  border-radius: 3px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  background: var(--warm);
}

.paywall-heading {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.paywall-body {
  color: var(--smoke-light);
  margin-bottom: 1.5rem;
}


/* ── SECTION NAVIGATION (future rooms) ── */
.porch-rooms {
  background: var(--warm);
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--warm-mid);
}

.porch-rooms-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.room-card {
  background: white;
  border: 1px solid var(--warm-mid);
  border-radius: 3px;
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.room-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,46,26,0.08);
  border-color: var(--amber-dim);
}

.room-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--amber);
}

.room-card-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.room-card-desc {
  font-size: 0.875rem;
  color: var(--smoke-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.room-card-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  background: rgba(239,159,39,0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-top: 0.75rem;
}

.room-card-badge.members { color: var(--amber-deep); background: rgba(239,159,39,0.12); }
.room-card-badge.coming-soon { color: var(--smoke-light); background: var(--warm-mid); }

/* ── HERO BUTTON VISIBILITY FIX ── */
.porch-btn-hero {
  background: var(--amber) !important;
  border-color: var(--amber) !important;
  color: var(--dark) !important;
}

.porch-btn-hero:hover {
  background: var(--amber-dim) !important;
  border-color: var(--amber-dim) !important;
  color: var(--dark) !important;
}

/* ── ACCENT COLOR OVERRIDE (kills Ghost pink) ── */
.gh-portal-btn-main,
.gh-portal-btn,
[data-ghost] button[type="submit"] {
  background: var(--amber) !important;
  border-color: var(--amber) !important;
  color: var(--dark) !important;
}


/* ── HERO BUTTON FINAL FIX ── */
.porch-hero-content .porch-btn-hero {
  background-color: var(--amber) !important;
  border-color: var(--amber) !important;
  color: var(--dark) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.porch-hero-content .porch-btn-ghost {
  background-color: transparent !important;
  border-color: rgba(247, 240, 230, 0.6) !important;
  color: var(--warm) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.porch-hero-content .porch-btn-ghost:hover {
  border-color: var(--warm) !important;
  color: var(--warm) !important;
}

/* ── SECONDARY NAV ── */
.site-nav-secondary-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.site-nav-secondary-link {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--smoke-light);
  transition: color var(--transition);
}

.site-nav-secondary-link:hover {
  color: var(--amber);
}
/* ── ROOM CARDS WITH IMAGES ── */
/* Add these to the bottom of screen.css */

.room-card-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  background: var(--dark);
}

.room-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
}

.room-card-image:hover .room-card-bg {
  opacity: 0.7;
  transform: scale(1.03);
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 8, 0.1) 0%,
    rgba(26, 18, 8, 0.75) 70%,
    rgba(26, 18, 8, 0.92) 100%
  );
  z-index: 1;
}

.room-card-body {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
}

.room-card-image .room-card-title {
  color: var(--warm);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.room-card-image .room-card-desc {
  color: rgba(247, 240, 230, 0.75);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.room-card-image .room-card-badge {
  color: var(--amber);
  background: rgba(239, 159, 39, 0.15);
}

.room-card-image .room-card-badge.members {
  color: var(--amber);
  background: rgba(239, 159, 39, 0.15);
}



.porch-audio-toggle:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(26, 18, 8, 0.72);
}

.porch-audio-toggle.muted {
  border-color: rgba(239, 159, 39, 0.5);
  color: var(--amber);
}

.porch-audio-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.porch-audio-toggle-label {
  white-space: nowrap;
}

/* ── PORCH AUDIO TOGGLE — HEADER VERSION ── */
.porch-audio-toggle {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 38px;
  padding: 0 0.85rem;
  border: 1px solid rgba(186, 117, 23, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--amber-dim);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: none;
}

.porch-audio-toggle:hover {
  border-color: var(--amber-dim);
  background: rgba(239, 159, 39, 0.08);
  color: var(--amber-dim);
}

.porch-audio-toggle.muted {
  color: var(--smoke-light);
  border-color: rgba(186, 117, 23, 0.35);
  background: rgba(26, 18, 8, 0.08);
  opacity: 1;
}

.porch-audio-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.porch-audio-toggle-label {
  white-space: nowrap;
}

/* show only on homepage */
body:not(.home-template) .porch-audio-toggle,
html:not(.home-template) .porch-audio-toggle {
  display: none;
}

@media (max-width: 768px) {
  .porch-audio-toggle {
    height: 34px;
    padding: 0 0.7rem;
    font-size: 0.7rem;
  }

  .porch-audio-toggle-label {
    display: none;
  }
}
