:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gold: #C9A962;
  --gold-light: #d4bc7d;
  --emerald: #0D5C4D;
  --emerald-light: #0f7460;
  --gray: #888888;
  --gray-dark: #1a1a1a;
  --gray-light: #e5e5e5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;

  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.5rem 4rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.nav.scrolled .nav-logo img {
  width: 140px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 180px;
  height: auto;
  transition: all 0.3s ease;
}

.nav-logo:hover img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}

.lang-toggle .lang-option {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray);
  transition: all 0.3s ease;
  font-family: var(--font-body);
  position: relative;
  padding-bottom: 6px;
}

.lang-toggle .lang-option.active {
  color: var(--gold);
}

.lang-toggle .lang-option.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.lang-toggle .lang-divider {
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 300;
  padding-bottom: 6px;
}

.lang-toggle:hover .lang-option:not(.active) {
  color: var(--white);
}

.mobile-lang {
  margin-top: 2rem;
}

.mobile-lang .lang-option {
  font-size: 1rem;
}

.mobile-lang .lang-divider {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.2) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  font-family: var(--font-body);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--transition-smooth) 1.2s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* --- Section Styles --- */
section {
  padding: 8rem 4rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

/* --- About Section --- */
.about {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 92, 77, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  position: relative;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.6s var(--transition-smooth);
}

.about-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.about-content {
  padding: 2rem 0;
}

.about-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about-title em {
  font-style: italic;
  color: var(--gold);
}

.about-text {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--emerald-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* --- Services Section --- */
.services {
  background: var(--gray-dark);
  position: relative;
}

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

.service-card {
  background: var(--black);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--transition-smooth);
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--emerald) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition-smooth);
}

.service-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.4s ease;
}

.service-card:hover .service-icon svg {
  stroke: var(--black);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* --- Featured Listings --- */
.listings {
  background: var(--black);
  position: relative;
}

.listings::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.2;
}

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

.listing-card {
  background: var(--gray-dark);
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--transition-smooth);
}

.listing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.listing-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.listing-card:hover .listing-image img {
  transform: scale(1.1);
}

.listing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--emerald);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listing-badge.rent {
  background: var(--gold);
  color: var(--black);
}

.listing-content {
  padding: 1.5rem;
}

.listing-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.listing-price span {
  font-size: 0.9rem;
  color: var(--gray);
  font-family: var(--font-body);
  font-weight: 400;
}

.listing-address {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.listing-details {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.listing-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray);
}

.listing-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.listings-cta {
  text-align: center;
  margin-top: 4rem;
}

/* --- Testimonials --- */
.testimonials {
  background: linear-gradient(135deg, var(--emerald) 0%, #074035 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 5%;
  left: 5%;
  font-family: var(--font-display);
  font-size: 40rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials .section-header {
  position: relative;
  z-index: 1;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial {
  text-align: center;
  padding: 0 2rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 2.5rem;
  transition: opacity 0.6s ease;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  transition: opacity 0.6s ease;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background: var(--gold);
}

/* --- Contact Section --- */
.contact {
  background: var(--black);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  padding: 2rem 0;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.contact-title em {
  font-style: italic;
  color: var(--gold);
}

.contact-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-content h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-content a:hover {
  color: var(--gold);
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: var(--black);
}

.contact-form-wrapper {
  background: var(--gray-dark);
  padding: 3rem;
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--emerald) 100%);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  margin-top: 1rem;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

/* --- Footer --- */
.footer {
  background: var(--gray-dark);
  padding: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 220px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
}

.footer-copy a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: var(--gold);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s var(--transition-smooth);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
}

.mobile-menu-links li {
  margin: 1.5rem 0;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--gold);
}

.mobile-menu-cta {
  margin-top: 2rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  section {
    padding: 6rem 3rem;
  }

  .nav {
    padding: 1.5rem 2rem;
  }

  .nav.scrolled {
    padding: 1rem 2rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image-frame::before {
    display: none;
  }

  .about-image img {
    height: 500px;
  }

  .services-grid,
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }

  .nav-logo img {
    width: 120px;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .services-grid,
  .listings-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .footer {
    padding: 3rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   PAGE HERO (Interior Pages)
============================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-short {
  height: 45vh;
  min-height: 320px;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
}

.page-hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.2s forwards;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 0.4s forwards;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* ============================================
   ABOUT PAGE
============================================ */
.about-intro {
  background: var(--black);
  padding: 8rem 4rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-intro-image {
  position: relative;
}

.about-intro-frame {
  position: relative;
  overflow: hidden;
}

.about-intro-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-intro-frame img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.6s var(--transition-smooth);
}

.about-intro-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.about-intro-content {
  padding: 2rem 0;
}

.about-intro-text {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* --- Values Section --- */
.values {
  background: var(--gray-dark);
  padding: 8rem 4rem;
}

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

.value-card {
  background: var(--black);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.4s var(--transition-smooth);
}

.value-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: var(--gold);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.4s ease;
}

.value-card:hover .value-icon svg {
  stroke: var(--black);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --- Stats Banner --- */
.stats-banner {
  background: linear-gradient(135deg, var(--emerald) 0%, #074035 100%);
  padding: 5rem 4rem;
}

.stats-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 0.75rem;
  display: block;
  opacity: 0.9;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

/* --- Why Choose Section --- */
.why-choose {
  background: var(--black);
  padding: 8rem 4rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-content {
  padding: 2rem 0;
}

.why-list {
  margin-top: 3rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.why-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.why-text h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.why-text p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.why-choose-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(20%);
}

/* --- Page CTA --- */
.page-cta {
  background: var(--gray-dark);
  padding: 6rem 4rem;
  text-align: center;
}

.page-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-cta-text {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

/* ============================================
   SERVICES PAGE
============================================ */
.services-intro {
  background: var(--black);
  padding: 6rem 4rem 4rem;
}

.service-detail {
  background: var(--black);
  padding: 6rem 4rem;
  position: relative;
}

.service-detail.alt {
  background: var(--gray-dark);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-content {
  padding: 2rem 0;
}

.service-detail-text {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.service-features svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* --- Process Section --- */
.process {
  background: var(--black);
  padding: 8rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -1rem;
  width: calc(100% - 80px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   LISTINGS PAGE
============================================ */
.my-listings {
  background: var(--black);
  padding: 8rem 4rem;
}

.my-listings .listings-grid {
  position: relative;
}

.my-listings .listings-grid::before {
  display: none;
}

.listing-cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.listing-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* --- IDX Search Section --- */
.idx-search {
  background: var(--gray-dark);
  padding: 8rem 4rem;
}

.idx-container {
  max-width: 1200px;
  margin: 0 auto;
}

.idx-placeholder {
  background: var(--black);
  padding: 5rem 3rem;
  text-align: center;
  border: 1px dashed rgba(201, 169, 98, 0.3);
}

.idx-placeholder-icon svg {
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.5;
  margin-bottom: 2rem;
}

.idx-placeholder h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.idx-placeholder p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.idx-frame-wrapper {
  background: var(--white);
  border: 1px solid rgba(201, 169, 98, 0.3);
  overflow: hidden;
}

.idx-frame-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: none;
}

.idx-link-box {
  background: var(--black);
  padding: 5rem 3rem;
  text-align: center;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.idx-link-icon svg {
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.idx-link-box h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.idx-link-box p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-page {
  background: var(--black);
  padding: 8rem 4rem;
}

.contact-page .contact-grid {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-hours {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-hours p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --- Map Section --- */
.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  filter: grayscale(80%) contrast(1.1);
  transition: filter 0.4s ease;
}

.map-container:hover {
  filter: grayscale(0%);
}

.map-container iframe {
  display: block;
}

/* ============================================
   PRIVACY / LEGAL PAGES
============================================ */
.legal-content {
  background: var(--black);
  padding: 6rem 4rem;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 3rem 0 1rem;
  color: var(--white);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-contact {
  background: var(--gray-dark);
  padding: 2rem;
  margin-top: 2rem;
}

.legal-contact p {
  margin-bottom: 0.5rem;
}

.legal-contact a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.legal-contact a:hover {
  opacity: 0.8;
}

/* ============================================
   INTERIOR PAGE RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .about-intro-grid,
  .why-choose-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .service-detail-grid.reverse {
    direction: ltr;
  }

  .about-intro-frame::before {
    display: none;
  }

  .about-intro-frame img {
    height: 450px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .stats-banner-content {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 50vh;
    min-height: 350px;
  }

  .page-hero-short {
    height: 40vh;
    min-height: 280px;
  }

  .about-intro,
  .values,
  .why-choose,
  .service-detail,
  .my-listings,
  .idx-search,
  .contact-page,
  .legal-content {
    padding: 5rem 1.5rem;
  }

  .about-intro-frame img,
  .why-choose-image img,
  .service-detail-image img {
    height: 350px;
  }

  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner {
    padding: 4rem 1.5rem;
  }

  .stats-banner-content {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-item .stat-number {
    font-size: 2.5rem;
  }

  .page-cta {
    padding: 4rem 1.5rem;
  }

  .idx-placeholder {
    padding: 3rem 1.5rem;
  }

  .map-container {
    height: 350px;
  }

  .legal-container {
    padding: 0;
  }
}
