
:root {
  --v254-bg: #fffaf3;
  --v254-card: #ffffff;
  --v254-text: #111111;
  --v254-muted: #687166;
  --v254-green: #55733f;
  --v254-green-dark: #344a2b;
  --v254-green-soft: #eef5e9;
  --v254-orange: #ff6418;
  --v254-orange-soft: #fff0e6;
  --v254-border: #eee7dd;
  --v254-shadow: 0 20px 60px rgba(31, 30, 28, .08);
}

.v254-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255,100,24,.08), transparent 26%),
    radial-gradient(circle at 92% 16%, rgba(85,115,63,.08), transparent 30%),
    #fffaf3;
  color: var(--v254-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  margin-top: 0 !important;
  padding: 18px 0 0;
  overflow-x: hidden;
  position: relative;
}

.v254-page * {
  box-sizing: border-box;
  font-family: inherit !important;
}

.v254-bg-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(24px);
  opacity: .42;
  z-index: 0;
  animation: v254-orb 9s ease-in-out infinite alternate;
}

.v254-bg-orb-one {
  width: 260px;
  height: 260px;
  background: rgba(255, 100, 24, .18);
  top: 18%;
  left: -80px;
}

.v254-bg-orb-two {
  width: 320px;
  height: 320px;
  background: rgba(85, 115, 63, .14);
  right: -120px;
  top: 36%;
  animation-delay: -3s;
}

@keyframes v254-orb {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(30px,45px,0) scale(1.08); }
}

.v254-icon {
  width: 18px !important;
  height: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  line-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.v254-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  overflow: visible !important;
}

.v254-icon svg path,
.v254-icon svg circle,
.v254-icon svg rect {
  fill: none !important;
  stroke: currentColor !important;
}

.v254-topbar,
.v254-hero,
.v254-section,
.v254-weekend,
.v254-browse,
.v254-blog,
.v254-host-cta,
.v254-footer {
  width: min(1240px, calc(100% - 36px));
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.v254-motion {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.v254-motion.v254-in-view {
  opacity: 1;
  transform: translateY(0);
}

.v254-topbar {
  min-height: 82px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(238,231,221,.95);
  box-shadow: 0 18px 50px rgba(31,30,28,.075);
  border-radius: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 14px 12px 22px;
  position: sticky;
  top: 14px;
  z-index: 20;
}

.v254-topbar.v254-scrolled {
  box-shadow: 0 22px 70px rgba(31,30,28,.14);
  transform: translateY(0) scale(.992);
}

.v254-logo {
  color: var(--v254-text) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 950 !important;
  font-size: 25px !important;
  letter-spacing: -.055em !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.v254-logo strong { color: var(--v254-green) !important; }

.v254-logo-mark {
  width: 38px !important;
  height: 38px !important;
  display: inline-grid !important;
  place-items: center !important;
  background: var(--v254-orange-soft) !important;
  color: var(--v254-orange) !important;
  border-radius: 14px !important;
}

.v254-logo-mark .v254-icon {
  width: 20px !important;
  height: 20px !important;
}

.v254-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  min-width: 0;
}

.v254-nav a,
.v254-footer a {
  color: #1d211b !important;
  text-decoration: none !important;
  font-weight: 850 !important;
  font-size: 15px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.v254-nav a {
  position: relative;
  padding: 8px 0;
}

.v254-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--v254-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

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

.v254-top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.v254-location-pill,
.v254-search-select {
  background: white !important;
  border: 1px solid var(--v254-border) !important;
  border-radius: 999px !important;
  padding: 12px 15px !important;
  font-weight: 850 !important;
  font-size: 14px !important;
  color: #1d211b !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.v254-location-pill .v254-icon,
.v254-search-select .v254-icon {
  color: var(--v254-orange) !important;
}

.v254-submit-btn,
.v254-button {
  border: 0 !important;
  background: var(--v254-orange) !important;
  color: white !important;
  font-weight: 950 !important;
  padding: 15px 19px !important;
  border-radius: 17px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  justify-content: center !important;
  box-shadow: 0 14px 30px rgba(255,100,24,.25) !important;
  white-space: nowrap !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}

.v254-submit-btn:hover,
.v254-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255,100,24,.32) !important;
}

.v254-submit-btn .v254-icon,
.v254-button .v254-icon {
  width: 17px !important;
  height: 17px !important;
}

.v254-menu-btn {
  display: none;
  border: 1px solid var(--v254-border);
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--v254-text);
}

.v254-hero {
  min-height: 610px;
  margin-top: 18px;
  padding: clamp(36px, 5vw, 72px) clamp(22px, 4vw, 58px);
  border-radius: 38px;
  background:
    linear-gradient(115deg, rgba(255,255,255,.95), rgba(255,250,243,.88) 48%, rgba(255,240,230,.72)),
    radial-gradient(circle at 86% 20%, rgba(255,100,24,.15), transparent 30%),
    radial-gradient(circle at 78% 86%, rgba(85,115,63,.13), transparent 34%);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  gap: 38px;
  border: 1px solid rgba(238,231,221,.95);
  box-shadow: var(--v254-shadow);
  overflow: hidden;
  position: relative;
}

.v254-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85,115,63,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85,115,63,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 78% 30%, black, transparent 56%);
  opacity: .75;
}

.v254-hero__content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.v254-kicker {
  margin: 0 0 14px !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  color: var(--v254-green) !important;
  line-height: 1.35 !important;
}

.v254-hero h1 {
  margin: 0 !important;
  font-size: clamp(48px, 5.8vw, 86px) !important;
  line-height: .98 !important;
  letter-spacing: -.065em !important;
  font-family: inherit !important;
  font-weight: 900 !important;
}

.v254-hero h1 span {
  color: var(--v254-green) !important;
}

.v254-subtitle {
  margin: 24px 0 30px !important;
  max-width: 710px;
  color: #59635b !important;
  font-size: clamp(17px, 1.45vw, 21px) !important;
  line-height: 1.58 !important;
}

.v254-search {
  display: grid;
  grid-template-columns: 1.5fr .58fr .58fr auto;
  gap: 10px;
  padding: 10px;
  background: white;
  border: 1px solid var(--v254-border);
  border-radius: 25px;
  box-shadow: 0 18px 45px rgba(31, 30, 28, .08);
}

.v254-search-field,
.v254-search-select {
  height: 60px;
  display: flex;
  align-items: center;
  background: #fbfaf7 !important;
  border: 1px solid #f0ebe4 !important;
  border-radius: 18px !important;
  padding: 0 17px !important;
  color: #394035 !important;
  font-weight: 850 !important;
}

.v254-search-field {
  gap: 10px;
}

.v254-search-field .v254-icon,
.v254-search-select .v254-icon {
  color: var(--v254-green) !important;
}

.v254-search-field input {
  flex: 1;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  font-size: 16px !important;
  width: 100%;
  color: var(--v254-text) !important;
}

.v254-search button {
  border: 0;
  background: var(--v254-orange);
  color: white;
  font-weight: 950;
  padding: 0 22px;
  border-radius: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.v254-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.v254-chips span {
  background: white !important;
  border: 1px solid var(--v254-border) !important;
  border-radius: 999px !important;
  padding: 11px 16px !important;
  font-weight: 850 !important;
  font-size: 14px !important;
  color: #293027 !important;
  box-shadow: 0 8px 20px rgba(31,30,28,.04);
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.v254-chips span:hover {
  transform: translateY(-2px);
  border-color: rgba(255,100,24,.35) !important;
  box-shadow: 0 12px 26px rgba(31,30,28,.08);
}

.v254-chips .v254-icon {
  color: var(--v254-green) !important;
}

.v254-hero__visual {
  min-height: 430px;
  position: relative;
  z-index: 2;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(17,17,17,.08), rgba(17,17,17,.42)),
    radial-gradient(circle at 20% 10%, #ffb37d, transparent 28%),
    linear-gradient(135deg, #738e5a, #1d2b19);
  box-shadow: 0 24px 70px rgba(31,30,28,.16);
  overflow: hidden;
  transition: transform .2s ease-out;
}

.v254-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 34%, rgba(255,255,255,.32), transparent 9%),
    radial-gradient(circle at 55% 42%, rgba(255,255,255,.22), transparent 11%),
    radial-gradient(circle at 74% 32%, rgba(255,255,255,.20), transparent 10%);
  animation: v254-glow 5s ease-in-out infinite alternate;
}

@keyframes v254-glow {
  from { transform: scale(1); opacity: .75; }
  to { transform: scale(1.06); opacity: 1; }
}

.v254-hero-card--main {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: 26px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 24px;
  animation: v254-float 4.5s ease-in-out infinite;
}

@keyframes v254-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.v254-mini-label {
  display: inline-flex;
  background: var(--v254-green-soft);
  color: var(--v254-green-dark);
  border-radius: 999px;
  font-weight: 950;
  padding: 7px 11px;
  font-size: 12px;
  margin-bottom: 12px;
}

.v254-hero-card h3 {
  margin: 0 0 7px !important;
  font-size: 27px !important;
  letter-spacing: -.04em !important;
  font-family: inherit !important;
}

.v254-hero-card p {
  margin: 0 !important;
  color: var(--v254-muted) !important;
}

.v254-floating-card {
  position: absolute;
  right: 24px;
  top: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 2px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  animation: v254-float 5.5s ease-in-out infinite;
}

.v254-floating-card strong { font-size: 22px; }
.v254-floating-card span { font-size: 12px; color: var(--v254-muted); font-weight: 750; }

.v254-section,
.v254-weekend,
.v254-browse,
.v254-blog {
  padding: 44px 0 18px;
}

.v254-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.v254-section-head h2 {
  margin: 0 !important;
  font-size: clamp(24px, 3vw, 34px) !important;
  letter-spacing: -.04em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: inherit !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

.v254-section-head h2 .v254-icon {
  color: var(--v254-orange) !important;
}

.v254-section-head p {
  margin: 6px 0 0 !important;
  color: var(--v254-muted) !important;
}

.v254-section-head a,
.v254-read-link {
  color: var(--v254-text) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.v254-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.v254-grid--compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v254-card,
.v254-blog-card {
  background: var(--v254-card);
  border: 1px solid var(--v254-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(31,30,28,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.v254-card:hover,
.v254-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(31,30,28,.12);
}

.v254-card__image,
.v254-blog-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3.15;
  overflow: hidden;
  background: var(--v254-green-soft);
  text-decoration: none;
}

.v254-card__image img,
.v254-blog-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .25s ease;
}

.v254-card:hover img,
.v254-blog-card:hover img {
  transform: scale(1.04);
}

.v254-placeholder,
.v254-blog-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 950;
  font-size: 24px;
  text-align: center;
  padding: 20px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.18), transparent 25%),
    linear-gradient(135deg, var(--v254-green), #1d2b19);
}

.v254-blog-placeholder .v254-icon {
  width: 54px !important;
  height: 54px !important;
  color: rgba(255,255,255,.9);
}

.v254-card:nth-child(2) .v254-placeholder { background: linear-gradient(135deg, #f7d896, #55733f); }
.v254-card:nth-child(3) .v254-placeholder { background: linear-gradient(135deg, #ff6418, #46291b); }
.v254-card:nth-child(4) .v254-placeholder { background: linear-gradient(135deg, #1f3150, #05080d); }

.v254-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: #192015;
  border-radius: 14px;
  padding: 8px 10px;
  font-weight: 950;
  font-size: 11px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.v254-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--v254-green);
  color: white;
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .04em;
}

.v254-card__body,
.v254-blog-card__body {
  padding: 16px;
}

.v254-card h3,
.v254-blog-card h3 {
  margin: 0 0 10px !important;
  font-size: 18px !important;
  line-height: 1.23 !important;
  letter-spacing: -.025em !important;
  font-family: inherit !important;
  font-weight: 900 !important;
}

.v254-blog-card h3 {
  font-size: 22px !important;
}

.v254-card h3 a,
.v254-blog-card h3 a {
  color: var(--v254-text) !important;
  text-decoration: none !important;
}

.v254-location,
.v254-disclaimer,
.v254-blog-card p {
  margin: 0 0 10px !important;
  color: var(--v254-muted) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.v254-blog-card p {
  font-size: 15px !important;
}

.v254-blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 850 !important;
  color: var(--v254-green) !important;
  margin-bottom: 12px !important;
}

.v254-blog-meta .v254-icon {
  width: 15px !important;
  height: 15px !important;
}

.v254-location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.v254-location .v254-icon {
  width: 15px !important;
  height: 15px !important;
  color: var(--v254-green) !important;
}

.v254-price {
  margin: 0 0 14px !important;
  font-weight: 950 !important;
  color: #20251e !important;
}

.v254-card__cta {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 7px !important;
  border: 1px solid rgba(255, 100, 24, .55) !important;
  color: var(--v254-orange) !important;
  text-decoration: none !important;
  font-weight: 950 !important;
  border-radius: 15px !important;
  padding: 11px 13px !important;
}

.v254-card__cta .v254-icon,
.v254-read-link .v254-icon {
  width: 15px !important;
  height: 15px !important;
}

.v254-poster-grid,
.v254-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.v254-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v254-poster-card {
  min-height: 210px;
  border-radius: 24px;
  padding: 18px;
  color: white;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55)),
    linear-gradient(135deg, #ff6418, #1d2b19);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 18px 50px rgba(31,30,28,.09);
  overflow: hidden;
  position: relative;
}

.v254-poster-card:nth-child(2) { background: linear-gradient(135deg, #1f3150, #101418); }
.v254-poster-card:nth-child(3) { background: linear-gradient(135deg, #ff9a52, #7b3d17); }
.v254-poster-card:nth-child(4) { background: linear-gradient(135deg, #6e8f57, #1d2b19); }

.v254-poster-card::before {
  content: "";
  position: absolute;
  inset: -80px -60px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  transition: transform .3s ease;
}

.v254-poster-card:hover::before {
  transform: scale(1.15) translate(-10px, 10px);
}

.v254-poster-card span {
  width: fit-content;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.v254-poster-card h3 {
  margin: 0 0 8px !important;
  font-size: 26px !important;
  line-height: 1 !important;
  letter-spacing: -.04em !important;
  font-family: inherit !important;
  position: relative;
  z-index: 1;
}

.v254-poster-card p {
  margin: 0 !important;
  opacity: .9;
  font-weight: 800 !important;
  position: relative;
  z-index: 1;
}

.v254-vibe-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.v254-vibe-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--v254-border);
  border-radius: 22px;
  padding: 18px;
  min-height: 148px;
  box-shadow: 0 12px 32px rgba(31,30,28,.045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.v254-vibe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,100,24,.3);
  box-shadow: 0 18px 50px rgba(31,30,28,.08);
}

.v254-vibe-card > span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--v254-orange-soft);
  color: var(--v254-orange);
  margin-bottom: 16px;
}

.v254-vibe-card h3 {
  margin: 0 0 8px !important;
  font-size: 16px !important;
  font-family: inherit !important;
  font-weight: 900 !important;
}

.v254-vibe-card p {
  margin: 0 !important;
  color: var(--v254-muted) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.v254-host-cta {
  margin-top: 44px;
  margin-bottom: 50px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,100,24,.12), transparent 24%),
    linear-gradient(135deg, #f4f8ef, #fffaf3);
  border: 1px solid #dce8d3;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: 0 18px 50px rgba(31,30,28,.06);
}

.v254-host-avatars {
  display: flex;
  align-items: center;
}

.v254-host-avatars span {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 5px solid #fffaf3;
  margin-left: -18px;
  background: linear-gradient(135deg, var(--v254-orange), var(--v254-green));
  box-shadow: 0 12px 28px rgba(31,30,28,.14);
}

.v254-host-avatars span:first-child { margin-left: 0; }

.v254-host-cta h2 {
  margin: 0 0 12px !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  letter-spacing: -.04em !important;
  font-family: inherit !important;
  font-weight: 900 !important;
}

.v254-host-cta p:not(.v254-kicker) {
  margin: 0 !important;
  color: var(--v254-muted) !important;
  max-width: 720px;
  line-height: 1.65 !important;
}

.v254-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.v254-benefits span {
  color: var(--v254-green-dark) !important;
  font-weight: 850 !important;
  font-size: 13px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.v254-benefits .v254-icon {
  width: 15px !important;
  height: 15px !important;
}

.v254-footer {
  margin-top: 44px;
  padding: 38px;
  border: 1px solid var(--v254-border);
  border-radius: 32px 32px 0 0;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1.55fr .75fr .75fr .9fr;
  gap: 34px;
  position: relative;
}

.v254-footer-brand p {
  color: var(--v254-muted) !important;
  max-width: 400px;
  line-height: 1.65 !important;
  margin: 18px 0 !important;
}

.v254-socials {
  display: flex;
  gap: 10px;
}

.v254-socials a {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--v254-border);
  display: grid;
  place-items: center;
  background: white;
  color: var(--v254-green-dark) !important;
}

.v254-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v254-footer h4 {
  margin: 0 0 8px !important;
  font-size: 16px !important;
  font-family: inherit !important;
  font-weight: 900 !important;
}

.v254-footer-col a {
  color: var(--v254-muted) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  line-height: 1.2 !important;
}

.v254-footer-col a:hover {
  color: var(--v254-orange) !important;
}

.v254-footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--v254-border);
  padding-top: 20px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--v254-muted);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .v254-motion,
  .v254-hero-card--main,
  .v254-floating-card,
  .v254-bg-orb,
  .v254-hero__visual::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1180px) {
  .v254-topbar {
    grid-template-columns: auto auto;
  }
  .v254-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0;
  }
  .v254-top-actions {
    justify-content: flex-end;
  }
  .v254-hero { grid-template-columns: 1fr; }
  .v254-hero__visual { display: none; }
  .v254-search { grid-template-columns: 1fr; }
  .v254-grid, .v254-grid--compact, .v254-poster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v254-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v254-vibe-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v254-host-cta { grid-template-columns: 1fr; }
  .v254-host-avatars { display: none; }
  .v254-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .v254-page { padding-top: 12px; }
  .v254-topbar, .v254-hero, .v254-section, .v254-weekend, .v254-browse, .v254-blog, .v254-host-cta, .v254-footer {
    width: min(100% - 24px, 1240px);
  }
  .v254-topbar {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 14px;
    border-radius: 20px;
    grid-template-columns: 1fr auto;
  }
  .v254-nav {
    display: none;
  }
  .v254-location-pill {
    display: none !important;
  }
  .v254-menu-btn {
    display: inline-grid;
    place-items: center;
  }
  .v254-submit-btn {
    display: none !important;
  }
  .v254-logo { font-size: 21px !important; }
  .v254-hero {
    margin-top: 14px;
    padding: 42px 22px;
    min-height: auto;
    border-radius: 26px;
  }
  .v254-search-field, .v254-search-select { height: 54px; }
  .v254-search button { height: 54px; justify-content: center; }
  .v254-grid, .v254-grid--compact, .v254-poster-grid, .v254-blog-grid, .v254-vibe-grid, .v254-footer {
    grid-template-columns: 1fr;
  }
  .v254-footer {
    padding: 26px;
  }
  .v254-footer-bottom {
    flex-direction: column;
  }
}
