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

:root {
  --ink:    #0c0c0c;
  --ink2:   #161616;
  --ink3:   #1f1f1f;
  --mid:    #383838;
  --muted:  #888;
  --line:   rgba(255,255,255,0.07);
  --line2:  rgba(255,255,255,0.13);
  --accent: #e8ff47;
  --accent2:#b8d400;
  --light:  #f0efe9;
  --white:  #ffffff;
  --ff-head:"Syne", sans-serif;
  --ff-body:"Outfit", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--light);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #0f0f0f;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.top-bar a { color: var(--accent); text-decoration: none; font-weight: 500; }
.top-bar a:hover { opacity: 0.8; }
.dot   { color: var(--muted); opacity: 0.5; }
.open  { color: var(--muted); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 3%;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 6% 5rem;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--ff-head);
  font-size: clamp(8rem,18vw,18rem);
  font-weight: 800;
  white-space: nowrap;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
}
h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem,5vw,4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
h1 em { color: var(--accent); font-style: normal; }
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-fill {
  background: var(--accent);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-fill:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--line2);
  color: var(--light);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-right { position: relative; }
.hero-img {
  width: 100%; height: 520px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--ink3);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: contrast(1.08) saturate(0.9);
}
.hero-pill {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--accent);
  color: var(--ink);
  padding: 1.1rem 1.4rem;
  border-radius: 3px;
  font-family: var(--ff-head);
}
.hero-pill .big { font-size: 2rem; font-weight: 800; line-height: 1; }
.hero-pill .sm  { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.hero-live {
  position: absolute;
  top: 16px; right: -12px;
  background: var(--ink2);
  border: 1px solid var(--line2);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 3px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink2);
  padding: 1rem 0;
}
.marquee-track { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-track span {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 2.5rem;
}
.marquee-track span.hl { color: var(--accent); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SECTION BASE ─── */
section { padding: 6rem 6%; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
}
h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem,3.2vw,2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
h2 em { color: var(--accent); font-style: normal; }
.sec-sub { color: var(--muted); max-width: 500px; font-size: 0.95rem; }

/* ─── ABOUT ─── */
#about { background: var(--ink2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}
.about-img {
  height: 440px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--ink3);
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; }
.about-img-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.about-text p { color: #aaa; font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.85; }
.about-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.chip {
  border: 1px solid var(--line2);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--light);
  letter-spacing: 0.04em;
}
.chip.ac {
  background: rgba(232,255,71,0.1);
  border-color: rgba(232,255,71,0.3);
  color: var(--accent);
}

/* ─── STATS ─── */
.stats-row {
  background: var(--accent);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding: 2.8rem 6%;
}
.stt { text-align: center; }
.stt .n { font-family: var(--ff-head); font-size: 2.5rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 0.3rem; }
.stt .l { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(12,12,12,0.6); font-weight: 500; }

/* ─── AMENITIES ─── */
#amenities { background: var(--ink); }
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 3.5rem;
}
.amen-card { background: var(--ink); padding: 2rem 1.8rem; transition: background 0.25s; }
.amen-card:hover { background: var(--ink2); }
.amen-icon {
  width: 44px; height: 44px;
  border-radius: 2px;
  background: rgba(232,255,71,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.amen-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.amen-card h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.amen-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ─── WHY US ─── */
#why { background: var(--ink2); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.2s;
}
.why-item:first-child { border-top: 1px solid var(--line); }
.why-item:hover { padding-left: 0.5rem; }
.why-num { font-family: var(--ff-head); font-size: 0.7rem; font-weight: 700; color: var(--accent); min-width: 22px; padding-top: 3px; }
.why-item h4 { font-size: 0.95rem; font-weight: 500; color: var(--white); margin-bottom: 0.2rem; }
.why-item p  { font-size: 0.82rem; color: var(--muted); }
.why-visual {
  height: 460px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--ink3);
  position: relative;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; }
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.55) 0%, transparent 55%);
}

/* ─── GALLERY ─── */
#gallery { background: var(--ink); padding-bottom: 0; }
.gal-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 3px;
}
.g { overflow: hidden; position: relative; background: var(--ink3); }
.g:first-child { grid-row: 1/3; }
.g img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s, opacity 0.4s;
  opacity: 0.72;
}
.g:hover img { transform: scale(1.05); opacity: 0.92; }
.g-lbl {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.5);
  padding: 3px 9px;
  border-radius: 2px;
}

/* ─── LOCATION ─── */
#location { background: var(--ink2); }
.loc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.ci { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 2px;
  background: rgba(232,255,71,0.08);
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.ci h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.2rem; }
.ci p  { font-size: 0.88rem; color: var(--light); line-height: 1.5; }
.ci a  { color: var(--accent); text-decoration: none; font-size: 0.88rem; }
.ci a:hover { opacity: 0.8; }
.map-box {
  height: 360px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line2);
  background: var(--ink3);
}
.map-box iframe {
  width: 100%; height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(185deg) contrast(0.82) saturate(0.9);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--ink);
  text-align: center;
  overflow: hidden;
  /* highlighted box */
  margin: 0 4%;
  border: 1px solid rgba(232,255,71,0.22);
  border-radius: 4px;
  box-shadow: 0 0 48px rgba(232,255,71,0.05);
  padding: 5rem 5%;
}
.testimonials .eyebrow { justify-content: center; }
.testimonials h2 { margin-bottom: 0; }

.testimonial-slider {
  max-width: 780px;
  margin: 3.5rem auto 0;
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--ink2);
  border: 1px solid var(--line2);
  border-radius: 3px;
  padding: 2.5rem 2.8rem;
  text-align: left;
  box-sizing: border-box;
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.85;
  color: #aaa;
  margin-bottom: 1.8rem;
  font-style: italic;
  font-family: var(--ff-body);
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 2px;
  background: rgba(232,255,71,0.12);
  border: 1px solid rgba(232,255,71,0.3);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--white); font-family: var(--ff-head); font-weight: 600; }
.testimonial-author span  { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 2rem; }
.t-btn {
  width: 38px; height: 38px;
  border-radius: 2px;
  border: 1px solid var(--line2);
  background: transparent;
  color: var(--light);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.t-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mid);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.t-dot.active { background: var(--accent); transform: scale(1.4); }

/* ─── CTA / FORM ─── */
#cta {
  background: var(--ink);
  padding: 5.5rem 6%;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form-box {
  background: var(--ink2);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--line2);
}
.contact-form-box h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
}
.contact-form-box form { display: flex; flex-direction: column; gap: 14px; }
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  padding: 13px 16px;
  background: var(--ink3);
  border: 1px solid var(--line2);
  border-radius: 3px;
  font-size: 0.9rem;
  color: var(--light);
  font-family: var(--ff-body);
  transition: border-color 0.2s;
  outline: none;
}
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder { color: var(--muted); }
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus { border-color: rgba(232,255,71,0.4); }
.contact-form-box select option { background: var(--ink3); color: var(--light); }
.contact-form-box button { width: fit-content; }

.cta-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-content h2 em { color: var(--accent); font-style: normal; }
.cta-content p { color: var(--muted); margin-bottom: 30px; max-width: 420px; font-size: 0.95rem; }

.btn-dark {
  background: var(--accent);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  border-radius: 2px;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.82; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 2.5rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.f-logo { font-family: var(--ff-head); font-size: 1.1rem; color: var(--white); text-decoration: none; font-weight: 800; }
.f-logo span { color: var(--accent); }
.f-links { display: flex; gap: 1.4rem; list-style: none; flex-wrap: wrap; }
.f-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: var(--accent); }
.f-copy { font-size: 0.73rem; color: var(--mid); }

/* ─── FADE-IN ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:none} }
.fu { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.fu:nth-child(1) { animation-delay: 0.08s; }
.fu:nth-child(2) { animation-delay: 0.20s; }
.fu:nth-child(3) { animation-delay: 0.34s; }
.fu:nth-child(4) { animation-delay: 0.48s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { gap: 0.9rem; }
  .nav-links a { font-size: 0.68rem; }
}

@media (max-width: 860px) {
  /* Show hamburger, hide links by default */
  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: calc(38px + 56px);
    left: 0; right: 0;
    background: rgba(12,12,12,0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem 6%;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; padding: 0.3rem 0; }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }
  .hero-img  { height: 300px; }
  .hero-pill { bottom: -14px; left: 10px; }
  .hero-live { right: 10px; }

  /* Grids */
  .about-grid,
  .why-layout,
  .loc-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img, .why-visual { height: 280px; }
  .amen-grid  { grid-template-columns: 1fr; }
  .stats-row  { grid-template-columns: repeat(2,1fr); gap: 1.5rem 0; }
  .gal-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g:first-child { grid-row: auto; }
  .map-box    { height: 250px; }

  /* Testimonials */
  .testimonials { margin: 0 2%; padding: 4rem 4%; }
  .testimonial-card { padding: 1.8rem; }

  /* CTA */
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-box { padding: 28px; }
  .cta-content { text-align: center; }
  .cta-content p { margin: 0 auto 30px; }

  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .testimonials { margin: 0; border-radius: 0; border-left: none; border-right: none; }
  .top-bar-content { font-size: 0.7rem; gap: 0.6rem; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
