:root {
  /* Color System */
  --bg-primary: #FFF7F2;
  --bg-secondary: #FDEDE6;
  --gold-gradient: linear-gradient(135deg, #E6B980, #EACDA3);
  --rose-gradient: linear-gradient(135deg, #FF6F91, #FF9671);
  --ocean-blue: #355C7D;
  
  /* Text Colors */
  --text-primary: #2C2C2C;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-light: #FFFFFF;

  /* Glass & Glow */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: 1px solid rgba(230, 185, 128, 0.2);
  --gold-glow: 0 8px 32px rgba(230, 185, 128, 0.25);
  --rose-glow: 0 8px 32px rgba(255, 111, 145, 0.2);

  /* Layout */
  --max-width: 1320px;
  --nav-height: 80px;
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
.text-center { text-align: center; }
.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-weight: 700;
}

/* Container & Spacing */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 110px 0;
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

@media (max-width: 991px) {
  section { padding: 85px 0; }
}

@media (max-width: 767px) {
  section { padding: 65px 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-light);
  box-shadow: var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(230, 185, 128, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid #E6B980;
}

.btn-secondary:hover {
  background: var(--bg-secondary);
}

/* Header & Nav */
.floating-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: var(--max-width);
  z-index: 1000;
  transition: all 0.4s ease;
}

.glass-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: 50px;
  padding: 10px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-image: url('images/photo-1549294413-26f195200c16.png');
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(255,247,242,0.2), rgba(255,247,242,0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.glass-card:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: var(--gold-glow);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.glass-card:hover .card-img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-price {
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 15px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--bg-secondary);
  border-radius: 20px;
  color: var(--text-secondary);
  border: 1px solid rgba(230, 185, 128, 0.3);
}

/* Editorial Sections */
.editorial-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.editorial-content {
  flex: 1;
}

.editorial-image {
  flex: 1;
  position: relative;
}

.editorial-image img {
  border-radius: 22px;
  box-shadow: var(--rose-glow);
}

.editorial-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #E6B980;
  border-radius: 22px;
  z-index: -1;
}

/* Forms */
.contact-form {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 22px;
  border: var(--glass-border);
  box-shadow: var(--gold-glow);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(230, 185, 128, 0.5);
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #E6B980;
  background: #fff;
}

/* Footer */
footer {
  background: var(--ocean-blue);
  color: var(--text-light);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  color: rgba(255,255,255,0.7);
}

.footer-title {
  color: #E6B980;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: #EACDA3;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Page Headers (Non-home) */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(255,247,242,0.4), rgba(255,247,242,0.95));
}

.page-header-content {
  position: relative;
  z-index: 2;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .editorial-section { flex-direction: column; }
  .editorial-image::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    border: var(--glass-border);
    margin-top: 10px;
  }
  
  .nav-links.active {
    display: flex;
  }

  .nav-links a { display: block; width: 100%; text-align: center; }
  .nav-links .btn { display: block; width: max-content; margin: 0 auto; }
  
  .mobile-menu-btn { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
}