:root {
  --roomx-orange: #ff5722;
  --roomx-orange-deep: #e74a18;
  --roomx-orange-soft: #fff0e9;
  --roomx-ink: #1f2329;
  --roomx-muted: #5f6773;
  --roomx-border: rgba(31, 35, 41, 0.11);
  --roomx-shadow: 0 20px 45px rgba(31, 35, 41, 0.08);
  --roomx-surface: #ffffff;
  --roomx-background: #f3f4f6;
  --roomx-surface-strong: #ffffff;
  --roomx-radius-xl: 32px;
  --roomx-radius-lg: 24px;
  --roomx-radius-md: 18px;
  --pico-font-family: 'Roboto', sans-serif;
  --pico-color: var(--roomx-ink);
  --pico-background-color: var(--roomx-background);
  --pico-muted-color: var(--roomx-muted);
  --pico-primary: var(--roomx-orange);
  --pico-primary-hover: var(--roomx-orange-deep);
  --pico-primary-focus: rgba(255, 87, 34, 0.22);
  --pico-primary-background: var(--roomx-orange);
  --pico-primary-underline: rgba(255, 87, 34, 0.3);
  --pico-form-element-background-color: #fcfcfd;
  --pico-form-element-border-color: rgba(31, 35, 41, 0.12);
  --pico-form-element-color: var(--roomx-ink);
  --pico-form-element-placeholder-color: #9ba3af;
  --pico-form-element-active-background-color: #ffffff;
  --pico-form-element-active-border-color: rgba(255, 87, 34, 0.6);
  --pico-form-element-focus-color: rgba(255, 87, 34, 0.22);
  --pico-card-background-color: var(--roomx-surface);
  --pico-border-radius: var(--roomx-radius-md);
}

:root[data-theme='dark'] {
  --roomx-orange-soft: rgba(255, 87, 34, 0.14);
  --roomx-ink: #f3f4f6;
  --roomx-muted: #b6bec9;
  --roomx-border: rgba(255, 255, 255, 0.1);
  --roomx-shadow: 0 24px 46px rgba(0, 0, 0, 0.35);
  --roomx-surface: #171b22;
  --roomx-surface-strong: #11151b;
  --roomx-background: #0d1015;
  --pico-color: var(--roomx-ink);
  --pico-background-color: var(--roomx-background);
  --pico-muted-color: var(--roomx-muted);
  --pico-primary-focus: rgba(255, 87, 34, 0.28);
  --pico-form-element-background-color: #12171e;
  --pico-form-element-border-color: rgba(255, 255, 255, 0.12);
  --pico-form-element-color: var(--roomx-ink);
  --pico-form-element-placeholder-color: #8b95a3;
  --pico-form-element-active-background-color: #171d25;
  --pico-form-element-active-border-color: rgba(255, 137, 100, 0.72);
  --pico-form-element-focus-color: rgba(255, 87, 34, 0.28);
  --pico-card-background-color: var(--roomx-surface);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 87, 34, 0.08), transparent 28%),
    linear-gradient(180deg, #f6f7f9 0%, #eceff3 100%);
  color: var(--roomx-ink);
}

:root[data-theme='dark'] body {
  background:
    radial-gradient(circle at top center, rgba(255, 87, 34, 0.18), transparent 30%),
    linear-gradient(180deg, #161a22 0%, #090c10 100%);
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.font-press {
  font-family: 'Indie Flower', cursive;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--roomx-orange);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.14);
  transition: box-shadow 180ms ease;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(1480px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 5.75rem;
  transition:
    min-height 180ms ease,
    gap 180ms ease;
}

.brand-group {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  transition: gap 180ms ease;
}

.mobile-menu {
  display: none;
  position: relative;
  align-self: center;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition:
    width 180ms ease,
    height 180ms ease,
    gap 180ms ease,
    background-color 180ms ease;
}

.menu-button:hover,
.menu-button:focus {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open .menu-button {
  background: rgba(255, 255, 255, 0.14);
}

.menu-button span {
  display: block;
  width: 1.8rem;
  height: 0.18rem;
  margin: 0 auto;
  border-radius: 999px;
  background: #ffffff;
  transition:
    width 180ms ease,
    height 180ms ease;
}

.brand-link,
.brand-link:hover,
.brand-link:focus {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.brand-link img {
  display: block;
  height: clamp(2rem, 2.7vw, 2.75rem);
  width: auto;
  max-width: min(22rem, 34vw);
  transition:
    height 180ms ease,
    max-width 180ms ease,
    transform 180ms ease;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.header-nav a,
.theme-toggle {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease,
    font-size 180ms ease;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.5rem;
  transition: gap 180ms ease;
}

.theme-toggle {
  width: auto;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.header-nav a:hover,
.header-nav a:focus,
.theme-toggle:hover,
.theme-toggle:focus,
.header-nav a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.header-nav a:hover,
.header-nav a:focus,
.theme-toggle:hover,
.theme-toggle:focus {
  transform: translateY(-1px);
}

.page-shell {
  width: min(1480px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
  animation: page-enter 320ms ease both;
}

@media (min-width: 761px) {
  body.is-scrolled .site-header {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  }

  body.is-scrolled .header-inner {
    min-height: 2.7rem;
    gap: 0.45rem;
  }

  body.is-scrolled .brand-group {
    gap: 0.55rem;
  }

  body.is-scrolled .brand-link,
  body.is-scrolled .brand-link:hover,
  body.is-scrolled .brand-link:focus {
    transform: none;
  }

  body.is-scrolled .brand-link img {
    height: clamp(1.12rem, 1.4vw, 1.42rem);
    max-width: min(13rem, 22vw);
  }

  body.is-scrolled .header-nav a,
  body.is-scrolled .theme-toggle {
    padding: 0.18rem 0.5rem;
    font-size: 0.72rem;
  }

  body.is-scrolled .header-actions {
    gap: 0.1rem;
  }
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  display: grid;
  gap: 0.35rem;
  min-width: 13rem;
  padding: 0.65rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(31, 35, 41, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.35rem) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 160ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.mobile-menu.is-open .mobile-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

:root[data-theme='dark'] .mobile-menu-panel {
  background: #1f2530;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.mobile-menu-panel a {
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  color: var(--roomx-ink);
  text-decoration: none;
  font-weight: 600;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus,
.mobile-menu-panel a[aria-current='page'] {
  background: var(--roomx-orange-soft);
  color: var(--roomx-orange-deep);
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus {
  transform: translateX(3px);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--roomx-orange);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.home-hero,
.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 87, 34, 0.13);
  border-radius: var(--roomx-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 243, 0.96)),
    var(--roomx-surface);
  box-shadow: var(--roomx-shadow);
}

:root[data-theme='dark'] .home-hero,
:root[data-theme='dark'] .hero-panel {
  background:
    linear-gradient(135deg, rgba(24, 29, 37, 0.98), rgba(29, 22, 18, 0.96)),
    var(--roomx-surface);
}

.home-hero h1,
.hero-panel h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  color: var(--roomx-ink);
}

.home-hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  line-height: 1.02;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.page-shell :is(h1, h2, h3, p, li, dt, dd, summary, blockquote) {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-text {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--roomx-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 87, 34, 0.18);
  border-radius: 999px;
  background: var(--roomx-orange-soft);
  color: var(--roomx-orange-deep);
  text-decoration: none;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.secondary-link:hover,
.secondary-link:focus {
  background: #ffe3d6;
  color: var(--roomx-orange-deep);
  transform: translateY(-1px);
}

.hero-cue {
  margin: 1.35rem 0 0;
  color: var(--roomx-orange-deep);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.home-visual,
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 1.4rem;
  border-radius: calc(var(--roomx-radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 233, 0.88));
  border: 1px solid rgba(255, 87, 34, 0.1);
}

:root[data-theme='dark'] .home-visual,
:root[data-theme='dark'] .hero-visual {
  background:
    linear-gradient(180deg, rgba(22, 27, 34, 0.96), rgba(37, 23, 18, 0.88));
  border-color: rgba(255, 137, 100, 0.18);
}

.home-visual img,
.hero-visual img {
  display: block;
  width: 100%;
  max-width: 34rem;
  height: auto;
}

.content-board {
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: var(--roomx-radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--roomx-shadow);
  backdrop-filter: blur(8px);
}

:root[data-theme='dark'] .content-board {
  background: rgba(12, 15, 20, 0.72);
}

.section-card + .section-card {
  margin-top: 1.5rem;
}

.section-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2vw, 2.1rem);
  border: 1px solid var(--roomx-border);
  border-radius: var(--roomx-radius-lg);
  background: linear-gradient(180deg, #ffffff, #fefefe);
  box-shadow: 0 14px 28px rgba(31, 35, 41, 0.05);
}

:root[data-theme='dark'] .section-card {
  background: linear-gradient(180deg, #171b22, #13171d);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.section-card::before {
  content: '';
  position: absolute;
  inset: 0 1px auto 1px;
  height: 0.45rem;
  border-radius: calc(var(--roomx-radius-lg) - 1px) calc(var(--roomx-radius-lg) - 1px) 0 0;
  background: linear-gradient(90deg, var(--roomx-orange), #ff885f);
}

.section-heading {
  margin-bottom: 1.5rem;
  padding-top: 0.55rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-heading p:last-child {
  max-width: 64rem;
  margin: 1rem 0 0;
  color: var(--roomx-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--roomx-border);
  border-radius: var(--roomx-radius-lg);
  background: linear-gradient(180deg, #ffffff, #fefefe);
  box-shadow: 0 14px 28px rgba(31, 35, 41, 0.05);
}

:root[data-theme='dark'] .feature-card {
  background: linear-gradient(180deg, #171b22, #13171d);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.feature-media {
  aspect-ratio: 1.3 / 1;
  overflow: hidden;
  background: #eceef2;
}

:root[data-theme='dark'] .feature-media {
  background: #202734;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.15rem 1.15rem 1.25rem;
}

.feature-body h2 {
  margin: 0;
  font-family: 'Indie Flower', cursive;
  font-size: 1.45rem;
  line-height: 1.15;
}

.feature-body p {
  margin: 0.8rem 0 1.35rem;
  color: var(--roomx-muted);
  line-height: 1.65;
}

.feature-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-inline: auto;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 87, 34, 0.18);
  border-radius: 999px;
  background: var(--roomx-orange-soft);
  color: var(--roomx-orange-deep);
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-body p {
  margin-bottom: 1.35rem;
}

.feature-body a:hover,
.feature-body a:focus {
  background: #ffe3d6;
  color: var(--roomx-orange-deep);
  transform: translateY(-1px);
}

.section-card[id] {
  scroll-margin-top: 5.2rem;
}

.section-grid {
  display: grid;
  gap: 1.35rem;
}

.section-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.copy-flow > * + * {
  margin-top: 1rem;
}

.copy-flow p,
.copy-flow ul {
  margin: 0;
  color: var(--roomx-muted);
  line-height: 1.72;
}

.copy-flow strong,
.copy-flow b {
  color: var(--roomx-ink);
}

.mission-quote,
.info-note {
  margin: 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 87, 34, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 240, 233, 0.85), rgba(255, 255, 255, 0.96));
  color: var(--roomx-ink);
}

:root[data-theme='dark'] .mission-quote,
:root[data-theme='dark'] .info-note {
  border-color: rgba(255, 137, 100, 0.2);
  background: linear-gradient(180deg, rgba(52, 31, 24, 0.72), rgba(21, 25, 31, 0.96));
}

.mission-quote {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.7;
}

.mission-section {
  padding: clamp(1.1rem, 1.5vw, 1.5rem);
}

.mission-section .section-heading {
  margin-bottom: 1rem;
}

.mission-section .section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.02;
}

.mission-layout {
  align-items: start;
  gap: 1.05rem;
}

.mission-section .copy-flow p,
.mission-section .copy-flow ul {
  font-size: 0.98rem;
  line-height: 1.62;
}

.mission-section .mission-quote {
  padding: 0.85rem 1rem;
  font-size: 0.96rem;
  line-height: 1.58;
}

.mission-media-stack {
  gap: 0.8rem;
}

.mission-frame {
  max-width: 54rem;
  aspect-ratio: 1.12 / 0.78;
}

.mission-frame img {
  height: 100%;
  object-fit: cover;
}

.mission-note {
  padding: 0.8rem 0.95rem;
  font-size: 0.94rem;
  line-height: 1.52;
}

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 87, 34, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 233, 0.88));
  box-shadow: 0 12px 26px rgba(31, 35, 41, 0.05);
}

:root[data-theme='dark'] .media-frame {
  border-color: rgba(255, 137, 100, 0.18);
  background: linear-gradient(180deg, rgba(22, 27, 34, 0.96), rgba(37, 23, 18, 0.88));
}

.media-frame img,
.media-frame video,
.media-frame iframe {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.offer-page .section-card {
  padding: clamp(1.05rem, 1.35vw, 1.45rem);
}

.offer-page .section-card + .section-card {
  margin-top: 1.15rem;
}

.offer-page .section-heading {
  margin-bottom: 1rem;
  padding-top: 0.35rem;
}

.offer-page .section-heading h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  line-height: 1.04;
}

.offer-page .section-heading p:last-child {
  font-size: 0.98rem;
  line-height: 1.62;
  max-width: 58ch;
}

.offer-page .trailer-section .section-heading p:last-child {
  max-width: 78ch;
}

.offer-page .section-grid {
  gap: 1.2rem;
}

.offer-page .section-grid--two {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  column-gap: 1.8rem;
  row-gap: 1.15rem;
  align-items: start;
}

.offer-page .copy-flow > * + * {
  margin-top: 0.85rem;
}

.offer-page .copy-flow p,
.offer-page .copy-flow ul {
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.58;
  hyphens: auto;
  text-wrap: pretty;
}

.offer-page .mission-quote,
.offer-page .info-note {
  padding: 0.9rem 1rem;
  border-radius: 18px;
}

.offer-page .mission-quote {
  font-size: 0.95rem;
  line-height: 1.52;
}

.offer-page .media-frame,
.offer-page .info-note {
  align-self: start;
}

.offer-page .media-frame img {
  aspect-ratio: 1.18 / 0.84;
  object-fit: cover;
}

.offer-page .media-frame video {
  aspect-ratio: auto;
  object-fit: contain;
}

.trailer-frame {
  max-width: 100%;
  background: #000;
}

.trailer-frame video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
}

.offer-page .info-note {
  max-width: 34rem;
  font-size: 0.93rem;
  line-height: 1.5;
}

.offer-page .tile-grid {
  gap: 0.9rem;
}

.offer-page .info-tile {
  padding: 0.9rem 0.95rem;
}

.map-frame iframe {
  min-height: 28rem;
}

.bullet-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--roomx-muted);
  line-height: 1.75;
}

.bullet-list li + li {
  margin-top: 0.45rem;
}

.list-columns {
  columns: 2;
  column-gap: 2rem;
}

.list-columns li {
  break-inside: avoid;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-tile {
  padding: 1rem 1.05rem;
  border: 1px solid var(--roomx-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

:root[data-theme='dark'] .info-tile {
  background: rgba(255, 255, 255, 0.03);
}

.info-tile h3,
.legal-block h3 {
  margin: 0 0 0.35rem;
  color: var(--roomx-ink);
  font-size: 1rem;
}

.info-tile p {
  margin: 0;
  color: var(--roomx-muted);
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--roomx-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 243, 0.92));
  overflow: hidden;
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
}

:root[data-theme='dark'] .faq-item {
  background: linear-gradient(180deg, rgba(23, 27, 34, 0.98), rgba(19, 23, 29, 0.96));
}

.faq-item summary {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--roomx-ink);
  list-style: none;
}

.faq-item summary::marker {
  content: '';
  display: none;
}

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

.faq-item summary::after {
  content: '+';
  display: inline-flex;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-inline-start: 0;
  float: none;
  align-items: center;
  justify-content: center;
  background: none;
  background-image: none;
  background-position: initial;
  background-size: initial;
  background-repeat: no-repeat;
  transform: none;
  transition: none;
  color: var(--roomx-orange);
  font-size: 1.2rem;
  line-height: 1;
}

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

.faq-answer {
  overflow: hidden;
  height: 0;
  color: var(--roomx-muted);
  line-height: 1.72;
  opacity: 0;
  transition:
    height 240ms ease,
    opacity 180ms ease;
}

.faq-item[open] .faq-answer {
  opacity: 1;
}

.faq-answer > * {
  padding: 0 1.15rem 1.1rem;
}

.faq-answer > *:first-child {
  margin-top: 0;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a,
.copy-flow a,
.legal-block a,
.info-tile a {
  color: var(--roomx-orange-deep);
}

.widget-shell {
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--roomx-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

:root[data-theme='dark'] .widget-shell {
  background: rgba(255, 255, 255, 0.03);
}

.vbb-widget-wrapper {
  overflow: auto;
}

.legal-flow {
  display: grid;
  gap: 1.15rem;
}

.legal-block > * + * {
  margin-top: 0.7rem;
}

.legal-block p,
.legal-block ul {
  margin: 0;
  color: var(--roomx-muted);
  line-height: 1.72;
}

.legal-block ul {
  padding-left: 1.2rem;
}

.footer-internal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.65rem 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin: 0;
}

.form-grid label,
.consent-box,
.form-actions,
.required-note,
.full-width {
  grid-column: 1 / -1;
}

.form-grid > label:not(.full-width) {
  grid-column: span 1;
}

.form-grid label {
  margin: 0;
  color: var(--roomx-ink);
  font-weight: 600;
}

.form-grid input,
.form-grid textarea {
  margin-top: 0.45rem;
  border-width: 1px;
  border-color: rgba(31, 35, 41, 0.12);
  border-radius: 16px;
  background: #fbfbfc;
}

:root[data-theme='dark'] .form-grid input,
:root[data-theme='dark'] .form-grid textarea {
  border-color: rgba(255, 255, 255, 0.12);
  background: #131820;
}

.form-grid input:focus,
.form-grid textarea:focus {
  background: #ffffff;
}

:root[data-theme='dark'] .form-grid input:focus,
:root[data-theme='dark'] .form-grid textarea:focus {
  background: #171d25;
}

.form-grid textarea {
  min-height: 12rem;
  resize: vertical;
}

.field-hint {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--roomx-muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  transition:
    opacity 140ms ease,
    max-height 140ms ease,
    margin-top 140ms ease;
}

.email-field input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(194, 56, 56, 0.75);
  box-shadow: 0 0 0 1px rgba(194, 56, 56, 0.16);
}

.email-field input:invalid:not(:focus):not(:placeholder-shown) ~ .field-hint {
  max-height: 3rem;
  margin-top: 0.45rem;
  opacity: 1;
  color: #c23838;
}

.consent-box {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 87, 34, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 240, 233, 0.78), rgba(255, 255, 255, 0.95));
}

:root[data-theme='dark'] .consent-box {
  border-color: rgba(255, 137, 100, 0.2);
  background: linear-gradient(180deg, rgba(52, 31, 24, 0.72), rgba(21, 25, 31, 0.96));
}

.consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  margin: 0;
  cursor: pointer;
}

.consent-label input[type='checkbox'] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.25rem;
  accent-color: var(--roomx-orange);
  cursor: pointer;
}

.consent-label span {
  display: grid;
  gap: 0.35rem;
}

.consent-label strong {
  font-size: 1rem;
  color: var(--roomx-ink);
}

.consent-label small {
  color: var(--roomx-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.35rem;
}

.form-actions button {
  width: auto;
  min-width: 15rem;
  padding-inline: 1.35rem;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: 0 10px 18px rgba(255, 87, 34, 0.24);
}

.required-note {
  margin: 1rem 0 0;
  color: var(--roomx-muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 0 0 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  width: min(1480px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.5rem 1.8rem;
  border-radius: var(--roomx-radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(31, 35, 41, 0.06);
}

:root[data-theme='dark'] .footer-inner {
  background: #1d222b;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.footer-title {
  margin: 0;
  color: var(--roomx-orange);
  font-size: 2rem;
  line-height: 1;
}

.footer-login-glyph {
  color: inherit;
  text-decoration: none;
  transition:
    color 160ms ease,
    text-shadow 160ms ease,
    opacity 160ms ease;
}

.footer-login-glyph:hover,
.footer-login-glyph:focus {
  color: var(--roomx-orange-deep);
  text-shadow: 0 0 10px rgba(255, 87, 34, 0.14);
}

.footer-copy {
  margin: 0.35rem 0 0;
  color: var(--roomx-muted);
  font-size: 0.98rem;
}

.footer-internal a {
  color: rgba(95, 103, 115, 0.58);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: color 160ms ease;
}

:root[data-theme='dark'] .footer-internal a {
  color: rgba(182, 190, 201, 0.45);
}

.footer-internal a[hidden] {
  display: none !important;
}

.footer-internal .footer-legal-link {
  color: var(--roomx-muted);
  font-size: 0.92rem;
  letter-spacing: 0;
}

:root[data-theme='dark'] .footer-internal .footer-legal-link {
  color: rgba(214, 220, 230, 0.78);
}

.footer-internal a:hover,
.footer-internal a:focus {
  color: var(--roomx-orange-deep);
}

.login-page .page-shell {
  max-width: 74rem;
}

.login-page .content-board {
  max-width: 46rem;
  margin-inline: auto;
}

.login-card .section-heading p:last-child {
  max-width: 34rem;
}

.login-status {
  display: block;
  grid-column: 1 / -1;
  min-height: 1.5rem;
  margin-top: 0.1rem;
  color: var(--roomx-muted);
  font-size: 0.92rem;
}

.login-status.is-error {
  color: #c23838;
}

.footer-logos {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  min-width: 5.8rem;
  padding: 0.65rem 0.85rem;
  border-radius: 20px;
  background: rgba(255, 87, 34, 0.05);
}

.footer-logos img {
  display: block;
  max-height: 3.55rem;
  width: auto;
}

:root[data-theme='dark'] .footer-logos a {
  background: linear-gradient(180deg, rgba(236, 239, 242, 0.92), rgba(221, 226, 232, 0.88));
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(13, 18, 25, 0.06);
}

.footer-logo--ddi img,
.footer-logo--uni img {
  max-height: 3.7rem;
}

:root[data-theme='dark'] .footer-logo--uni {
  border: 1px solid rgba(255, 255, 255, 0.65);
}

:root[data-theme='dark'] .footer-logo--uni img {
  filter: saturate(1.18) contrast(1.05);
}

@media (max-width: 1080px) {
  .header-inner,
  .home-hero,
  .hero-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid--two,
  .tile-grid {
    grid-template-columns: 1fr;
  }

  .header-nav {
    justify-content: flex-start;
  }

  .header-actions {
    justify-self: start;
  }

  .footer-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .page-shell,
  .footer-inner {
    width: min(1480px, calc(100% - 1.25rem));
  }

  .header-inner {
    width: min(1480px, calc(100% - 1.25rem));
    min-height: auto;
    padding: 0.9rem 0;
  }

  .mobile-menu {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .brand-group {
    gap: 0.85rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .brand-link,
  .brand-link:hover,
  .brand-link:focus {
    transform: none;
  }

  .brand-link img {
    height: 2rem;
    max-width: min(15rem, 52vw);
  }

  .feature-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .list-columns {
    columns: 1;
  }

  .map-frame iframe {
    min-height: 22rem;
  }

  .form-grid > label:not(.full-width) {
    grid-column: 1 / -1;
  }

  .form-actions button {
    width: 100%;
  }
}
