/* ============================================
   THE SOFT LIFE — Full Redesign
   ============================================ */

:root {
  --bg:             #0B0B0F;
  --bg-warm:        #100F0D;
  --bg-card:        #16150F;
  --bg-card-hover:  #1C1B14;
  --text:           #F0E6D3;
  --text-dim:       #9A9080;
  --text-muted:     #5A5347;
  --accent:         #C5A467;
  --accent-light:   #D4B87D;
  --accent-dark:    #8B7344;
  --border:         #1F1E18;
  --border-light:   #2A2822;

  --font-serif:  'Cormorant Garamond', 'Georgia', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- Reset ---- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; border: none; outline: none; background: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Loader ---- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loader-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--accent);
  opacity: 0;
}

/* ---- Nav ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(11, 11, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-brand {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 10px 24px;
  border: 1px solid var(--accent-dark);
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ---- Hero ---- */

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  transform: scale(1.15);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,11,15,0.3) 0%, rgba(11,11,15,0.1) 40%, rgba(11,11,15,0.6) 75%, var(--bg) 100%),
    linear-gradient(to right, rgba(11,11,15,0.5) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 1000px;
}

.hero-overline {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.hero-rule {
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--accent);
  padding: 16px 36px;
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px) !important;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 64px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---- Intro ---- */

.intro {
  padding: 160px 0 180px;
  background: var(--bg);
}

.intro-text {
  max-width: 720px;
}

.intro-lead {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 48px;
}

.intro-body p {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* ---- Reveal animation initial state ---- */

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

/* ---- Feature Sections ---- */

.feature {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feature-image {
  transform: scale(1.1);
  will-change: transform;
}

.feature-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
}

.feature--room .feature-content {
  background: linear-gradient(to right, rgba(11,11,15,0.92) 0%, rgba(11,11,15,0.7) 50%, transparent 100%);
}

.feature--service .feature-content {
  background: linear-gradient(to left, rgba(11,11,15,0.92) 0%, rgba(11,11,15,0.7) 50%, transparent 100%);
}

.feature--service .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.feature-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  max-width: 600px;
}

.feature-desc {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 500px;
}

.feature-desc--secondary {
  margin-top: 20px;
  color: var(--text-dim);
  font-style: italic;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* ---- Journey Steps ---- */

.journey {
  padding: 140px 0 120px;
  background: var(--bg);
}

.section-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 64px;
}

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

.journey-step {
  padding: 48px 36px;
  border-left: 1px solid var(--border);
  transition: background 0.4s var(--ease-out);
}

.journey-step:hover {
  background: var(--bg-card);
}

.step-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent-dark);
  margin-bottom: 28px;
}

.journey-step h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 18px;
}

.journey-step p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ---- Image Break ---- */

.image-break {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.image-break-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.image-break-img {
  transform: scale(1.1);
  will-change: transform;
}

.image-break-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(11, 11, 15, 0.55);
}

.image-break-quote {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* ---- Numbers / Advantage ---- */

.numbers {
  padding: 140px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.numbers-label {
  text-align: center;
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 72px;
}

.number-block {
  padding: 0 48px;
  text-align: center;
}

.number-head {
  margin-bottom: 16px;
}

.number-value {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.number-unit {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--accent);
  vertical-align: super;
  margin-left: 4px;
}

.number-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.number-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 360px;
  margin: 0 auto;
}

.numbers-rule {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--accent-dark), transparent);
  align-self: center;
}

.numbers-closer {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 80px;
  letter-spacing: 0.02em;
}

/* ---- FAQ ---- */

.faq {
  padding: 120px 0;
  background: var(--bg);
}

.faq-label {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease-out);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-dark);
  transition: transform 0.4s var(--ease-out);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
  padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 28px 0;
}

.faq-answer p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 600px;
}

/* ---- Waitlist ---- */

.waitlist {
  position: relative;
  padding: 180px 0 200px;
  text-align: center;
  overflow: hidden;
}

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

.waitlist-bg-img {
  opacity: 0.25;
}

.waitlist-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg), rgba(11,11,15,0.5) 50%, var(--bg));
}

.waitlist-inner {
  position: relative;
  z-index: 2;
}

.waitlist-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
}

.waitlist-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 56px;
}

.waitlist-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out);
  background: rgba(11, 11, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-row:focus-within {
  border-color: var(--accent-dark);
}

.form-row input {
  flex: 1;
  padding: 18px 28px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  min-width: 0;
}

.form-row input::placeholder {
  color: var(--text-muted);
}

.form-row button {
  padding: 18px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--accent);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease-out);
  position: relative;
}

.form-row button:hover {
  background: var(--accent-light);
}

.form-row button .btn-spinner { display: none; }

.form-row button.loading .btn-text { visibility: hidden; }

.form-row button.loading .btn-spinner {
  display: flex;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.waitlist-success {
  max-width: 400px;
  margin: 0 auto;
}

.success-check {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.2rem;
}

.success-heading {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.success-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
}

/* ---- Footer ---- */

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text-muted);
}

.footer-center {
  font-size: 0.72rem;
}

.footer-link {
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease-out);
}

.footer-link:hover {
  color: var(--accent);
}

.footer-right {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .hero-content {
    padding: 0 40px;
  }

  .hero-scroll-hint {
    left: 40px;
  }

  .feature--room .feature-content,
  .feature--service .feature-content {
    background: rgba(11, 11, 15, 0.8);
  }

  .feature--service .container {
    align-items: flex-start;
    text-align: left;
  }

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

  .journey-step {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    padding: 16px 20px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-scroll-hint {
    left: 24px;
    bottom: 28px;
  }

  .intro {
    padding: 100px 0 120px;
  }

  .feature {
    min-height: 70vh;
  }

  .journey {
    padding: 100px 0 80px;
  }

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

  .journey-step {
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
  }

  .image-break {
    height: 60vh;
  }

  .numbers {
    padding: 80px 0;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .numbers-rule {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-dark), transparent);
    margin: 48px auto;
  }

  .number-block {
    padding: 0;
  }

  .numbers-closer {
    margin-top: 56px;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-question {
    padding: 24px 0;
  }

  .waitlist {
    padding: 120px 0 140px;
  }

  .form-row {
    flex-direction: column;
    border-radius: 16px;
  }

  .form-row input {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .form-row button {
    padding: 18px 20px;
    border-radius: 0 0 15px 15px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }

  .intro-lead {
    font-size: 1.8rem;
  }
}
