/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --coral: #F9A8A0;
  --coral-dark: #E8897E;
  --coral-light: #FDDDD6;
  --coral-pale: #FFF5F3;
  --bg: #FEFCFB;
  --bg-warm: #FAF7F5;
  --bg-alt: #F5F0ED;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --text-muted: #9A9A9A;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(45,45,45,0.06), 0 1px 2px rgba(45,45,45,0.04);
  --shadow-md: 0 4px 16px rgba(45,45,45,0.08), 0 2px 4px rgba(45,45,45,0.04);
  --shadow-lg: 0 12px 40px rgba(45,45,45,0.10), 0 4px 12px rgba(45,45,45,0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--charcoal); color: var(--white);
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  z-index: 1000; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* ── Typography ────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral-dark);
  margin-bottom: 0.75rem;
}
.section-tag::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--coral); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 1rem;
}
.section-title .text-coral { color: var(--coral-dark); }
.section-title .text-coral-light { color: var(--coral); }
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.text-center { text-align: center; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600;
  border-radius: var(--radius-xl); transition: var(--transition);
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral); color: var(--charcoal);
  padding: 0.8rem 1.75rem; font-size: 0.95rem;
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-coral-light {
  background: var(--coral); color: var(--charcoal);
  padding: 0.8rem 1.75rem; font-size: 0.95rem;
}
.btn-coral-light:hover { background: var(--coral-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 2px solid var(--charcoal); padding: 0.75rem 1.65rem; font-size: 0.95rem;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6); padding: 0.75rem 1.65rem; font-size: 0.95rem;
}
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Header ────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(254,252,251,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,45,45,0.06);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 700; line-height: 1.2; color: var(--charcoal);
}
.logo-accent { color: var(--coral-dark); }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  padding: 0.5rem 0.85rem; font-size: 0.9rem; font-weight: 500;
  color: var(--text-light); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--charcoal); background: var(--bg-alt); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  width: 40px; height: 40px; padding: 0.5rem;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-toggle:hover { background: var(--bg-alt); }
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 20px; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 8rem 1.5rem 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 0%, var(--coral-pale) 50%, var(--bg-alt) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, rgba(249,168,160,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(249,168,160,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(45,45,45,0.02) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--coral-light);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-light);
  margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light); max-width: 560px;
  margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem; box-shadow: var(--shadow-lg);
}
.stat { text-align: center; }
.stat-number {
  display: block; font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700; color: var(--coral-dark);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.stat-divider {
  width: 1px; height: 40px; background: var(--bg-alt);
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); display: flex;
  flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ─────────────────────────────────────────── */
.about { padding: 6rem 0; background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -2rem; right: -1rem;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 240px; object-fit: cover; }
.about-experience-badge {
  position: absolute; top: -1rem; right: 2rem;
  background: var(--coral); color: var(--charcoal);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  text-align: center; box-shadow: var(--shadow-md);
  font-family: var(--font-display);
}
.exp-number { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.exp-label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.about-content .section-tag { margin-bottom: 0.5rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-text { color: var(--text-light); margin-bottom: 1rem; font-size: 1rem; }
.about-features { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem; color: var(--text);
}
.about-features .check-icon { flex-shrink: 0; margin-top: 2px; }

/* ── Services ──────────────────────────────────────── */
.services { padding: 6rem 0; background: var(--bg-warm); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--coral-light);
}
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--coral-pale); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; margin-bottom: 0.6rem; color: var(--charcoal);
}
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }
.service-link {
  font-size: 0.85rem; font-weight: 600; color: var(--coral-dark);
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: var(--transition);
}
.service-link:hover { gap: 0.6rem; }

/* ── Listings ──────────────────────────────────────── */
.listings { padding: 6rem 0; background: var(--bg); }
.listings-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.listing-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.listing-img { position: relative; overflow: hidden; }
.listing-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.listing-card:hover .listing-img img { transform: scale(1.05); }
.listing-badge, .listing-badge.new {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--coral); color: var(--charcoal);
  padding: 0.3rem 0.75rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.listing-badge.new { background: var(--charcoal); color: var(--white); }
.listing-info { padding: 1.25rem; }
.listing-price {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--coral-dark); margin-bottom: 0.4rem;
}
.listing-info h3 {
  font-size: 1rem; font-weight: 700; color: var(--charcoal);
  margin-bottom: 0.3rem; line-height: 1.4;
}
.listing-address { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.listing-features { display: flex; gap: 1rem; margin-bottom: 1rem; }
.listing-features span {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.8rem; color: var(--text-light);
}
.listing-features svg { opacity: 0.6; }

/* ── Testimonials ──────────────────────────────────── */
.testimonials { padding: 6rem 0; background: var(--bg-warm); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--coral-light); }
.quote-mark { position: absolute; top: 1.25rem; right: 1.5rem; }
.testimonial-text {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--coral-pale); display: flex; align-items: center; justify-content: center; }
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
.author-detail { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA ───────────────────────────────────────────── */
.cta {
  padding: 6rem 0; position: relative; overflow: hidden;
  background: var(--charcoal);
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 50%, rgba(249,168,160,0.2) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(249,168,160,0.1) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-content .section-tag { color: var(--coral); }
.cta-content .section-tag::before { background: var(--coral); }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ───────────────────────────────────────── */
.contact { padding: 6rem 0; background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-desc { font-size: 1rem; color: var(--text-light); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--coral-pale); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 0.15rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.contact-item a { color: var(--coral-dark); transition: var(--transition); }
.contact-item a:hover { color: var(--charcoal); }

/* Form */
.contact-form-wrapper {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-alt);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--bg-alt); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--bg);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral); background: var(--white);
  box-shadow: 0 0 0 3px rgba(249,168,160,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }

.form-success {
  text-align: center; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.form-success h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--charcoal);
}
.form-success p { font-size: 0.95rem; color: var(--text-light); }
.form-success .btn { margin-top: 0.5rem; }

/* ── Footer ────────────────────────────────────────── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem; padding-bottom: 3rem;
}
.footer-logo .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--white); margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--coral); }
.footer-contact p {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; margin-bottom: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact a:hover { color: var(--coral); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ── Scroll Animations ─────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid, .testimonials-grid, .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1.5rem; gap: 0.25rem;
    box-shadow: var(--shadow-lg); border-top: 1px solid var(--bg-alt);
    transform: translateY(-100%); opacity: 0;
    pointer-events: none; transition: var(--transition);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-menu a { padding: 0.75rem 1rem; width: 100%; }

  .hero { padding: 7rem 1.25rem 3rem; min-height: auto; }
  .hero-stats { flex-direction: column; gap: 1rem; padding: 1.25rem; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-secondary { right: 0; }

  .services-grid, .testimonials-grid, .listings-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem; }
  .about-img-secondary { display: none; }
  .about-experience-badge { right: 0; }
}
