/* ============================================================
   ReadyHaus — Main Stylesheet
   readyhaus.top
   ============================================================ */

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

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --charcoal: #1c1c1a;
  --dark: #111110;
  --gold: #b89a6a;
  --gold-light: #d4b896;
  --stone: #8a8278;
  --stone-light: #c8c0b4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ─────────────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,154,106,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.4s cubic-bezier(.23,1,.32,1), opacity 0.3s;
  transform: translate(-50%,-50%);
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.6s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(17,17,16,0.92);
  backdrop-filter: blur(18px);
  padding: 18px 52px;
  border-bottom: 1px solid rgba(184,154,106,0.15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.7rem; font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream); text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 42px; list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone-light); text-decoration: none;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 20px; }

/* Language Toggle */
.lang-toggle {
  display: flex; align-items: center;
  border: 1px solid rgba(184,154,106,0.3);
  overflow: hidden;
}
.lang-btn {
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500;
  padding: 8px 14px;
  background: transparent; color: var(--stone);
  border: none; cursor: none;
  transition: background 0.3s, color 0.3s;
}
.lang-btn.active {
  background: var(--gold); color: var(--dark);
}
.lang-btn:hover:not(.active) { color: var(--cream); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,154,106,0.5);
  padding: 10px 24px; text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  height: 100vh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 52px 80px;
  background: linear-gradient(135deg, #111110 0%, #1a1915 100%);
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.01em;
  color: var(--cream); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 0.85rem; line-height: 1.8;
  color: var(--stone-light); max-width: 340px; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
}

/* Buttons */
.btn-primary {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 14px 32px; text-decoration: none; font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone-light); text-decoration: none;
  display: flex; align-items: center; gap: 10px; transition: color 0.3s;
}
.btn-ghost:hover { color: var(--cream); }
.btn-ghost::after { content: '→'; font-size: 1rem; }
.btn-dark {
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  background: var(--dark); color: var(--gold);
  padding: 16px 36px; text-decoration: none; white-space: nowrap;
  transition: background 0.3s;
}
.btn-dark:hover { background: var(--charcoal); }

.hero-right { position: relative; overflow: hidden; }
.hero-img-wrap { width: 100%; height: 100%; position: relative; }
.hero-img {
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(17,17,16,0.3) 0%, transparent 30%, rgba(17,17,16,0.5) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: zoomOut 8s ease forwards;
}
.hero-stats {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(184,154,106,0.15);
  border-top: 1px solid rgba(184,154,106,0.2); z-index: 2;
}
.stat-item {
  background: rgba(17,17,16,0.85);
  backdrop-filter: blur(10px);
  padding: 20px 24px; text-align: center;
}
.stat-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--gold); display: block;
}
.stat-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }

.hero-scroll {
  position: absolute; bottom: 48px; left: 52px;
  display: flex; align-items: center; gap: 14px; z-index: 3;
  opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
}
.scroll-line {
  width: 40px; height: 1px; background: var(--gold);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--cream);
  animation: scrollLine 2s ease-in-out infinite;
}
.scroll-text { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--stone); }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-bar { background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 18s linear infinite; }
.marquee-inner span { font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dark); padding: 0 40px; }
.marquee-inner span.dot { letter-spacing: 0; padding: 0; opacity: 0.5; }

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding: 120px 52px; }
.section-label {
  font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.12; color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text { padding-right: 40px; }
.about-body { font-size: 0.9rem; line-height: 1.9; color: var(--stone-light); margin: 32px 0 40px; }
.about-image-wrap { position: relative; }
.about-img {
  width: 100%; height: 520px; object-fit: cover; display: block;
  background: url('../images/about.jpg') center/cover;
}
.about-accent {
  position: absolute; bottom: -24px; left: -24px;
  width: 140px; height: 140px;
  border: 1px solid rgba(184,154,106,0.3); z-index: -1;
}
.about-badge {
  position: absolute; top: 32px; right: -32px;
  background: var(--charcoal);
  border: 1px solid rgba(184,154,106,0.2);
  padding: 24px 28px; text-align: center;
}
.badge-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: var(--gold); display: block; }
.badge-text { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); max-width: 80px; margin-top: 4px; }

/* ── PROPERTIES ──────────────────────────────────────────── */
.properties { background: var(--charcoal); }
.props-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.prop-card { position: relative; overflow: hidden; cursor: none; }
.prop-card:first-child { grid-row: span 2; }
.prop-img {
  width: 100%; height: 340px; display: block;
  background-size: cover; background-position: center;
  transition: transform 0.7s cubic-bezier(.23,1,.32,1);
}
.prop-card:first-child .prop-img { height: 100%; min-height: 680px; }
.prop-card:hover .prop-img { transform: scale(1.07); }
.prop-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,0.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}
.prop-tag {
  font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); background: rgba(184,154,106,0.12);
  border: 1px solid rgba(184,154,106,0.3);
  display: inline-block; padding: 5px 12px; margin-bottom: 12px; width: fit-content;
}
.prop-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--cream); margin-bottom: 6px; }
.prop-location { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--stone-light); margin-bottom: 16px; }
.prop-price { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-light); }
.prop-details { display: flex; gap: 20px; margin-top: 10px; }
.prop-detail { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--stone); display: flex; align-items: center; gap: 5px; }

/* ── FEATURE ─────────────────────────────────────────────── */
.feature { background: var(--dark); display: grid; grid-template-columns: 5fr 4fr; min-height: 80vh; overflow: hidden; }
.feature-img {
  background: url('../images/feature.jpg') center/cover;
  position: relative;
}
.feature-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(17,17,16,0.3)); }
.feature-content { background: var(--charcoal); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.feature-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,154,106,0.3);
  padding: 8px 16px; margin-bottom: 32px; width: fit-content;
}
.feature-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.feature-title { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 16px; }
.feature-loc { font-size: 0.75rem; letter-spacing: 0.15em; color: var(--stone-light); margin-bottom: 32px; }
.feature-price-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.feature-price { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--gold); margin-bottom: 36px; }
.feature-specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(184,154,106,0.1); margin-bottom: 40px;
}
.spec-item { background: rgba(17,17,16,0.5); padding: 20px 16px; text-align: center; }
.spec-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--cream); display: block; }
.spec-key { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }
.feature-desc { font-size: 0.85rem; line-height: 1.9; color: var(--stone-light); margin-bottom: 40px; }

/* ── SERVICES ────────────────────────────────────────────── */
.services { background: var(--warm-white); }
.services .section-label { color: var(--charcoal); }
.services .section-label::before { background: var(--charcoal); }
.services .section-title { color: var(--charcoal); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; }
.service-card {
  background: var(--cream); padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s; position: relative;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: rgba(184,154,106,0.2); margin-bottom: 16px; }
.service-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin-bottom: 14px; }
.service-desc { font-size: 0.8rem; line-height: 1.8; color: var(--stone); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--dark); text-align: center; }
.testimonials .section-label { justify-content: center; }
.testimonials .section-label::before { display: none; }
.testimonials .section-label::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.testi-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(184,154,106,0.1);
  padding: 48px 36px; text-align: left;
  transition: border-color 0.4s, background 0.4s;
}
.testi-card:hover { border-color: rgba(184,154,106,0.4); background: rgba(184,154,106,0.05); }
.testi-quote { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 0.5; margin-bottom: 20px; }
.testi-text { font-family: var(--serif); font-size: 1.05rem; font-style: italic; font-weight: 300; line-height: 1.7; color: var(--cream); margin-bottom: 28px; }
.testi-divider { width: 32px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.testi-name { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
.testi-role { font-size: 0.68rem; color: var(--stone); margin-top: 4px; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--gold); padding: 100px 52px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 60px;
}
.cta-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; color: var(--dark); line-height: 1.15; }
.cta-sub { font-size: 0.85rem; color: rgba(17,17,16,0.65); margin-top: 12px; max-width: 420px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--dark); border-top: 1px solid rgba(184,154,106,0.1); padding: 80px 52px 48px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 64px; }
.footer-brand .nav-logo { display: block; margin-bottom: 20px; }
.footer-tagline { font-size: 0.82rem; line-height: 1.8; color: var(--stone); max-width: 240px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(184,154,106,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone); font-size: 0.7rem; text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.8rem; color: var(--stone); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(184,154,106,0.08); }
.footer-copy { font-size: 0.68rem; color: var(--stone); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 0.68rem; color: var(--stone); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomOut { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollLine { 0% { left: -100%; } 100% { left: 100%; } }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 24px 28px; }
  nav.scrolled { padding: 16px 28px; }
  .nav-links { gap: 24px; }
  section { padding: 80px 28px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 140px 28px 80px; background: linear-gradient(to bottom, rgba(17,17,16,0.85), rgba(17,17,16,0.95)), url('../images/hero.jpg') center/cover; }
  .hero-right { display: none; }
  .hero-stats { position: relative; bottom: auto; margin-top: 40px; }
  .hero-scroll { left: 28px; }
  .about { grid-template-columns: 1fr; }
  .about-text { padding-right: 0; }
  .about-badge { right: 0; }
  .props-grid { grid-template-columns: 1fr 1fr; }
  .prop-card:first-child { grid-row: span 1; }
  .prop-card:first-child .prop-img { min-height: 340px; }
  .feature { grid-template-columns: 1fr; }
  .feature-img { height: 400px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .props-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
