@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --white: #F9F6F1;
  --text-muted: #888;
  --text-light: #CCCCCC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Outfit", sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: all 0.3s ease;
}
.nav-logo { font-family: "Cormorant Garamond", serif; font-size: 1.7rem; font-weight: 600; letter-spacing: 0.04em; color: var(--gold); text-decoration: none; }
.nav-logo span { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 0.55rem 1.4rem; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--gold); color: var(--dark); padding: 0.9rem 2rem; font-family: "Outfit", sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: all 0.25s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; color: var(--white); padding: 0.9rem 2rem; font-family: "Outfit", sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(249,246,241,0.3); transition: all 0.25s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== HERO ===== */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(13,13,13,0.93) 38%, rgba(13,13,13,0.35) 100%),
    url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1800&q=80") center/cover no-repeat;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
.hero-content { position: relative; z-index: 2; padding: 0 4rem; max-width: 700px; animation: fadeUp 1s ease 0.3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
.hero-eyebrow::before { content: ""; display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.hero h1 { font-family: "Cormorant Garamond", serif; font-size: clamp(3.2rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.05; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.05rem; font-weight: 300; line-height: 1.75; color: var(--text-light); margin-bottom: 2.5rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 3rem; right: 4rem; display: flex; gap: 3rem; z-index: 2; animation: fadeUp 1s ease 0.6s both; }
.stat { text-align: center; }
.stat-num { font-family: "Cormorant Garamond", serif; font-size: 2.8rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

/* ===== SHARED SECTION ===== */
section { padding: 7rem 4rem; }
.section-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; }
.section-subtitle { font-size: 0.95rem; font-weight: 300; color: var(--text-light); line-height: 1.8; max-width: 560px; }
.divider { width: 50px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

/* ===== ABOUT ===== */
.about { background: var(--dark-2); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; padding: 7rem 4rem; }
.about-image-wrap { position: relative; }
.about-image-wrap::before { content: ""; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px; border: 1px solid rgba(201,169,110,0.3); z-index: 0; }
.about-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; position: relative; z-index: 1; }
.about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 2; background: var(--gold); color: var(--dark); padding: 1.5rem; text-align: center; width: 105px; height: 105px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.about-badge strong { font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.about-feature { display: flex; align-items: flex-start; gap: 0.8rem; padding: 1rem; border: 1px solid rgba(201,169,110,0.15); transition: border-color 0.2s; }
.about-feature:hover { border-color: rgba(201,169,110,0.4); }
.about-feature-icon { width: 32px; height: 32px; background: rgba(201,169,110,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.about-feature-text { font-size: 0.82rem; font-weight: 500; color: var(--text-light); line-height: 1.4; }

/* ===== DESK QUOTE SECTION ===== */
.desk-section { padding: 0; height: 520px; position: relative; overflow: hidden; display: flex; align-items: center; }
.desk-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: brightness(0.45); }
.desk-overlay { position: relative; z-index: 2; padding: 0 4rem; max-width: 650px; }
.desk-overlay blockquote { font-family: "Cormorant Garamond", serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; font-style: italic; line-height: 1.4; color: var(--white); margin-bottom: 1.5rem; }
.desk-overlay cite { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ===== SERVICES ===== */
.services { background: var(--dark); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 2rem; }
.services-header p { font-size: 0.85rem; color: var(--text-muted); max-width: 320px; text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(201,169,110,0.1); }
.service-card { background: var(--dark-2); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: all 0.3s; cursor: pointer; }
.service-card::before { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark-3); }
.service-number { font-family: "Cormorant Garamond", serif; font-size: 4rem; font-weight: 300; color: rgba(201,169,110,0.12); line-height: 1; margin-bottom: 1.5rem; }
.service-icon { font-size: 1.8rem; margin-bottom: 1.2rem; }
.service-title { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 1rem; }
.service-desc { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 0.6rem; }
.service-list li::before { content: "–"; color: var(--gold); font-weight: 600; }
.service-link { display: inline-block; margin-top: 2rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.4); padding-bottom: 2px; transition: border-color 0.2s; }
.service-link:hover { border-color: var(--gold); }

/* ===== LISTINGS ===== */
.listings { background: var(--dark-2); }
.listings-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.listing-card { background: var(--dark-3); overflow: hidden; cursor: pointer; transition: transform 0.3s; text-decoration: none; color: inherit; display: block; }
.listing-card:hover { transform: translateY(-6px); }
.listing-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.85); }
.listing-card:hover .listing-img img { transform: scale(1.06); }
.listing-tag { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--dark); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; }
.listing-price { position: absolute; bottom: 1rem; right: 1rem; background: rgba(13,13,13,0.85); color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 600; padding: 0.4rem 0.9rem; backdrop-filter: blur(4px); }
.listing-body { padding: 1.5rem; }
.listing-address { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.listing-city { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; }
.listing-meta { display: flex; gap: 1.2rem; font-size: 0.75rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--dark-2); padding: 2.5rem; border-top: 2px solid transparent; transition: border-color 0.3s; }
.testimonial-card:hover { border-color: var(--gold); }
.quote-mark { font-family: "Cormorant Garamond", serif; font-size: 5rem; color: rgba(201,169,110,0.15); line-height: 0.8; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--text-light); margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: "Cormorant Garamond", serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); flex-shrink: 0; }
.author-name { font-size: 0.85rem; font-weight: 600; }
.author-stars { font-size: 0.7rem; color: var(--gold); letter-spacing: 2px; }

/* ===== TOOLS ===== */
.tools { background: var(--dark-2); }
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.tool-card { padding: 2.5rem; border: 1px solid rgba(201,169,110,0.15); transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
.tool-card:hover { border-color: var(--gold); background: rgba(201,169,110,0.04); transform: translateY(-3px); }
.tool-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.tool-title { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; margin-bottom: 0.8rem; }
.tool-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.tool-link { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 6rem 4rem;
  background: linear-gradient(rgba(13,13,13,0.88), rgba(13,13,13,0.88)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80") center/cover;
  text-align: center; position: relative;
}
.cta-banner::before { content: ""; position: absolute; inset: 2rem; border: 1px solid rgba(201,169,110,0.2); pointer-events: none; }
.cta-banner h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; margin-bottom: 1.2rem; }
.cta-banner p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { background: #080808; padding: 5rem 4rem 2rem; border-top: 1px solid rgba(201,169,110,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; font-size: 1.4rem; }
.footer-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.25); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.83rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1.2rem; }
.footer-contact-item label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.footer-contact-item a,
.footer-contact-item span { font-size: 0.85rem; color: var(--white); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text-muted); }
.footer-gold { color: rgba(201,169,110,0.5); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { gap: 1.2rem; }
  section { padding: 5rem 2rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .services-grid, .listings-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { position: relative; bottom: auto; right: auto; padding: 2rem; justify-content: flex-start; }
  .hero-content { padding: 0 2rem; }
  .desk-overlay { padding: 0 2rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .services-grid, .listings-grid, .testimonials-grid, .tools-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header p { text-align: left; }
}

.remax_logo {
    transform: scale(0.4);

}

.testimonial-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.4s ease;
}


/* ===== VIDEOS ===== */
.videos {
  background: var(--dark);
  text-align: center;
}

.videos-header {
  margin-bottom: 3.5rem;
}

.videos-header .section-subtitle {
  margin: 0 auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.video-wrap {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
  background: #000;
  transition: border-color 0.3s;
}

.video-wrap:hover {
  border-color: var(--gold);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 70%;
    justify-content: center;
    text-align: center;
  }
}


/* ===== HAMBURGER MOBILE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .hamburger { display: flex; }

  nav {
    position: fixed;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(201,169,110,0.15);
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(201,169,10,0.08); }

  .nav-links a {
    display: block;
    padding: 1.1rem 2rem;
    font-size: 0.85rem;
    color: var(--text-light);
  }

  .nav-links .nav-cta {
    margin: 1rem 2rem;
    text-align: center;
    padding: 0.8rem;
  }
}