/* =============================================
   OASIS LAURELES — Dark Editorial Luxury
   Cormorant Garamond + DM Sans
   ============================================= */

:root {
  --black:       #0d0c0b;
  --near-black:  #131210;
  --dark:        #1a1816;
  --dark-mid:    #232018;
  --stone:       #2e2b24;
  --warm-mid:    #4a4438;
  --tan:         #9a8b76;
  --sand:        #c4b49a;
  --cream:       #ede8df;
  --white:       #f8f5f0;
  --gold:        #b89460;
  --gold-light:  #d4b07a;
  --accent:      #c2955a;
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --shadow-card: 0 20px 60px rgba(0,0,0,.45);
  --shadow-img:  0 12px 48px rgba(0,0,0,.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -.01em;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  letter-spacing: -.005em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.eyebrow.light { color: var(--gold-light); }

.body-text {
  font-size: 1.05rem;
  color: var(--sand);
  max-width: 580px;
  margin-bottom: 20px;
  line-height: 1.75;
}
.body-text.light { color: rgba(237,232,223,.75); }

.feature-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  font-size: .95rem;
  color: var(--sand);
  padding-left: 22px;
  position: relative;
}
.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .8rem;
}
.feature-list.light li { color: rgba(237,232,223,.7); }
.feature-list.light li::before { color: var(--gold-light); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(184,148,96,.1); }

.btn-outline {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ---- SCROLL REVEAL ---- */
.section-terrace,
.section-split,
.section-dark-feature,
.section-details,
.section-location,
.section-faq,
.faq-item,
.detail-row,
.location-item,
.number-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,12,11,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .lang-toggle {
  padding: 6px 14px;
  border: 1px solid rgba(184,148,96,.5);
  border-radius: 999px;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .14em;
  transition: background .2s, color .2s;
}
.nav-links .lang-toggle:hover { background: var(--gold); color: var(--black); }

.lang-toggle-fixed {
  padding: 7px 16px;
  border: 1px solid rgba(184,148,96,.5);
  border-radius: 999px;
  color: var(--gold);
  font-size: .75rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-toggle-fixed:hover { background: var(--gold); color: var(--black); }
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,8,.95) 0%,
    rgba(10,9,8,.55) 40%,
    rgba(10,9,8,.15) 70%,
    rgba(10,9,8,.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 100px;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
h1 {
  color: var(--white);
  margin-bottom: 22px;
}
h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(237,232,223,.78);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-hint span {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
}

/* ---- NUMBERS ---- */
.numbers {
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
}
.number-item {
  flex: 1;
  padding: 44px 24px;
  text-align: center;
}
.number-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.number-item span {
  font-size: .82rem;
  color: var(--tan);
  letter-spacing: .05em;
}
.number-divider {
  width: 1px;
  background: rgba(255,255,255,.08);
  margin: 24px 0;
}

/* ---- SECTION TERRACE ---- */
.section-terrace {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.terrace-text .eyebrow { color: var(--gold); }
.terrace-text h2 { color: var(--white); }
.terrace-images {
  display: grid;
  gap: 16px;
}
.terrace-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.img-main img, .img-secondary img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-img);
  width: 100%;
  object-fit: cover;
}
.img-main img { height: 460px; }
.img-secondary img { height: 260px; }

/* ---- PULL QUOTE ---- */
.pull-quote {
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 80px 32px;
}
.pull-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
blockquote {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  position: relative;
}
blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold);
  opacity: .35;
  line-height: 0;
  display: block;
  margin-bottom: -20px;
}

/* ---- SECTION SPLIT ---- */
.section-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-split.reverse { direction: rtl; }
.section-split.reverse > * { direction: ltr; }
.split-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-img);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.split-text .eyebrow { color: var(--gold); }
.split-text h2 { color: var(--white); }

/* ---- DARK FEATURE SECTION ---- */
.section-dark-feature {
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.dark-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.dark-feature-text h2 { color: var(--white); }
.feature-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 30px;
}
.feature-col-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.dark-feature-images {
  display: grid;
  gap: 16px;
}
.df-img-top, .df-img-bottom {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-img);
  width: 100%;
  object-fit: cover;
}
.df-img-top { height: 340px; }
.df-img-bottom { height: 220px; }

/* ---- VIDEO PLACEHOLDER ---- */
.section-video {
  padding: 80px 32px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.section-video h2 { color: var(--white); }
.section-video .body-text { margin: 0 auto 30px; text-align: center; max-width: 520px; }
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-md);
}

/* ---- DETAILS ---- */
.section-details {
  padding: 100px 32px;
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,.06);
}
.details-inner {
  max-width: 900px;
  margin: 0 auto;
}
.details-inner h2 { color: var(--white); margin-bottom: 40px; }
.details-grid {
  display: grid;
  gap: 0;
}
.detail-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: baseline;
}
.detail-row:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.detail-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tan);
}
.detail-value {
  font-size: .98rem;
  color: var(--cream);
}
.detail-value a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(184,148,96,.3);
}
.detail-value a:hover { text-decoration-color: var(--gold); }

/* ---- LOCATION ---- */
.section-location {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.location-text h2 { color: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.location-item {
  padding: 18px;
  background: var(--stone);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.05);
}
.location-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}
.location-item span { font-size: .88rem; color: var(--tan); line-height: 1.4; }
.location-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-img);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ---- FAQ ---- */
.section-faq {
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 100px 32px;
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-inner h2 { color: var(--white); margin-bottom: 40px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-item {
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.faq-item h3 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 12px;
  cursor: default;
}
.faq-item p {
  font-size: .95rem;
  color: var(--tan);
  line-height: 1.7;
}

/* ---- CTA / CONTACT ---- */
.section-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(10,9,8,.82);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 32px;
  max-width: 700px;
}
.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ---- CONTACT FORM ---- */
.contact-form {
  margin-top: 36px;
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(237,232,223,.65);
}
.form-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(237,232,223,.4);
  font-size: .75rem;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: border-color .2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.25);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  justify-self: center;
  margin-top: 8px;
}
.btn-form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 44px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: .15em;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-note {
  font-size: .85rem;
  color: var(--tan);
  margin-bottom: 12px;
}
.footer-dev {
  font-size: .78rem;
  color: var(--warm-mid);
}
.footer-dev code {
  background: rgba(255,255,255,.05);
  padding: 1px 6px;
  border-radius: 3px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(13,12,11,.98);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-toggle { display: block; }

  .numbers-inner { flex-direction: column; }
  .number-divider { width: 100%; height: 1px; margin: 0; }

  .section-terrace,
  .section-split,
  .section-split.reverse,
  .dark-feature-inner,
  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .img-main img { height: 280px; }
  .img-secondary img { height: 200px; }
  .split-image img { height: 300px; }
  .df-img-top { height: 260px; }
  .df-img-bottom { height: 200px; }
  .location-image img { height: 280px; position: static; }

  .faq-grid { grid-template-columns: 1fr; }
  .feature-cols { grid-template-columns: 1fr; }
  .detail-row { grid-template-columns: 1fr; gap: 6px; }
  .location-grid { grid-template-columns: 1fr; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  .hero-content { padding: 0 20px 80px; }
  .section-terrace,
  .section-split,
  .section-faq,
  .section-details,
  .section-location { padding: 60px 20px; }
  .dark-feature-inner { padding: 60px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
