/* Homepage — premium editorial experience
   Scoped primarily under .page-home; does not replace app-shell styles. */

.page-home {
  --section-pad: clamp(64px, 9vw, 120px);
  --content: min(1180px, calc(100% - 48px));
  background: var(--cream);
}

.page-home .brand span {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: inherit;
}

.page-home .brand img {
  animation: none;
}

/* ——— Header extras ——— */

.nav-center {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-center a {
  position: relative;
  opacity: 0.88;
  transition: opacity 0.2s;
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-center a:hover {
  opacity: 1;
}

.nav-center a:hover::after {
  transform: scaleX(1);
}

.header-fav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: inherit;
  opacity: 0.9;
  transition: background 0.25s, transform 0.35s var(--ease);
}

.header-fav:hover {
  background: rgba(23, 56, 44, 0.06);
  transform: scale(1.06);
}

.page-home .site-header:not(.is-solid) .header-fav:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (min-width: 980px) {
  .page-home .nav-main {
    display: none;
  }

  .nav-center {
    display: flex;
  }
}

@media (max-width: 1100px) {
  .page-home .header-actions > .btn-ghost[href="/profile/bookings"] {
    display: none;
  }
}

/* ——— Hero ——— */

.rr-hero {
  position: relative;
  min-height: 72vh;
  max-height: 880px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.rr-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, #2a4a3c 0%, #5a7a68 45%, #c4b8a0 100%);
}

.rr-hero-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.03) translate3d(0, 0, 0);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.rr-hero-media img.is-ready {
  opacity: 1;
}

.rr-hero-media.is-empty::after {
  content: "Hero görseli · /images/hero.jpg";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-weight: 500;
}

.rr-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 38, 28, 0.18) 0%, rgba(15, 38, 28, 0.08) 35%, rgba(15, 38, 28, 0.55) 100%),
    linear-gradient(90deg, rgba(15, 38, 28, 0.35) 0%, transparent 55%);
  backdrop-filter: blur(0px);
}

.rr-hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 0 40px;
}

.rr-hero-content h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.rr-hero-content h1 span {
  display: block;
}

.rr-hero-lead {
  margin: 18px 0 0;
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 254, 251, 0.88);
  font-weight: 400;
}

.rr-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rr-hero .btn-outline-light {
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.45);
}

/* ——— Discovery search ——— */

.rr-discovery {
  position: relative;
  z-index: 3;
  width: var(--content);
  margin: -36px auto 0;
  padding-bottom: 24px;
}

.rr-discovery-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.rr-discovery-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.rr-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  padding: 4px;
  background: rgba(23, 56, 44, 0.04);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}

.rr-segment {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.25s, color 0.25s;
}

.rr-segment[aria-selected="true"] {
  background: var(--navy);
  color: var(--white);
}

.rr-segment:hover:not([aria-selected="true"]) {
  color: var(--navy);
}

.rr-chips {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.rr-chips.is-active {
  display: flex;
}

.rr-chip {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.rr-chip:hover,
.rr-chip.is-on {
  border-color: var(--navy);
  background: rgba(23, 56, 44, 0.05);
  color: var(--navy);
}

.rr-search-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 0.9fr 0.85fr auto;
  gap: 10px;
  align-items: end;
}

.rr-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.rr-field input,
.rr-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-soft);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.rr-field input:focus,
.rr-field select:focus {
  outline: none;
  border-color: rgba(23, 56, 44, 0.35);
  box-shadow: var(--focus-ring);
}

.rr-search-submit {
  min-height: 48px;
  align-self: end;
}

@media (max-width: 920px) {
  .rr-search-fields {
    grid-template-columns: 1fr 1fr;
  }

  .rr-search-submit {
    grid-column: 1 / -1;
  }

  .rr-segments {
    border-radius: 16px;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .rr-search-fields {
    grid-template-columns: 1fr;
  }
}

/* ——— Sections shared ——— */

.rr-section {
  padding: var(--section-pad) 0;
}

.rr-section-inner {
  width: var(--content);
  margin: 0 auto;
}

.rr-section-head {
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 28ch;
}

.rr-section-head.wide {
  max-width: 36ch;
}

.rr-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.rr-section-lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42ch;
}

.rr-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.rr-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rr-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .rr-hero-media img,
  .story-card img,
  .space-card img,
  .dest-card img,
  .ugc-card img,
  .film-track {
    transform: none !important;
    animation: none !important;
  }
}

/* ——— Story categories ——— */

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.story-card {
  position: relative;
  display: block;
  min-height: clamp(280px, 36vw, 420px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 38, 28, 0.72) 100%);
  opacity: 0.85;
  transition: opacity 0.45s var(--ease);
  z-index: 1;
}

.story-card:hover img {
  transform: scale(1.04);
}

.story-card:hover::after {
  opacity: 1;
}

.story-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
  transition: transform 0.5s var(--ease);
}

.story-card:hover .story-card-copy {
  transform: translateY(-6px);
}

.story-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 400;
}

.story-card p {
  margin: 8px 0 0;
  max-width: 28ch;
  font-size: 0.95rem;
  color: rgba(255, 254, 251, 0.86);
}

.story-card .story-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.story-card:hover .story-go,
.story-card:focus-visible .story-go {
  opacity: 1;
  transform: none;
}

@media (max-width: 720px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: 260px;
  }

  .story-card .story-go {
    opacity: 1;
    transform: none;
  }
}

/* ——— Featured spaces carousel ——— */

.spaces-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.spaces-head .rr-section-head {
  margin: 0;
}

.spaces-nav {
  display: flex;
  gap: 8px;
}

.spaces-nav button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  transition: background 0.25s, border-color 0.25s;
}

.spaces-nav button:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.spaces-rail-wrap {
  position: relative;
  cursor: grab;
}

.spaces-rail-wrap.is-dragging {
  cursor: grabbing;
}

.spaces-rail-wrap.is-dragging * {
  cursor: grabbing;
}

.spaces-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  overscroll-behavior-x: contain;
}

.spaces-rail::-webkit-scrollbar {
  display: none;
}

.space-card {
  position: relative;
  flex: 0 0 min(340px, 78vw);
  scroll-snap-align: start;
  color: inherit;
}

.space-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--sand);
}

.space-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease), opacity 0.5s;
  opacity: 0;
}

.space-card-media img.is-ready {
  opacity: 1;
}

.space-card:hover .space-card-media img {
  transform: scale(1.04);
}

.space-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.92);
  color: var(--navy);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.35s, transform 0.35s var(--ease), color 0.2s;
}

.space-card:hover .space-fav,
.space-fav.is-on,
.space-card:focus-within .space-fav {
  opacity: 1;
  transform: scale(1);
}

.space-fav.is-on {
  color: var(--coral);
}

.space-fav:active {
  transform: scale(1.12);
}

.space-inspect {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.94);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 650;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
  pointer-events: none;
}

.space-card:hover .space-inspect {
  opacity: 1;
  transform: none;
}

.space-card-meta {
  padding: 14px 2px 0;
}

.space-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.space-card-meta h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.space-rating {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.space-place {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.space-price {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.space-price strong {
  color: var(--navy);
  font-weight: 650;
}

.spaces-empty,
.spaces-skel {
  display: flex;
  gap: 18px;
}

.skel-card {
  flex: 0 0 min(340px, 78vw);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, var(--sand), #f0ebe3, var(--sand));
  background-size: 200% 100%;
  animation: skel 1.4s ease infinite;
}

@keyframes skel {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.spaces-empty-msg {
  width: 100%;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}

/* Custom cursor label for carousel */
.rr-drag-hint {
  display: none;
  position: fixed;
  z-index: 70;
  pointer-events: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.rr-drag-hint.is-on {
  display: block;
}

@media (hover: none) {
  .space-fav,
  .space-inspect {
    opacity: 1;
    transform: none;
  }

  .rr-drag-hint {
    display: none !important;
  }
}

/* ——— Destinations editorial ——— */

.dest-editorial {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 240px 240px 240px;
  gap: 16px;
}

.dest-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--white);
  min-height: 220px;
}

.dest-card:nth-child(1) {
  grid-row: 1 / span 2;
  min-height: 100%;
}

.dest-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.dest-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 38, 28, 0.7));
  z-index: 1;
}

.dest-card:hover img {
  transform: scale(1.05) translateY(-1%);
}

.dest-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
  transition: transform 0.45s var(--ease);
}

.dest-card:hover .dest-copy {
  transform: translateY(-8px);
}

.dest-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.dest-go {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 650;
  opacity: 0;
  transition: opacity 0.35s;
}

.dest-card:hover .dest-go {
  opacity: 1;
}

@media (max-width: 900px) {
  .dest-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .dest-card:nth-child(1) {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .dest-card:nth-child(4),
  .dest-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .dest-editorial {
    grid-template-columns: 1fr;
  }

  .dest-go {
    opacity: 1;
  }
}

/* ——— Social / UGC wall ——— */

.ugc-section {
  overflow: hidden;
}

.film-strip {
  margin-top: 8px;
}

.film-row {
  overflow: hidden;
  margin-bottom: 14px;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.film-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee-left 80s linear infinite;
}

.film-row.reverse .film-track {
  animation-name: marquee-right;
  animation-duration: 90s;
}

.film-row:hover .film-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.ugc-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 280px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sand);
}

.ugc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.ugc-card:hover img {
  transform: scale(1.04);
}

.ugc-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(15, 38, 28, 0.75));
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}

.ugc-card:hover .ugc-meta,
.ugc-card:focus-within .ugc-meta {
  opacity: 1;
  transform: none;
}

.ugc-meta strong {
  display: block;
  font-size: 0.9rem;
}

.ugc-meta span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 2px;
}

.ugc-meta em {
  display: inline-block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 650;
}

@media (max-width: 720px) {
  .film-track {
    animation-duration: 50s;
  }

  .film-row.reverse .film-track {
    animation-duration: 55s;
  }

  .ugc-meta {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .film-row:hover .film-track {
    animation-play-state: paused;
  }
}

/* ——— Host ——— */

.host-block {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.host-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #3d5c4f, #c4b8a0);
}

.host-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease);
}

.host-visual.is-in img,
.host-visual img.is-revealed {
  clip-path: inset(0 0 0 0);
}

.host-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

.host-copy .host-sub {
  margin: 14px 0 0;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 550;
}

.host-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 38ch;
}

.host-stats {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.host-stats.is-visible {
  display: grid;
}

.host-stats div {
  display: grid;
  gap: 4px;
}

.host-stats span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 650;
}

.host-stats strong {
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 650;
}

.host-cta {
  margin-top: 28px;
}

@media (max-width: 860px) {
  .host-block {
    grid-template-columns: 1fr;
  }
}

/* ——— How it works journey ——— */

.how-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 12px;
}

.how-line {
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.how-line > i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--navy);
  transition: width 0.9s var(--ease);
}

.how-journey.is-in .how-line > i {
  width: 100%;
}

.how-step {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.how-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy);
  margin-bottom: 18px;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}

.how-step.is-active .how-icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.how-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.how-step h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.how-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 22ch;
}

@media (max-width: 860px) {
  .how-journey {
    grid-template-columns: 1fr 1fr;
  }

  .how-line {
    display: none;
  }
}

@media (max-width: 520px) {
  .how-journey {
    grid-template-columns: 1fr;
  }
}

/* ——— Trust strip ——— */

.trust-strip {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 28px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 550;
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--sea-soft);
}

/* ——— About / soft close ——— */

.rr-about {
  padding: var(--section-pad) 0;
  text-align: center;
}

.rr-about h2 {
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.rr-about p {
  margin: 16px auto 0;
  max-width: 42ch;
  color: var(--muted);
}

.rr-about .btn {
  margin-top: 24px;
}

/* ——— Footer (home enhancements) ——— */

.page-home .site-footer {
  background: var(--cream-soft);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}

.page-home .site-footer .brand {
  color: var(--navy);
}

.rr-footer-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
}

.rr-footer-brand p {
  margin: 14px 0 0;
  max-width: 26ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.rr-footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.rr-footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--navy);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.rr-footer-col a:hover {
  opacity: 1;
}

.rr-newsletter {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}

.rr-newsletter input {
  flex: 1;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.rr-newsletter button {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
}

.rr-footer-bottom {
  width: var(--content);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.app-soon {
  opacity: 0.75;
}

@media (max-width: 900px) {
  .rr-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .rr-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Mobile sticky CTA ——— */

.rr-mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  min-height: 52px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 650;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 720px) {
  .rr-mobile-cta {
    display: flex;
  }

  .page-home {
    padding-bottom: 72px;
  }

  .rr-hero {
    min-height: 64vh;
  }

  .rr-hero-content h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }
}

/* ——— Mockup alignment extras ——— */

.rr-discovery-in-hero {
  width: var(--content);
  margin: 0 auto;
  padding: 0 0 36px;
  position: relative;
  z-index: 3;
}

.rr-discovery-in-hero .rr-discovery-panel {
  opacity: 0;
  transform: translateY(18px);
  animation: discoveryIn 0.9s var(--ease) 0.25s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .rr-discovery-in-hero .rr-discovery-panel {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes discoveryIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.rr-hero {
  min-height: 78vh;
  padding-bottom: 0;
  justify-content: flex-end;
}

.rr-hero-content {
  padding-bottom: 28px;
}

.spaces-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.spaces-tabs {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(30, 46, 36, 0.05);
  gap: 4px;
}

.spaces-tab {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.spaces-tab.is-on {
  background: var(--navy);
  color: var(--white);
}

.host-panel {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--cream-soft);
  border: 1px solid var(--line);
}

.host-panel-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.host-panel .host-stats.is-visible {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.host-panel .host-panel-note.is-hidden {
  display: none;
}

.quote-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
}

.quote-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.quote-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--navy);
}

.quote-card footer {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--muted);
}

.quote-empty {
  grid-column: 1 / -1;
  padding: 36px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}

.rr-app {
  background: var(--cream-soft);
}

.rr-app-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.rr-app-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
}

.rr-app-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 40ch;
}

.rr-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.app-badge {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.rr-app-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.phone-frame {
  width: 180px;
  height: 360px;
  border-radius: 28px;
  padding: 10px;
  background: var(--navy-deep);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease);
}

.phone-frame:hover {
  transform: rotate(-3deg) translateY(-4px);
}

.phone-screen {
  height: 100%;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(205, 160, 110, 0.25), transparent 40%),
    linear-gradient(200deg, #2a3f33, #4b6647);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  padding: 20px;
}

.phone-screen strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.phone-screen span {
  font-size: 0.78rem;
  opacity: 0.8;
}

.qr-soon {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.qr-box {
  width: 112px;
  height: 112px;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background:
    repeating-linear-gradient(0deg, transparent, transparent 7px, rgba(30,46,36,0.08) 7px, rgba(30,46,36,0.08) 8px),
    repeating-linear-gradient(90deg, transparent, transparent 7px, rgba(30,46,36,0.08) 7px, rgba(30,46,36,0.08) 8px),
    var(--white);
}

@media (max-width: 860px) {
  .quote-slider,
  .rr-app-grid {
    grid-template-columns: 1fr;
  }

  .spaces-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .spaces-tools {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-frame:hover {
    transform: none;
  }
}
