/* ══════════════════════════════════════════════
   HILLNESST — HOME PAGE CSS
   ══════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active { opacity: 1; }

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 25, 16, 0.88) 0%,
    rgba(15, 25, 16, 0.45) 45%,
    rgba(15, 25, 16, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 900px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 1.8rem;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* Slideshow controls */
.hero-controls {
  position: absolute;
  bottom: 3.5rem;
  right: 5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.hero-prev, .hero-next {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: color 0.3s;
  line-height: 1;
}

.hero-prev:hover, .hero-next:hover { color: var(--white); }

.hero-dots {
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.hero-dot.active {
  background: var(--gold-light);
  width: 52px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  left: 5rem;
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  color: rgba(255,255,255,0.4);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 44px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ── QUICK BOOK BAR ── */
.quick-book-bar {
  background: var(--pine);
  padding: 0;
}

.quick-book-form {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto;
  align-items: stretch;
  min-height: 72px;
}

.qb-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 2rem;
}

.qb-field label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.qb-field input,
.qb-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  cursor: pointer;
  -webkit-appearance: none;
}

.qb-field input::placeholder { color: rgba(255,255,255,0.45); }
.qb-field select option { background: var(--pine); color: var(--white); }

.qb-sep {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

.qb-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 1.2rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.qb-btn:hover { background: var(--gold-mid); }

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-visual {
  position: relative;
  background: var(--cream);
}

.about-img-main {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.about-img-accent {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.about-text {
  padding: 7rem 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.about-pill {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--moss);
  border: 1px solid rgba(74,103,65,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  background: rgba(74,103,65,0.05);
}

.about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--pine-mid);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.5rem;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 320px;
}

.strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.4s;
}

.strip-item:hover::after { background: rgba(0,0,0,0.15); }

.strip-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}

.strip-item:hover .strip-hover { opacity: 1; }

.strip-hover span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.4);
  padding: 0.3rem 0.7rem;
  backdrop-filter: blur(4px);
}

/* ── ROOMS GRID ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.room-card-img {
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card-img { transform: none; }
.room-card:hover .room-card-img > div:first-child {
  transform: scale(1.05);
  transition: transform 0.7s ease;
}

.room-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--pine);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  z-index: 2;
}

.room-card-body {
  padding: 2rem;
}

.room-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 0.6rem;
}

.room-card-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.room-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ── EXPERIENCE SPLIT ── */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.exp-visual {
  position: relative;
}

.exp-img {
  position: relative;
  overflow: hidden;
}

.exp-float-card {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  background: var(--white);
  padding: 2rem;
  width: 200px;
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--gold);
}

.exp-float-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--pine);
  line-height: 1;
}

.exp-float-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.4rem;
  line-height: 1.6;
}

.exp-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.exp-item {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}

.exp-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(37, 51, 37, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.exp-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.3rem;
}

.exp-item p {
  font-size: 0.88rem;
  margin: 0;
}

/* ── NEARBY TEASER ── */
.nearby-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nearby-card {
  background: var(--cream);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
}

.nearby-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.nearby-card-body {
  padding: 1.8rem;
}

.nearby-dist {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.5rem;
}

.nearby-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.nearby-card p {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.68;
  color: var(--text-light);
  margin: 0;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.2rem;
  position: relative;
}

.review-stars {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.68);
  font-style: italic;
  margin-bottom: 1.8rem;
}

.review-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.review-platform {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-top: 0.2rem;
}

.rating-summary {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.rating-item { text-align: center; }

.rating-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.rating-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.3rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 16, 0.72);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-content { padding: 0 2.5rem; }
  .hero-scroll-cue { left: 2.5rem; }
  .hero-controls { right: 2.5rem; }
  .about-split { grid-template-columns: 1fr; }
  .about-text { padding: 4rem 2.5rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; gap: 4rem; }
  .exp-float-card { bottom: 1rem; right: 1rem; }
  .nearby-cards { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .quick-book-form { grid-template-columns: 1fr 1fr; gap: 0; }
  .qb-sep { display: none; }
  .qb-btn { grid-column: 1 / -1; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .photo-strip .strip-item:nth-child(4),
  .photo-strip .strip-item:nth-child(5) { display: none; }
}

@media (max-width: 768px) {
  .hero { padding-bottom: 6rem; }
  .hero-title { font-size: 3rem; }
  .hero-content { padding: 0 1.5rem; }
  .hero-controls { display: none; }
  .hero-scroll-cue { display: none; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat { padding: 0 0.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(5) { grid-column: 1 / -1; border-right: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .nearby-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-summary { gap: 2.5rem; }
  .photo-strip { height: 200px; }
  .quick-book-form { grid-template-columns: 1fr; }
}
