/* Homepage — hero, search bar, property grid, Manchester experiences,
   business band, trust reviews. Ported from beyondstays-mockup-v3.html.
   Shared partials (nav, footer, floating-book) live in their own files. */

/* Utility */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 500; font-size: 15px;
  letter-spacing: -0.01em;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(199,98,44,0.25); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); background: var(--white); }
.btn::after { content: "→"; transition: transform .25s var(--ease); }
.btn:hover::after { transform: translateX(4px); }

/* HERO */
.hero-home {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-home-inner {
  max-width: var(--max-wide); margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  min-height: 640px;
}
.hero-home-copy { padding-bottom: 80px; }
.hero-home-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-family: var(--serif);
  font-weight: 400;
}
.hero-home-copy h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.hero-home-copy p {
  font-size: 20px; color: var(--ink-2); max-width: 520px;
  margin-bottom: 40px; line-height: 1.5;
}
.hero-home-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.hero-home-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: 0.4 } }
.hero-home-image {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #C7622C 0%, #8B3A1F 40%, #2C1810 100%);
}
.hero-home-image > img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-home-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 24px rgba(31, 30, 27, 0.12);
  z-index: 3;
}
.hero-chip-rating { top: 40px; right: -24px; }
.hero-chip-rating .star { color: var(--terracotta); font-size: 15px; }
.hero-chip-city {
  bottom: 48px; left: -32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--green);
}

/* HERO TRUST STRIP — sits below hero CTA, above the fold. Stays in the hero,
   does NOT stick with the booking bar. */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}
.hero-trust > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero-trust > span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.7;
  margin-right: 6px;
  flex-shrink: 0;
}
.hero-trust strong { color: var(--ink); font-weight: 700; }
.hero-trust-accent { color: var(--terracotta); font-weight: 700; }

/* SEARCH BAR — always-visible bottom-fixed bar, matches 401 floating-book style */
.searchbar-wrap {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  z-index: 40;
  max-width: 900px;
  width: calc(100vw - 48px);
  padding: 0;
  margin: 0;
}
.searchbar {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 14px 14px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: 0 24px 60px rgba(31, 30, 27, 0.20);
  border: 1px solid var(--line);
  grid-template-columns: unset;
}
.searchbar-field {
  padding: 0;
  display: flex; flex-direction: column;
  gap: 4px;
  cursor: pointer;
  flex: 1;
  min-width: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  border: none;
  border-radius: 0;
  transition: opacity .15s var(--ease);
}
.searchbar-field:hover { background: transparent; opacity: 0.75; }
.searchbar-field + .searchbar-field {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.searchbar-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 0;
}
.searchbar-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.searchbar-cta {
  padding: 18px 36px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  height: auto;
}
.searchbar-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(199, 98, 44, 0.35); }
.searchbar-trust { display: none; }

/* Reserve body space so the bar never overlaps content at page end */
body.page-home { padding-bottom: 128px; }

@media (max-width: 900px) {
  body.page-home { padding-bottom: 108px; }
  .searchbar-wrap {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    max-width: none;
    width: auto;
  }
  .searchbar {
    padding: 12px 12px 12px 24px;
    gap: 12px;
  }
  .searchbar-field:not(:first-child) { display: none; }
  .searchbar-cta {
    margin-left: auto;
    padding: 14px 28px;
    font-size: 12px;
  }
}
.searchbar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: grid;
  grid-template-columns: 1.3fr 1.5fr 1fr auto;
  gap: 4px;
  box-shadow: 0 20px 50px rgba(31, 30, 27, 0.10);
  border: 1px solid var(--line);
  align-items: center;
}
.searchbar-field {
  padding: 12px 20px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background .2s var(--ease);
  background: transparent;
  text-align: left;
  font-family: inherit;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.searchbar-field:hover { background: var(--base-2); }
.searchbar-field:last-of-type { border-right: none; }
.searchbar-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  margin-bottom: 4px;
}
.searchbar-value { font-size: 15px; color: var(--ink); font-weight: 500; }
.searchbar-cta {
  padding: 16px 32px;
  background: var(--terracotta);
  color: white;
  border-radius: var(--radius);
  font-weight: 500; font-size: 15px;
  border: none; cursor: pointer;
  transition: background .2s var(--ease);
  letter-spacing: -0.005em;
  height: 100%;
  font-family: inherit;
}
.searchbar-cta:hover { background: var(--terracotta-dark); }
.searchbar-trust {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 28px;
  font-size: 13px; color: var(--ink-2);
  flex-wrap: wrap;
}
.searchbar-trust span::before { content: "· "; color: var(--ink-3); margin-right: 8px; }
.searchbar-trust span:first-child::before { content: ""; margin-right: 0; }
.searchbar-trust .accent { color: var(--terracotta); font-weight: 600; }

/* SECTIONS */
.section { padding: 128px 0; }
.section-lead {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.section-lead h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.section-lead h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.section-lead p { font-size: 18px; margin: 0; color: var(--ink-2); }

/* PROPERTY GRID */
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: block;
  color: inherit;
}
.property-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(31, 30, 27, 0.08); }
.property-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #C7622C, #6B3E20);
  position: relative;
  overflow: hidden;
}
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.property-card:hover .property-image img { transform: scale(1.05); }
.property-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--white);
  color: var(--green);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
}
.property-body { padding: 24px; }
.property-area {
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.property-title {
  font-family: var(--serif);
  font-size: 22px; line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 400;
}
.property-meta {
  display: flex; gap: 16px;
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.property-meta span::before { content: "· "; color: var(--ink-3); }
.property-meta span:first-child::before { content: ""; }
.property-footer { display: flex; justify-content: space-between; align-items: center; }
.property-price { font-size: 15px; color: var(--ink); }
.property-price strong { font-size: 22px; font-weight: 600; color: var(--ink); font-family: var(--serif); }
.property-price small { color: var(--ink-2); font-size: 13px; }
.property-rating { display: flex; align-items: center; gap: 4px; font-size: 14px; color: var(--ink); }
.property-rating .star { color: var(--terracotta); }

/* COMING SOON CARD — dark placeholder, blue accent (sibling-brand cue) */
.soon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: block;
  color: inherit;
}
.soon-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(31, 30, 27, 0.08); }
.soon-cover {
  position: relative;
  aspect-ratio: 4/3;
  background: #1a1c1d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.soon-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
  transition: transform .6s var(--ease), filter .3s var(--ease);
}
.soon-card:hover .soon-cover img {
  transform: scale(1.04);
  filter: brightness(0.65) saturate(0.9);
}
.soon-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 30, 27, 0.15) 0%, rgba(31, 30, 27, 0.45) 100%);
  z-index: 1;
}
.soon-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.soon-body { padding: 24px; }
.soon-area {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.soon-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.soon-meta {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
}

/* MANCHESTER */
.manchester {
  background: var(--green);
  color: var(--white);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}
.manchester h2 { color: var(--white); font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; font-size: clamp(32px, 4vw, 52px); line-height: 1.08; margin: 0; }
.manchester h2 em { color: #E8C39F; font-style: italic; font-weight: 300; }
.manchester p { color: rgba(255, 255, 255, 0.75); }
.manchester .eyebrow { color: #E8C39F; }
.manchester-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.experience-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s var(--ease);
  cursor: pointer;
  color: inherit;
  display: block;
}
.experience-card:hover { background: rgba(255, 255, 255, 0.10); border-color: rgba(232, 195, 159, 0.3); transform: translateY(-4px); }
.experience-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232, 195, 159, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.experience-card h3 {
  color: var(--white);
  font-size: 18px;
  margin: 0 0 8px;
  font-family: var(--serif); font-weight: 400;
  letter-spacing: -0.01em;
}
.experience-card p { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin: 0; line-height: 1.5; }

/* BUSINESS BAND */
.business-band {
  background: var(--base-2);
  padding: 128px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.business-copy .eyebrow { color: var(--green); }
.business-copy h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.business-copy h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.business-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.feature h4 {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.feature p { font-size: 14px; margin: 0; color: var(--ink-2); line-height: 1.55; }
.business-note {
  background: var(--white);
  border-left: 3px solid var(--green);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 32px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.business-note strong { color: var(--green); font-weight: 600; }
.business-image {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2C4A3E, #1E3A32);
  overflow: hidden;
  position: relative;
}
.business-image img { width: 100%; height: 100%; object-fit: cover; }

/* TRUST BAND */
.trust-band { background: var(--base); padding: 96px 0; }
.trust-header { text-align: center; margin-bottom: 48px; }
.trust-header h2 {
  max-width: 720px; margin: 0 auto 16px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08; letter-spacing: -0.02em;
}
.trust-header h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.trust-header .airbnb-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 20px;
  transition: all .2s var(--ease);
}
.trust-header .airbnb-badge:hover {
  border-color: var(--terracotta);
  color: var(--ink);
  transform: translateY(-1px);
}
.trust-header .airbnb-badge::after { content: "↗"; font-size: 11px; }
.trust-header .airbnb-badge .airbnb-pink {
  color: #FF385C; font-weight: 700; font-size: 15px;
  font-family: var(--sans);
  letter-spacing: -0.01em;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
.review-rating { display: flex; gap: 4px; margin-bottom: 20px; color: var(--terracotta); font-size: 15px; }
.review-body {
  font-family: var(--serif);
  font-size: 19px; line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--green));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
}
.review-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.review-meta { font-size: 12px; color: var(--ink-2); }
.trust-footer { text-align: center; margin-top: 48px; }

@media (max-width: 900px) {
  .hero-home-inner { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
  .hero-home-copy { padding-bottom: 0; }
  .hero-home-image { max-width: 100%; aspect-ratio: 4/3; }
  .searchbar { grid-template-columns: 1fr; gap: 8px; padding: 8px; }
  .searchbar-field { border-right: none; border-bottom: 1px solid var(--line); }
  .searchbar-field:last-of-type { border-bottom: none; }
  .searchbar-cta { width: 100%; }
  .section-lead { grid-template-columns: 1fr; gap: 24px; }
  .property-grid { grid-template-columns: 1fr; }
  .manchester-grid { grid-template-columns: 1fr 1fr; }
  .business-grid { grid-template-columns: 1fr; gap: 48px; }
  .business-features { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-chip-rating { right: 16px; top: 16px; padding: 10px 14px; font-size: 12px; }
  .hero-chip-city { left: 16px; bottom: 16px; padding: 10px 14px; font-size: 13px; }
}
