/* ================================================================
   home.css — Home page styles
   ================================================================ */

/* ─── 1. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: -20% 0;
  background-image: url('https://static.wixstatic.com/media/78b7b5_01321d4de0c94efa9c0e62fa2d46e98d~mv2.jpg/v1/fit/w_960,h_959,q_90,enc_avif,quality_auto/78b7b5_01321d4de0c94efa9c0e62fa2d46e98d~mv2.jpg');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 14, 6, 0.58) 0%,
    rgba(20, 14, 6, 0.2) 55%,
    rgba(20, 14, 6, 0.06) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 32px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--terra-lt);
  opacity: 0.7;
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(68px, 10vw, 108px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 0.95;
  margin-bottom: 26px;
  text-shadow: 0 2px 32px rgba(20, 14, 6, 0.35);
}
.hero h1 em { color: var(--terra-lt); }
.hero-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2px;
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-chip {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2.4s ease-in-out infinite;
  cursor: pointer;
}
.hero-scroll span {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.hero-scroll svg { width: 18px; height: 18px; fill: currentColor; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.9; }
}

/* ─── Availability Bar ─────────────────────────────────────── */
.avail-bar {
  background: var(--terra-pale);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}
.avail-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 0;
}
.avail-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  white-space: nowrap;
  padding-right: 28px;
  border-right: 1px solid var(--border);
  margin-right: 28px;
  flex-shrink: 0;
}
.avail-fields {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.avail-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 24px 0 0;
  cursor: pointer;
}
.avail-field + .avail-field {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.avail-field-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dusk);
  opacity: 0.8;
}
.avail-field-val {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}
.avail-bar-cta { margin-left: auto; flex-shrink: 0; }

/* ─── 2. Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--parch);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.stat-slash {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--terra);
  margin: 0 2px;
}
.stat-unit {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 8px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--dusk);
  font-weight: 300;
}

/* ─── 3. Intro Split ─────────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 72px 88px 80px;
  background: var(--white);
}
.intro-text .eyebrow { margin-bottom: 22px; }
.intro-text h2 {
  margin-bottom: 24px;
  max-width: 420px;
  line-height: 1.1;
}
.intro-text p {
  font-size: 15.5px;
  line-height: 1.82;
  margin-bottom: 36px;
  max-width: 440px;
  color: var(--mid);
}
.intro-image { overflow: hidden; }
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.intro-image:hover img { transform: scale(1.05); }

/* ─── 5. Amenities ──────────────────────────────────────── */
.amenities { background: var(--cream); }
.amenities-header {
  text-align: center;
  margin-bottom: 64px;
}
.amenities-header .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.amenities-header h2 { max-width: 480px; margin: 0 auto; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.amenity-card:hover {
  border-color: var(--terra);
  box-shadow: 0 4px 24px rgba(196, 98, 45, 0.08);
}
.amenity-icon {
  width: 36px;
  height: 36px;
  color: var(--terra);
  margin-bottom: 18px;
}
.amenity-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity-category {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.amenity-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.amenity-list { display: flex; flex-direction: column; gap: 8px; }
.amenity-list li {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.amenity-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 400;
}

/* ─── 6. Parallax Band ──────────────────────────────────── */
.parallax-band {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.parallax-band-bg {
  position: absolute;
  inset: -20% 0;
  background-image: url('https://static.wixstatic.com/media/78b7b5_547684b35f7e41ab98d5c799de3460c5~mv2.jpg/v1/fit/w_960,h_959,q_90,enc_avif,quality_auto/78b7b5_547684b35f7e41ab98d5c799de3460c5~mv2.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 14, 6, 0.76) 0%,
    rgba(20, 14, 6, 0.46) 52%,
    rgba(20, 14, 6, 0.08) 100%
  );
  z-index: 1;
}
.parallax-band-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 620px;
}
.parallax-band-content .eyebrow {
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.parallax-band-content h2 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 22px;
}
.parallax-band-content h2 em { color: var(--terra-lt); }
.parallax-band-content p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

/* ─── 7. Gallery Mosaic ─────────────────────────────────── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.mosaic-cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.mosaic-cell:hover img { transform: scale(1.05); }
.mosaic-main { grid-row: 1 / 3; }
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,6,0.7) 0%, rgba(20,14,6,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mosaic-main:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ─── 8. Reviews ────────────────────────────────────────── */
.reviews { background: var(--white); }
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 48px;
}
.reviews-header-text .eyebrow { margin-bottom: 18px; }

.superhost-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 28px;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--cream);
}
.superhost-star svg {
  width: 30px; height: 30px;
  fill: var(--terra);
}
.superhost-platform {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dusk);
  margin-bottom: 4px;
}
.superhost-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars svg { width: 13px; height: 13px; fill: var(--terra); }
.review-quote {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.68;
  margin-bottom: 24px;
  position: relative;
}
.review-quote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 72px;
  color: var(--terra);
  line-height: 0.55;
  display: block;
  margin-bottom: 14px;
  opacity: 0.65;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--terra);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.review-verified {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 300;
  color: var(--dusk);
}
.review-platform {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terra);
  flex-shrink: 0;
}

.rating-feature {
  text-align: center;
  padding: 32px 0 8px;
  border-top: 1px solid var(--border);
}
.rating-number {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.rating-stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 10px;
}
.rating-stars svg { width: 22px; height: 22px; fill: var(--terra); }
.rating-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--dusk);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.rating-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s;
}
.rating-link:hover { gap: 10px; text-decoration: underline; }

/* ─── 9. Things To Do ───────────────────────────────────── */
.things-to-do { background: var(--cream); }
.things-header {
  text-align: center;
  margin-bottom: 48px;
}
.things-header .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.things-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  height: 460px;
}
.thing-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.thing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.thing-card:hover img { transform: scale(1.07); }
.thing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,6,0.76) 0%, rgba(20,14,6,0.08) 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}
.thing-category {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 8px;
}
.thing-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.thing-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

/* ─── 10. Location ──────────────────────────────────────── */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.location-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 72px 88px 80px;
  background: var(--white);
}
.location-text .eyebrow { margin-bottom: 22px; }
.location-text h2 {
  margin-bottom: 22px;
  max-width: 380px;
}
.location-text > p {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 400px;
}
.proximity-list { width: 100%; max-width: 440px; }
.proximity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.proximity-item:first-child { border-top: 1px solid var(--border); }
.proximity-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}
.proximity-dist {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 300;
  color: var(--dusk);
}
.location-image { overflow: hidden; }
.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.location-image:hover img { transform: scale(1.04); }

/* ─── 11. Host ──────────────────────────────────────────── */
.host-section {
  background: var(--white);
  text-align: center;
}
.host-section .eyebrow {
  justify-content: center;
  margin-bottom: 28px;
}
.host-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 28px;
  border: 3px solid var(--border);
  display: block;
}
.host-name {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1;
}
.host-title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--dusk);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.host-bio {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.82;
}
.host-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── 12. CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: var(--terra);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-text .eyebrow {
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.cta-text h2 {
  color: var(--white);
  max-width: 480px;
  font-size: clamp(32px, 4vw, 52px);
}
.cta-text h2 em { color: rgba(255,255,255,0.75); }

/* ─── Responsive: Home ──────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-text,
  .location-text { padding: 64px 48px; }
  .parallax-band-content { padding: 0 48px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: clamp(52px, 14vw, 80px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-bottom: none; }

  .intro-split,
  .location-split { grid-template-columns: 1fr; }
  .intro-image,
  .location-image { height: 380px; min-height: 320px; }
  .intro-text,
  .location-text { padding: 52px 28px; }

  .amenities-grid { grid-template-columns: 1fr; }

  .parallax-band-content {
    padding: 0 28px;
    max-width: 100%;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
  }
  .mosaic-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .reviews-header { flex-direction: column; gap: 28px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .things-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .thing-card { height: 280px; }

  .cta-inner { flex-direction: column; text-align: center; }

  .avail-bar-inner {
    flex-direction: column;
    height: auto;
    padding: 20px 28px;
    gap: 16px;
    align-items: flex-start;
  }
  .avail-label { border-right: none; margin-right: 0; padding-right: 0; }
  .avail-bar-cta { margin-left: 0; width: 100%; }
  .avail-bar-cta .btn { width: 100%; justify-content: center; }

  .host-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero h1 { font-size: 52px; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .mosaic-main { grid-column: 1; grid-row: 1; }
}
