/* ══════════════════════════════════════════════
   Kyle & Luna — Wedding Website
   Design: Graphic minimalist · Cream + sage green
   Fonts: Space Grotesk (bold grotesque)
   Inspired by: the invite's bold poster aesthetic
══════════════════════════════════════════════ */

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

/* ── Custom Properties ─────────────────────── */
:root {
  --bg:          #f0e8d5;
  --ink:         #0f0e0c;
  --ink-soft:    #2a2520;
  --muted:       #7a746c;
  --sage:        #8b9e7b;
  --sage-dark:   #6b7d5d;
  --line:        rgba(15, 14, 12, 0.13);
  --line-strong: rgba(15, 14, 12, 0.26);
  --white:       #ffffff;
  --max:         680px;
  --header-h:    60px;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-ui:      'Space Grotesk', 'Segoe UI', sans-serif;
}

/* ── Base ───────────────────────────────────── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
  letter-spacing: 0em;
  min-height: 100dvh;
  overflow-x: hidden;
}

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

strong { font-weight: 700; }

/* ── Container ──────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ── Logo ───────────────────────────────────── */
.site-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.auth-logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   AUTH OVERLAY
══════════════════════════════════════════════ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}


.auth-modal {
  width: min(400px, 100%);
  text-align: center;
}

.auth-logo-area {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.auth-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 10vw, 68px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.auth-date {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 40px;
}

.auth-hint {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.auth-error {
  font-size: 13px;
  color: #a04040;
  margin-bottom: 10px;
  text-align: left;
}

/* ══════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════ */
.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-align: left;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8278' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
  cursor: pointer;
}

.required {
  color: var(--muted);
  font-weight: 400;
}

/* ── Buttons ────────────────────────────────── */
.btn-primary {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--white);
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: opacity 0.18s ease;
  border-radius: 0;
  margin-top: 8px;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  opacity: 0.82;
}

.btn-rsvp {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  padding: 8px 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: opacity 0.18s ease;
  border-radius: 0;
}

.btn-rsvp:hover,
.btn-rsvp:focus-visible {
  opacity: 0.82;
}

.btn-ghost {
  background: none;
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
  border-radius: 0;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

/* ══════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 240, 232, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-tag {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
}

/* ══════════════════════════════════════════════
   BANNER CAROUSEL
══════════════════════════════════════════════ */
.banner-carousel {
  overflow: hidden;
  height: clamp(220px, 45vw, 480px);
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.banner-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: scroll-banner 40s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.banner-img {
  height: 100%;
  width: 100vw;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
}

@keyframes scroll-banner {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--line);
}

.hero-editorial {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.hero-meta {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.meta-row {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.meta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  min-width: 72px;
  flex-shrink: 0;
}

.meta-value {
  font-size: 14px;
  color: var(--ink-soft);
}

.countdown-text {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ══════════════════════════════════════════════
   ACCORDION
══════════════════════════════════════════════ */
.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 16px;
  transition: color 0.18s ease;
}

.accordion-item > summary::-webkit-details-marker { display: none; }
.accordion-item > summary::marker { display: none; }

.accordion-item > summary::after {
  content: '+';
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 300;
  font-style: normal;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
}

.accordion-item[open] > summary::after {
  content: '−';
}

.accordion-item > summary:hover {
  color: var(--sage);
}

.accordion-item .content {
  padding-bottom: 40px;
}

/* Role sections hidden until unlocked */
.role-section          { display: none; }
.role-section.visible  { display: block; }

/* ── Section intro (standfirst) ── */
.section-intro {
  font-family: var(--font-display);
  font-size: clamp(15px, 2.5vw, 17px);
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 40px;
  line-height: 1.5;
}

.body-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 560px;
}

/* ── Timeline ── */
.timeline {
  display: grid;
  margin-bottom: 40px;
}

.timeline-row {
  display: flex;
  gap: 32px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}

.timeline-row:last-child {
  border-bottom: 1px solid var(--line);
}

.time {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  min-width: 72px;
  flex-shrink: 0;
}

.event {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ── Info grid ── */
.info-grid {
  display: grid;
  gap: 24px;
}

.info-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.info-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage-dark);
  margin-bottom: 8px;
}

.info-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── FAQ nested accordion ── */
.faq-list {
  display: grid;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item > summary {
  list-style: none;
  padding: 16px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color 0.18s ease;
}

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

.faq-item > summary::after {
  content: '+';
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-item[open] > summary::after {
  content: '−';
}

.faq-item > summary:hover {
  color: var(--muted);
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 0 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* ── RSVP ── */
.rsvp-wrap {
  max-width: 460px;
}

.rsvp-confirm {
  font-size: 13px;
  color: var(--sage-dark);
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.03em;
}

.rsvp-error {
  font-size: 13px;
  color: #a05a2c;
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.03em;
}

.rsvp-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  margin-top: 64px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-footer-change {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--line-strong);
  cursor: pointer;
  transition: color 0.18s ease;
}

.btn-footer-change:hover {
  color: var(--muted);
}

.footer-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.secret-trigger {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   BTS VIDEO MODAL
══════════════════════════════════════════════ */
.bts-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 12, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 150;
}

.bts-card {
  width: min(860px, 100%);
  background: #000;
  display: flex;
  flex-direction: column;
}

.bts-toolbar {
  display: flex;
  justify-content: flex-end;
  padding: 8px 10px;
}

.bts-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

.bts-close-btn:hover {
  opacity: 1;
}

.bts-video {
  display: block;
  width: 100%;
  max-height: calc(80vh - 46px);
  outline: none;
}

/* ══════════════════════════════════════════════
   SECRET MODAL
══════════════════════════════════════════════ */
.secret-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 20, 0.48);
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
  /* display controlled by JS */
}

.secret-card {
  width: min(460px, 100%);
  background: var(--white);
  padding: 36px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  transition: color 0.15s ease;
}

.modal-close:hover {
  color: var(--ink);
}

.secret-stage {
  text-align: center;
  padding: 52px 0;
  border: 1px dashed var(--line-strong);
}

.secret-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   ANIMATION
══════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fade-up 0.55s ease both;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* Layout */
  .container {
    width: calc(100% - 32px);
  }

  /* Fix iOS Safari auto-zoom on input focus (triggered when font-size < 16px) */
  input,
  select,
  textarea {
    font-size: 16px;
  }

  /* Header — tighter on small screens */
  .header-inner {
    width: calc(100% - 32px);
  }

  .role-tag {
    display: none;
  }

  .btn-rsvp,
  .btn-ghost {
    padding: 8px 10px;
    font-size: 9px;
  }

  /* Hero */
  .hero {
    padding: 24px 0 20px;
  }

  .hero-editorial {
    margin-bottom: 32px;
  }

  .meta-row {
    flex-direction: column;
    gap: 4px;
  }

  .meta-label {
    min-width: unset;
  }

  /* Accordion */
  .accordion-item > summary {
    padding: 20px 0;
    font-size: clamp(18px, 5vw, 24px);
  }

  /* Timeline */
  .timeline-row {
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
  }

  .time {
    min-width: unset;
  }

  /* Section spacing */
  .section-intro {
    margin-bottom: 28px;
  }

  .accordion-item .content {
    padding-bottom: 32px;
  }

  /* Info grid body text */
  .info-item p {
    font-size: 14px;
    line-height: 1.75;
  }

  /* Gifts CTA — full width on mobile */
  .gifts-cta {
    display: block;
    text-align: center;
    padding: 16px 20px;
  }

  /* Rooms table — ensure it scrolls rather than breaks layout */
  .rooms-table {
    font-size: 13px;
  }

  .rooms-table th,
  .rooms-table td {
    padding-right: 16px;
  }

  /* Wedding party */
  .party-role {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  /* Footer */
  .site-footer {
    margin-top: 48px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; }
  .banner-track { animation: none; }
}

/* ── Taxi & stay lists ── */
.taxi-list,
.stay-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.taxi-list li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.stay-list li {
  font-size: 14px;
  line-height: 1.6;
}

.stay-list a,
.body-text a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-strong);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.stay-list a:hover,
.body-text a:hover {
  color: var(--sage-dark);
  text-decoration-color: var(--sage-dark);
}

.info-item p + p {
  margin-top: 8px;
}

/* ── Gifts CTA ── */
.gifts-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.gifts-cta:hover {
  opacity: 0.82;
  color: var(--white);
  text-decoration: none;
}

/* ── Wedding party list ── */
.party-list {
  display: grid;
}

.party-item {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  column-gap: 20px;
}

.party-item:last-child {
  border-bottom: 1px solid var(--line);
}

.party-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  grid-column: 1;
  grid-row: 1;
}

.party-role {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-dark);
  white-space: nowrap;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.party-epithet {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 3px;
  grid-column: 1;
  grid-row: 2;
}

@media (max-width: 600px) {
  .party-role {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
}

/* ── Section photos ────────────────────────── */
.section-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  margin-top: 32px;
}

/* ── Bridesmaids layout ─────────────────────── */
.bridesmaids-layout {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.bridesmaids-photo-col {
  width: 200px;
  flex-shrink: 0;
  background-image: url(bridesmaids.png);
  background-repeat: repeat-y;
  background-size: 200px auto;
  background-position: top center;
}

/* ── Groomsmen layout ───────────────────────── */
.groomsmen-layout {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.groomsmen-photo-col {
  width: 200px;
  flex-shrink: 0;
  background-image: url(grooms.png);
  background-repeat: repeat-y;
  background-size: 200px auto;
  background-position: top center;
}

/* ── Bullet list ─────────────────────────── */
.bullet-list {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.bullet-list li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .section-photo {
    max-height: 300px;
  }

  .bridesmaids-layout {
    flex-direction: column;
    gap: 0;
  }

  .bridesmaids-photo-col {
    width: 100%;
    height: 500px;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    order: 2;
    margin-top: 24px;
  }

  .bridesmaids-layout .info-grid {
    order: 1;
  }

  .groomsmen-layout {
    flex-direction: column;
    gap: 0;
  }

  .groomsmen-photo-col {
    width: 100%;
    height: 500px;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    order: 2;
    margin-top: 24px;
  }

  .groomsmen-layout .info-grid {
    order: 1;
  }

  .rooms-layout {
    flex-direction: column;
  }

  .rooms-photo {
    width: 100%;
    max-height: 260px;
    align-self: auto;
  }
}

/* ── Scroll bottle ──────────────────────────── */
.scroll-bottle {
  position: fixed;
  bottom: 20px;
  right: 40px;
  width: 36px;
  height: auto;
  pointer-events: none;
  z-index: 5;
  transform-origin: center center;
  will-change: transform;
}

@media (max-width: 600px) {
  .scroll-bottle { display: none; }
}

/* ── How We Met photo ───────────────────────── */
.how-we-met-photo {
  margin-top: 32px;
}

.how-we-met-img {
  width: 100%;
  height: auto;
  display: block;
}

.how-we-met-photo figcaption {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 10px;
}

/* ── Rooms table ────────────────────────────── */
.rooms-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 24px;
}

.rooms-photo {
  flex: 1;
  min-width: 0;
  border-radius: 6px;
  object-fit: cover;
  align-self: stretch;
}

.rooms-table-wrap {
  overflow-x: auto;
  display: flex;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}

.rooms-table {
  width: auto;
  border-collapse: collapse;
  font-size: 14px;
}

.rooms-table th {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-align: left;
  padding: 0 24px 12px 0;
  border-bottom: 1px solid var(--line-strong);
}

.rooms-table th:last-child { padding-right: 0; }

.rooms-table td {
  padding: 12px 24px 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  color: var(--ink-soft);
  line-height: 1.4;
}

.rooms-table td:last-child { padding-right: 0; }

/* Room number column */
.rooms-table td:first-child,
.rooms-table th:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  width: 120px;
  white-space: nowrap;
}

/* Guests column */
.rooms-table td:nth-child(2),
.rooms-table th:nth-child(2) {
  text-align: center;
}

.rooms-dog-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
