﻿:root {
  --ivory: #faf8f5;
  --alabaster: #f2ece3;
  --paper: #fffdf9;
  --charcoal: #23262f;
  --espresso: #3b302b;
  --muted: #746f68;
  --line: #ded4c7;
  --terracotta: #d47a56;
  --terracotta-dark: #ae5e40;
  --sage: #7d927e;
  --gold: #c5a880;
  --shadow: 0 24px 70px rgba(35, 38, 47, 0.14);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 60px);
  background: rgba(250, 248, 245, 0.88);
  border-bottom: 1px solid rgba(35, 38, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(35, 38, 47, 0.18);
  border-radius: 10px;
  background: var(--charcoal);
  box-shadow: 0 10px 24px rgba(35, 38, 47, 0.12);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.04;
}

.brand strong {
  font-family: var(--serif);
  font-size: 19px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

nav a,
.nav-cta,
.footer a {
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  padding: 118px clamp(18px, 5vw, 72px) 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 122, 86, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(250, 248, 245, 0.78), rgba(242, 236, 227, 0.8));
  pointer-events: none;
}

.hero-content,
.hero-image-stack,
.booking-widget {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.stay-copy h3,
.owner-panel h2,
.form-copy h2,
.review-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 850px;
  color: var(--charcoal);
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-image-stack {
  display: grid;
  grid-template-columns: 0.72fr 0.28fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 620px;
}

.hero-image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-image-stack img:first-child {
  grid-row: 1 / span 2;
}

.hero-image-stack img:last-child {
  align-self: end;
  height: 72%;
}

.booking-widget {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr) auto;
  gap: 1px;
  align-items: stretch;
  width: min(1120px, 100%);
  margin-top: -38px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.booking-widget label {
  display: grid;
  gap: 7px;
  padding: 17px 18px;
  background: rgba(255, 253, 249, 0.96);
}

.booking-widget span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.72);
}

.location-filter h2 {
  max-width: 640px;
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.location-tabs {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: rgba(250, 248, 245, 0.78);
  box-shadow: 0 18px 44px rgba(35, 38, 47, 0.08);
}

.location-tabs button {
  min-width: 112px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--charcoal);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.location-tabs button:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 122, 86, 0.26);
}

.location-tabs button.active {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 12px 26px rgba(212, 122, 86, 0.24);
}

.filter-count {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 35px;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font: inherit;
  font-size: 16px;
}

select:focus,
input:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(212, 122, 86, 0.25);
  outline-offset: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--terracotta);
  color: #fff;
}

.button.primary:hover {
  background: var(--terracotta-dark);
}

.button.book-button {
  height: 100%;
  min-width: 148px;
  border-radius: 0;
}

.button.ghost,
.button.secondary-card {
  border-color: var(--line);
  background: transparent;
  color: var(--charcoal);
}

.button.secondary-card {
  width: fit-content;
  min-height: 42px;
  border-radius: 999px;
  margin-top: auto;
}

.button.full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--ivory);
}

.trust-row div {
  padding: 27px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(250, 248, 245, 0.14);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
}

.trust-row span {
  margin-top: 6px;
  color: rgba(250, 248, 245, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.section h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.02;
}

.editorial-intro > p,
.owner-panel p,
.form-copy p,
.review-copy + p,
.stay-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.bento-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 24px;
  padding-top: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.property-grid.is-switching {
  opacity: 0.36;
  transform: translateY(8px);
}

.stay-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(35, 38, 47, 0.09);
  transition: opacity 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(35, 38, 47, 0.13);
}

.feature-card {
  grid-row: auto;
}

.vertical-card {
  display: flex;
}

.image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.stay-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 480ms ease;
}

.feature-card img {
  min-height: 0;
}

.stay-card:hover img {
  transform: scale(1.045);
}

.stay-card[hidden] {
  display: none;
}

.stay-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.stay-copy h3 {
  margin: 10px 0 10px;
  color: var(--charcoal);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.listing-location {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stay-meta,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stay-meta span {
  border-bottom: 1px solid var(--line);
  color: var(--espresso);
  font-size: 13px;
  font-weight: 800;
}

.rule-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.rule-chips span {
  border: 1px solid rgba(125, 146, 126, 0.26);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(125, 146, 126, 0.08);
  color: var(--espresso);
  font-size: 12px;
  font-weight: 900;
}

.amenity-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.amenity-icons.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amenity-icons span,
.amenity-grid div {
  display: grid;
  gap: 8px;
  align-content: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.amenity-icons svg,
.amenity-grid svg {
  width: 24px;
  height: 24px;
  stroke: var(--terracotta);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-section {
  background: var(--paper);
}

.section-heading.centered {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 42px auto 0;
}

.amenity-grid div {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: var(--ivory);
}

.amenity-grid h3 {
  margin: 18px 0 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.amenity-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  background: linear-gradient(180deg, var(--paper), var(--ivory));
}

.about-portrait {
  position: relative;
  min-height: 620px;
}

.about-portrait img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.host-badge {
  position: absolute;
  right: -24px;
  bottom: 36px;
  max-width: 260px;
  border: 1px solid rgba(250, 248, 245, 0.22);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(35, 38, 47, 0.88);
  color: var(--ivory);
  backdrop-filter: blur(16px);
}

.host-badge span {
  display: block;
  color: rgba(250, 248, 245, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.host-badge strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.08;
}

.about-copy {
  max-width: 790px;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

.about-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.host-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.host-stats div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--paper);
}

.host-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.host-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.host-team {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 26px;
}

.host-team img {
  width: 56px;
  height: 56px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(35, 38, 47, 0.12);
}

.host-team img + img {
  margin-left: -14px;
}

.host-team span {
  max-width: 360px;
  margin-left: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--alabaster);
}

.review-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

.testimonial-slider {
  position: relative;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.rating {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 18px;
}

.testimonial p {
  margin: 28px 0 18px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.testimonial span {
  color: var(--muted);
  font-weight: 800;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #ddd2c5;
}

.slider-dots button.active {
  background: var(--terracotta);
}

.owner-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.owner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}

.owner-panel h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
}

.owner-panel p {
  color: rgba(250, 248, 245, 0.72);
}

.owner-points {
  display: grid;
  gap: 10px;
}

.owner-points span {
  border: 1px solid rgba(250, 248, 245, 0.14);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(250, 248, 245, 0.06);
  color: rgba(250, 248, 245, 0.84);
  font-weight: 800;
}

.form-section {
  background: var(--ivory);
}

.guest-form-section {
  background: var(--paper);
}

.form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  max-width: 1080px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.form-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.7vw, 56px);
  line-height: 1.04;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.contact-lines {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  color: var(--espresso);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(250, 248, 245, 0.78);
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer-logo {
  width: 112px;
  height: 54px;
  margin-bottom: 12px;
  border: 1px solid rgba(250, 248, 245, 0.16);
  border-radius: 10px;
  object-fit: cover;
}

.footer strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.footer div:nth-child(2) {
  display: grid;
  gap: 6px;
  text-align: right;
  font-weight: 800;
}

.footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(250, 248, 245, 0.55);
}

@media (max-width: 1020px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-cta {
    width: fit-content;
  }

  .hero,
  .location-filter,
  .editorial-intro,
  .bento-section,
  .about-section,
  .reviews-section,
  .owner-panel,
  .form-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-image-stack {
    min-height: 420px;
  }

  .about-portrait,
  .about-portrait img {
    min-height: auto;
    height: min(640px, 78vw);
  }

  .host-badge {
    right: 22px;
  }

  .booking-widget {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .location-filter {
    align-items: start;
  }

  .location-tabs {
    justify-self: start;
  }

  .button.book-button {
    grid-column: 1 / -1;
    border-radius: 0;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  nav {
    gap: 14px;
    font-size: 13px;
  }

  .nav-cta {
    min-height: 40px;
    font-size: 13px;
  }

  .hero,
  .section {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-image-stack {
    grid-template-columns: 1fr;
    min-height: 330px;
  }

  .hero-image-stack img:last-child {
    display: none;
  }

  .booking-widget,
  .trust-row,
  .amenity-grid,
  .host-stats,
  .location-filter,
  .amenity-icons,
  .amenity-icons.compact,
  .two-col {
    grid-template-columns: 1fr;
  }

  .location-tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 18px;
  }

  .location-tabs button {
    width: 100%;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(250, 248, 245, 0.14);
  }

  .feature-card img,
  .stay-card img {
    min-height: 280px;
  }

  .about-portrait img {
    height: 480px;
    border-radius: 18px;
  }

  .host-badge {
    position: static;
    max-width: none;
    margin-top: 12px;
    background: var(--charcoal);
  }

  .host-team {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .host-team span {
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
  }

  .card-actions,
  .stay-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .footer div:nth-child(2) {
    text-align: left;
  }
}

/* Premium platform redesign */
.site-header {
  min-height: 82px;
  background: rgba(250, 248, 245, 0.78);
  box-shadow: 0 14px 44px rgba(35, 38, 47, 0.08);
}

.brand-logo {
  width: 68px;
  height: 48px;
  border-radius: 12px;
}

.brand-hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: center;
  gap: 34px;
  padding-top: 132px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 24%, rgba(212, 122, 86, 0.14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(197, 168, 128, 0.18), transparent 26%),
    linear-gradient(135deg, #faf8f5 0%, #f3ede4 54%, #fffdf9 100%);
}

.brand-hero::before {
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(35, 38, 47, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(35, 38, 47, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 68%);
}

.hero-brand-mark {
  position: relative;
  z-index: 1;
  width: clamp(180px, 22vw, 310px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 38, 47, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(250, 248, 245, 0.74)),
    radial-gradient(circle, rgba(212, 122, 86, 0.14), transparent 64%);
  box-shadow: 0 34px 90px rgba(35, 38, 47, 0.15);
  animation: fadeUp 700ms ease both;
}

.hero-brand-mark::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(197, 168, 128, 0.34);
  border-radius: 42px;
}

.hero-brand-mark img {
  width: 78%;
  height: 78%;
  border-radius: 24px;
  object-fit: cover;
}

.brand-hero .hero-content {
  display: grid;
  justify-items: center;
  max-width: 1120px;
  animation: fadeUp 780ms ease 80ms both;
}

.brand-hero .hero h1,
.brand-hero h1 {
  max-width: 1040px;
  font-size: clamp(52px, 8vw, 124px);
  line-height: 0.95;
}

.brand-hero .hero-copy {
  max-width: 760px;
}

.hero-search {
  width: min(1080px, 100%);
  margin: 0;
  text-align: left;
  animation: fadeUp 780ms ease 160ms both;
}

.destination-studio {
  grid-template-columns: minmax(0, 0.9fr) auto;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(250, 248, 245, 0.88)),
    radial-gradient(circle at 88% 10%, rgba(125, 146, 126, 0.14), transparent 26%);
}

.filter-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 12px;
  max-width: 780px;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 253, 249, 0.88);
}

.filter-panel span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.collection-stack {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  padding-top: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.collection-section {
  display: grid;
  gap: 24px;
  animation: fadeUp 520ms ease both;
}

.collection-section[hidden] {
  display: none;
}

.collection-hero {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 18px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.collection-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.92);
}

.collection-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 38, 47, 0.82), rgba(35, 38, 47, 0.28) 56%, rgba(35, 38, 47, 0.12));
}

.collection-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(28px, 5vw, 56px);
  color: var(--ivory);
}

.collection-hero h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
}

.collection-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(250, 248, 245, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.collection-hero span {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid rgba(250, 248, 245, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(250, 248, 245, 0.12);
  color: rgba(250, 248, 245, 0.88);
  font-weight: 800;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.single-collection {
  grid-template-columns: minmax(0, 0.52fr);
}

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(35, 38, 47, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 200ms ease;
}

.listing-card:hover,
.listing-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(35, 38, 47, 0.14);
}

.listing-card[hidden] {
  display: none;
}

.featured-tile {
  grid-column: span 2;
  grid-row: span 2;
}

.listing-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  color: var(--ivory);
}

.featured-tile .listing-media {
  aspect-ratio: 16 / 10;
}

.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(90deg, #eee6dc, #faf8f5, #eee6dc);
  transition: transform 520ms ease, filter 520ms ease;
}

.listing-card:hover .listing-media img {
  transform: scale(1.055);
  filter: saturate(1.03);
}

.listing-badge,
.hover-cta {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.listing-badge {
  top: 14px;
  left: 14px;
  padding: 8px 10px;
  background: rgba(35, 38, 47, 0.72);
  backdrop-filter: blur(12px);
}

.hover-cta {
  right: 14px;
  bottom: 14px;
  opacity: 0;
  transform: translateY(8px);
  padding: 10px 12px;
  background: var(--terracotta);
  transition: opacity 200ms ease, transform 200ms ease;
}

.listing-card:hover .hover-cta {
  opacity: 1;
  transform: translateY(0);
}

.listing-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.rating-line,
.price-line,
.amenity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rating-line {
  justify-content: space-between;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
}

.rating-line small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.listing-body h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.listing-body p,
.spec-line {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.spec-line {
  color: var(--espresso);
  font-size: 13px;
}

.amenity-row span {
  border: 1px solid rgba(125, 146, 126, 0.2);
  border-radius: 999px;
  padding: 7px 9px;
  background: rgba(125, 146, 126, 0.08);
  color: var(--espresso);
  font-size: 12px;
  font-weight: 900;
}

.price-line {
  justify-content: space-between;
  margin-top: 6px;
}

.price-line strong {
  font-size: 15px;
}

.price-line button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--terracotta);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.host-story-section {
  align-items: stretch;
}

.host-profile-card {
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.host-profile-card > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.host-profile-copy {
  padding: clamp(24px, 4vw, 38px);
  color: var(--ivory);
}

.host-profile-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 74px);
  font-weight: 500;
}

.host-profile-copy p {
  color: rgba(250, 248, 245, 0.72);
  line-height: 1.68;
}

.certification-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.certification-row span {
  border: 1px solid rgba(250, 248, 245, 0.16);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(250, 248, 245, 0.08);
  color: rgba(250, 248, 245, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.cohost-card,
.philosophy-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(35, 38, 47, 0.06);
}

.cohost-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
}

.cohost-card img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.cohost-card span,
.philosophy-panel span {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cohost-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.cohost-card p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.philosophy-panel {
  margin-top: 18px;
  padding: 24px;
}

.philosophy-panel p {
  margin: 10px 0 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 1180px) {
  .listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .brand-hero,
  .destination-studio,
  .collection-intro,
  .host-story-section {
    grid-template-columns: 1fr;
  }

  .hero-search,
  .filter-panel {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .featured-tile {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .site-header nav {
    display: none;
  }

  .nav-cta {
    width: auto;
    min-height: 38px;
    padding-inline: 12px;
  }

  .brand-logo {
    width: 58px;
    height: 42px;
  }

  .brand-hero {
    min-height: auto;
    gap: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-brand-mark {
    width: min(136px, 46vw);
    border-radius: 26px;
  }

  .brand-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .brand-hero .hero-copy {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.48;
  }

  .booking-widget label {
    padding: 10px 11px;
  }

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

  .filter-panel,
  .listing-grid,
  .single-collection {
    grid-template-columns: 1fr;
  }

  .featured-tile {
    grid-column: span 1;
  }

  .collection-hero {
    min-height: 420px;
  }

  .collection-hero::after {
    background: linear-gradient(180deg, rgba(35, 38, 47, 0.22), rgba(35, 38, 47, 0.84));
  }

  .collection-hero span {
    border-radius: 14px;
  }

  .host-profile-card > img {
    height: 420px;
  }

  .cohost-card {
    grid-template-columns: 1fr;
  }
}
