/* ============================================================
   Season Hive — Property Page Styles
   ============================================================ */

/* ============================================================
   HOMEPAGE: PROPERTY CARDS
   ============================================================ */
.section-subtitle {
  font-size: 15px;
  color: var(--text-mid);
  margin-top: 16px;
}

.prop-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.prop-card {
  display: block;
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.prop-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.prop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.prop-card:hover .prop-card__img { transform: scale(1.06); }

.prop-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.prop-card:hover .prop-card__overlay { opacity: 1; }
.prop-card__discover {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prop-card__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.prop-card__body {
  padding: 28px;
}
.prop-card__location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prop-card__name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.prop-card__name em {
  font-style: italic;
  color: var(--gold-dark);
}
.prop-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.prop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ebebeb;
}
.prop-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.prop-card__meta i { color: var(--gold); }

.prop-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.3s, gap 0.3s;
}
.prop-card:hover .prop-card__cta {
  color: var(--gold-dark);
  gap: 12px;
}

/* Horizontal card (used on property pages for "also like") */
.prop-card--horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  margin: 0 auto;
}
.prop-card--horizontal .prop-card__img-wrap {
  aspect-ratio: auto;
  min-height: 300px;
}

/* ============================================================
   PROPERTY PAGE: HERO
   ============================================================ */
.prop-hero {
  position: relative;
  height: 85vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
.prop-hero__bg {
  position: absolute;
  inset: 0;
}
.prop-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,12,0.85) 0%,
    rgba(12,12,12,0.4) 50%,
    rgba(12,12,12,0.2) 100%
  );
}
.prop-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.prop-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  transition: color 0.3s;
}
.prop-hero__back:hover { color: var(--gold-light); }
.prop-hero__location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prop-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.prop-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.prop-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.prop-hero__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.prop-hero__stat i { color: var(--gold); font-size: 14px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid #e8e8e8;
  padding: 14px 0;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb a {
  font-size: 12px;
  color: var(--text-mid);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i {
  font-size: 9px;
  color: var(--gray);
}
.breadcrumb span {
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ============================================================
   PROPERTY GALLERY GRID
   ============================================================ */
.prop-gallery {
  background: var(--dark-2);
}
.prop-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 4px;
  max-height: 600px;
  overflow: hidden;
}
.prop-gallery__main {
  grid-row: span 2;
  overflow: hidden;
}
.prop-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out);
}
.prop-gallery__main:hover img { transform: scale(1.03); }
.prop-gallery__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.prop-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.prop-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out);
}
.prop-gallery__item:hover img { transform: scale(1.04); }
.prop-gallery__item--last { position: relative; }
.prop-gallery__all-btn {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}
.prop-gallery__all-btn:hover { background: var(--cream); }

/* ============================================================
   PROPERTY CONTENT LAYOUT
   ============================================================ */
.prop-content {
  padding: 80px 0 100px;
  background: var(--white);
}
.prop-content__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.prop-section {
  margin-bottom: 0;
}
.prop-section__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ebebeb;
}

.prop-desc p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.prop-desc p:last-child { margin-bottom: 0; }
.prop-desc__list {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prop-desc__list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}
.prop-registration,
.prop-sidebar__permit {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.04em;
}
.prop-registration {
  margin-top: 28px;
  margin-bottom: 0;
}
.prop-rules--inline {
  margin-top: 28px;
}

.prop-divider {
  height: 1px;
  background: #ebebeb;
  margin: 48px 0;
}

/* Amenities — multi-column flow avoids row-height gaps */
.prop-amenities-full {
  column-count: 2;
  column-gap: 36px;
}
.prop-amenity-group {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 36px;
}
.prop-amenity-group:last-child {
  margin-bottom: 0;
}
.prop-amenity-group h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prop-amenity-group h4 i { color: var(--gold); }
.prop-amenity-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prop-amenity-group li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.prop-amenity-group li i { color: var(--gold); font-size: 11px; }
.prop-amenity-group li.has-note {
  align-items: flex-start;
}
.prop-amenity-group li.has-note span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prop-amenity-group li.has-note small {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 400;
}
.prop-amenity-group li.is-unavailable {
  color: rgba(0, 0, 0, 0.38);
}
.prop-amenity-group li.is-unavailable i {
  color: rgba(0, 0, 0, 0.28);
}
.prop-amenity-group--wide {
  column-span: all;
}

/* House rules */
.prop-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prop-rule {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--cream);
  border-radius: 4px;
}
.prop-rule i {
  width: 36px;
  height: 36px;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 15px;
  flex-shrink: 0;
}
.prop-rule strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.prop-rule span {
  font-size: 12px;
  color: var(--text-mid);
}

/* Nearby / location */
.prop-location-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.prop-nearby {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prop-nearby__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
}
.prop-nearby__item i {
  width: 34px;
  height: 34px;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 14px;
  flex-shrink: 0;
}
.prop-nearby__item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.prop-nearby__item span {
  font-size: 11px;
  color: var(--text-mid);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.prop-sidebar {
  position: sticky;
  top: 100px;
}
.prop-sidebar__card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.prop-sidebar__header {
  background: var(--dark);
  padding: 28px;
}
.prop-sidebar__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.prop-sidebar__name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.prop-sidebar__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.prop-sidebar__rating i { color: var(--gold); font-size: 11px; }
.prop-sidebar__rating span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-left: 6px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.prop-sidebar__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prop-sidebar__stats--quad {
  grid-template-columns: 1fr 1fr;
}
.prop-sidebar__stats--quad .prop-sidebar__stat:nth-child(2n) { border-right: none; }
.prop-sidebar__stats--quad .prop-sidebar__stat:nth-child(-n+2) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prop-sidebar__stat {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.prop-sidebar__stat:last-child { border-right: none; }
.prop-sidebar__stats--quad .prop-sidebar__stat:last-child { border-right: none; }
.prop-sidebar__stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.prop-sidebar__stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.prop-sidebar__divider {
  height: 1px;
  background: #ebebeb;
  margin: 0;
}
.prop-sidebar__cta-text {
  padding: 20px 24px 4px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
}
.prop-sidebar__wa {
  display: flex;
  margin: 16px 24px;
  justify-content: center;
}
.prop-sidebar__form {
  padding: 0 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prop-sidebar__form .form-group label {
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.prop-sidebar__form .form-group input,
.prop-sidebar__form .form-group select,
.prop-sidebar__form .form-group textarea {
  background: var(--cream);
  border: 1px solid #e0e0e0;
  color: var(--text-dark);
  font-size: 13px;
}
.prop-sidebar__form .form-group input::placeholder { color: #aaa; }
.prop-sidebar__form .form-group input:focus,
.prop-sidebar__form .form-group select:focus,
.prop-sidebar__form .form-group textarea:focus { border-color: var(--gold); }
.prop-sidebar__form .form-group textarea {
  resize: none;
  line-height: 1.55;
  min-height: 96px;
}
.prop-sidebar__form .form-group textarea::placeholder { color: #aaa; }
.prop-sidebar__form .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream);
  -webkit-appearance: none;
  appearance: none;
}
.prop-sidebar__form .form-group select option { background: var(--white); color: var(--text-dark); }
.prop-sidebar__form .btn--gold { margin-bottom: 4px; }
.prop-sidebar__note {
  text-align: center;
  font-size: 11px;
  color: var(--gray);
  padding: 8px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   "ALSO LIKE" SECTION
   ============================================================ */
.prop-other {
  padding: 80px 0;
  background: var(--cream);
}
.prop-other .section-header { margin-bottom: 48px; }

/* ============================================================
   RESPONSIVE — PROPERTY PAGES
   ============================================================ */
@media (max-width: 1100px) {
  .prop-content__grid {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .prop-cards { grid-template-columns: 1fr; }
  .prop-card--horizontal { grid-template-columns: 1fr; }
  .prop-card--horizontal .prop-card__img-wrap { min-height: 260px; aspect-ratio: 3/2; }

  .prop-hero__content { padding: 0 24px; }
  .prop-hero__title { font-size: clamp(40px, 9vw, 64px); }

  .prop-gallery__grid { grid-template-columns: 1fr; max-height: none; }
  .prop-gallery__main { aspect-ratio: 16/9; }
  .prop-gallery__side { grid-template-columns: repeat(4, 1fr); }
  .prop-gallery__item { aspect-ratio: 1; }

  .prop-content { padding: 48px 0 64px; }
  .prop-content__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .prop-sidebar {
    position: static;
    margin-top: 48px;
  }

  .prop-amenities-full { column-count: 2; }
  .prop-rules { grid-template-columns: 1fr 1fr; }
  .prop-nearby { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .prop-hero { height: 75vh; min-height: 520px; padding-bottom: 40px; }
  .prop-hero__content { padding: 0 18px; }
  .prop-hero__stats { gap: 16px; }

  .prop-gallery__side { grid-template-columns: repeat(2, 1fr); }

  .prop-amenities-full { column-count: 1; }
  .prop-amenity-group { margin-bottom: 24px; }
  .prop-rules { grid-template-columns: 1fr; }
  .prop-nearby { grid-template-columns: 1fr; }

  .prop-section__title { font-size: 26px; }

  .prop-sidebar__form { padding: 0 16px 8px; }
  .prop-sidebar__cta-text { padding: 20px 16px 4px; }
  .prop-sidebar__wa { margin: 16px; }
  .prop-sidebar__note { padding: 8px 16px 20px; }
}
