/* ══════════════════════════════════════════════════
   MONOLITH RESIDENCES — PAGES
   Inner page components (Wellstream, Concierge, Contact)
   ══════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   INNER PAGE HERO  (Wellstream video hero)
   ══════════════════════════════════════ */
.section-ws-hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
}

.ws-hero-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ws-hero-label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ws-logo-circle {
  background-image: url("https://cdn.prod.website-files.com/69b7b31e10b7d22df7704a7e/69b8fdc1fdcd2a0386c06c57_wellstream%20logo%20circle.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25vw;
  max-width: 320px;
  min-width: 200px;
  height: 10vw;
  min-height: 80px;
}

/* ══════════════════════════════════════
   CONCIERGE HERO
   ══════════════════════════════════════ */
.section-concierge-hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
}

.concierge-hero-wrap {
  width: 100%;
  height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.concierge-hero-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.concierge-hero-label .subtitle {
  margin-bottom: 0;
}

.concierge-hero-label .paragraph-heading {
  margin: 0;
}

.concierge-hero-body {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--text-soft);
  max-width: 420px;
  line-height: 1.6;
  margin: 0;
}

.concierge-arrow-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

/* ══════════════════════════════════════
   ABOUT WELLSTREAM  (statement)
   ══════════════════════════════════════ */
.section-ws-statement {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.section-ws-statement .stacked-content { max-width: 900px; text-align: center; }
.section-ws-statement .subtitle { margin-bottom: 28px; }

/* ══════════════════════════════════════
   GALLERY SLIDER  (5 images)
   ══════════════════════════════════════ */
.gallery-section {
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.gallery-viewport {
  overflow: hidden;
  position: relative;
  height: 70vh;
  min-height: 400px;
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-arrows {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 4;
  display: flex;
  gap: 12px;
}

.gallery-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(4,9,12,0.4);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.gallery-arrow:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(4,9,12,0.7);
}
.gallery-arrow img { width: 24px; height: 24px; }

.gallery-counter {
  position: absolute;
  bottom: 48px;
  left: 40px;
  z-index: 4;
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.55);
}

/* ══════════════════════════════════════
   EXP-SLIDER  (Amenities / Concierge Services)
   ══════════════════════════════════════ */
.exp-section {
  background: var(--bg);
  padding: 100px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.exp-header {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1380px;
  margin: 0 auto 52px;
  padding: 0 60px;
}

.exp-header-left { flex: 0 0 300px; }
.exp-header-right { flex: 1; max-width: 500px; }

.exp-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.exp-tag {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
}

.exp-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.exp-track {
  display: flex;
  gap: 2.5rem;
  padding: 0 60px 0;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.exp-card {
  flex: 0 0 20rem;
  aspect-ratio: 320 / 465;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.exp-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

.exp-card-title {
  position: absolute;
  bottom: 1.3rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.exp-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 60px 40px;
}

.exp-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  background: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.exp-nav-btn:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
}

/* ══════════════════════════════════════
   PRIME LOCATION  (benefits cards)
   ══════════════════════════════════════ */
.benefits-section {
  background: var(--bg);
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.benefits-intro {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 52px;
}

.benefits-intro-left { flex: 0 0 300px; }
.benefits-intro-right { flex: 1; max-width: 500px; }

.benefits-intro h2 {
  font-family: var(--ff-head);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}

.benefits-intro .subtitle.reveal { transition-delay: 0s; }
.benefits-intro h2.reveal      { transition-delay: 120ms; }
.benefits-intro .body-display.reveal { transition-delay: 240ms; }

.benefits-flex {
  display: flex;
  gap: 4px;
  min-height: 28rem;
}

.benefit-card {
  flex: 1;
  min-height: 28rem;
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: flex 0.35s cubic-bezier(0.16,1,0.3,1);
  color: #fff;
}
.benefit-card:hover { flex: 1.9; }
.benefit-card.reveal:nth-child(2) { transition-delay: 80ms; }
.benefit-card.reveal:nth-child(3) { transition-delay: 160ms; }
.benefit-card.reveal:nth-child(4) { transition-delay: 240ms; }
.benefit-card.reveal:nth-child(5) { transition-delay: 320ms; }
.benefit-card.reveal:nth-child(6) { transition-delay: 400ms; }

.benefit-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.benefit-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%);
}

.benefit-card-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.benefit-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.benefit-card-bottom { }

.benefit-card-title {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.benefit-card-text {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.benefit-card:hover .benefit-card-text {
  max-height: 6rem;
  opacity: 1;
}

/* ══════════════════════════════════════
   LOCATION SECTION  (map slider)
   ══════════════════════════════════════ */
.location-section {
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.location-left {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-subtitle {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.location-nav-items { display: flex; flex-direction: column; }

.location-nav-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.3s ease, padding-left 0.3s ease;
  border-radius: 4px;
  padding-left: 0;
}
.location-nav-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.location-nav-item:hover { padding-left: 8px; }

.location-nav-num {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
  text-align: center;
}

.location-nav-text {
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.location-nav-item.active {
  background: rgba(255,255,255,0.05);
  padding-left: 8px;
}
.location-nav-item.active .location-nav-num,
.location-nav-item.active .location-nav-text { color: #fff; }

.location-content {
  margin-top: 48px;
  flex: 1;
}

.location-slide-content { display: none; }
.location-slide-content.active { display: block; }

.location-heading {
  font-family: var(--ff-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1.2rem;
}

.location-desc {
  font-family: var(--ff-body);
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 380px;
}

.location-right {
  display: grid;
  overflow: hidden;
  min-height: 600px;
  padding-left: 5vw;
  background: var(--bg-mid);
}

.location-map-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.location-map-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.location-map-slide img,
.location-map-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* ══════════════════════════════════════
   PROPERTY LAYOUT  (1:3 split, full viewport)
   ══════════════════════════════════════ */
.section-property {
  background: var(--bg);
  height: 100vh;
}

.property-row {
  display: flex;
  height: 100%;
}

.property-visual {
  flex: 0 0 33%;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8vh 0 8vh 5vw;
}

.property-visual video {
  width: 154%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -54%;
}

.property-info-col {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 3vh 60px 3vh 0;
}

.property-info-col.reveal-right {
  transition-duration: 1.5s;
  transition-delay: 0.15s;
}

.property-info-col img {
  width: 100%;
  height: auto;
  display: block;
}


/* ══════════════════════════════════════
   CONTACT PAGE  (split: form left, photo right)
   ══════════════════════════════════════ */
.cp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.cp-left {
  position: relative;
  z-index: 2;
  width: 50%;
  display: flex;
  align-items: center;
  padding: 140px 5vw 100px calc(max(5vw, (100vw - 1400px) / 2));
}
.cp-inner {
  width: 100%;
  max-width: 675px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.cp-title {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cp-title .heading-large {
  font-size: clamp(38px, 4.5vw, 72px);
}
.cp-intro { max-width: 500px; }

.cp-form-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.cp-field-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.cp-field-label { margin-bottom: 0; }

.cp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cp-input {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  min-height: 60px;
  padding: 0 18px;
  outline: none;
  border-radius: 0;
  width: 100%;
  transition: border-color 0.2s ease, padding-left 0.2s ease;
}
.cp-input:focus {
  border-color: rgba(239,249,252,0.6);
  padding-left: 26px;
}
.cp-input::placeholder {
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}
.cp-textarea {
  min-height: 160px;
  padding-top: 18px;
  padding-bottom: 18px;
  resize: none;
  line-height: 1.6;
}

.cp-submit {
  margin-top: 32px;
  align-self: flex-start;
  display: inline-block;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px 32px;
  transition: border-color 0.25s ease;
}
.cp-submit:hover { border-color: rgba(239,249,252,0.9); }

.cp-success {
  display: none;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--bg-mid);
  padding: 28px 32px;
  margin-top: 24px;
}
.cp-success h3 {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.cp-success div {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(239,249,252,0.65);
}

.cp-error {
  display: none;
  border: 1px solid rgba(200,80,80,0.25);
  padding: 16px 20px;
  margin-top: 16px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(239,120,120,0.9);
}

.cp-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  z-index: 1;
  background-image: url('../assets/images/contact/hero/contact-bg-right.jpg');
  background-size: cover;
  background-position: 0% 0;
  overflow: hidden;
  animation: cpPan 40s ease-in-out infinite alternate;
}
@keyframes cpPan {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}
.cp-photo-overlay {
  position: absolute;
  inset: 0;
  background-color: #04060a8f;
}

/* ══════════════════════════════════════
   RESPONSIVE — inner pages
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .exp-header { flex-direction: column; gap: 30px; }
  .exp-header-left { flex: none; }
  .benefits-intro { flex-direction: column; gap: 30px; }
  .benefits-intro-left { flex: none; }
  .location-grid { grid-template-columns: 1fr; }
  .location-right { height: 50vw; min-height: 300px; padding-left: 0; }

}

@media (max-width: 768px) {
  .section-ws-hero {
    height: 78svh;
    min-height: 560px;
  }

  .ws-hero-label {
    bottom: 28px;
    gap: 10px;
    width: calc(100% - 48px);
    text-align: center;
  }

  .ws-logo-circle {
    width: 58vw;
    min-width: 180px;
    max-width: 260px;
    height: 22vw;
    min-height: 70px;
  }

  .section-ws-statement {
    min-height: auto;
    padding: 120px 0;
  }

  .section-ws-statement .paragraph-heading {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.2;
  }

  .gallery-viewport {
    height: 68vh;
    min-height: 420px;
  }

  .gallery-slide img {
    object-position: center;
  }

  .exp-section { padding: 80px 0 0; }
  .exp-header { padding: 0 24px; margin-bottom: 36px; }
  .exp-track { padding: 0 24px; }
  .exp-nav { padding: 0 24px 32px; }
  .exp-card { flex: 0 0 16rem; }
  .benefits-section { padding: 80px 0; }
  .benefits-intro {
    margin-bottom: 36px;
  }

  .benefits-intro h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .benefits-intro .body-display {
    font-size: 15px;
    line-height: 1.65;
  }

  .benefits-flex {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }

  .benefit-card {
    min-height: 360px;
    padding: 18px;
  }

  .benefit-card:hover {
    flex: 1;
  }

  .benefit-card-text {
    max-height: none;
    opacity: 1;
  }

  .location-right {
    height: min(125vw, 620px);
    min-height: 430px;
    padding: 12px;
  }

  .location-left { padding: 32px 24px 56px; }
  .location-subtitle {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.26em;
  }

  .location-nav-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .location-nav-item {
    grid-template-columns: 24px 1fr;
    gap: 8px;
    padding: 10px 8px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .location-nav-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .location-nav-item:hover,
  .location-nav-item.active {
    padding-left: 8px;
  }

  .location-nav-num {
    font-size: 10px;
  }

  .location-nav-text {
    font-size: 12px;
    line-height: 1.25;
  }

  .location-content { margin-top: 26px; }
  .location-heading {
    font-size: clamp(30px, 9vw, 40px);
    margin-bottom: 0.85rem;
  }

  .location-desc {
    max-width: none;
    font-size: 13px;
    line-height: 1.55;
  }

  .section-property {
    height: auto;
  }

  .property-row {
    flex-direction: column;
    height: auto;
  }

  .property-visual {
    flex: none;
    width: 100%;
    padding: 56px 24px 16px;
  }

  .property-visual video {
    width: 130%;
    max-width: none;
    margin-left: -30%;
  }

  .property-info-col {
    padding: 16px 24px 56px;
  }

  .property-info-col.reveal-right {
    transform: translateY(28px);
  }

  .property-info-col.reveal-right.visible {
    transform: translateY(0);
  }

  .section-contact-inner { padding: 120px 0; }

  .gallery-arrows { bottom: 20px; right: 20px; }
  .gallery-counter { bottom: 28px; left: 20px; }

  .concierge-hero-label { bottom: 30px; gap: 8px; }
  .concierge-hero-body { font-size: 13px; max-width: 280px; }
  .concierge-hero-label .paragraph-heading { font-size: clamp(24px, 6vw, 36px); }
}

@media (max-width: 480px) {
  .exp-card { flex: 0 0 14rem; }
  .location-right {
    height: 125vw;
    min-height: 390px;
    padding: 10px;
  }

  .location-heading { font-size: 32px; }

  .location-left {
    padding-left: 20px;
    padding-right: 20px;
  }

  .location-nav-items {
    gap: 6px;
  }

  .location-nav-item {
    grid-template-columns: 22px 1fr;
    gap: 6px;
    padding: 9px 6px;
  }

  .location-nav-text {
    font-size: 11px;
  }

  .gallery-viewport {
    height: 62vh;
    min-height: 360px;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
  }

  .benefit-card {
    min-height: 330px;
  }
}

/* ── Contact page responsive ── */
@media (max-width: 991px) {
  .cp-hero      { flex-direction: column; min-height: auto; }
  .cp-left      { width: 100%; padding: 140px 40px 80px; }
  .cp-photo     { position: relative; inset: auto; width: 100%; min-height: 500px; }
  .cp-inner     { max-width: 100%; }
}
@media (max-width: 768px) {
  .cp-left      { padding: 120px 24px 80px; }
  .cp-field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cp-title .heading-large { font-size: 34px; }
}
