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

:root {
  --navy:   #1a2e44;
  --gold:   #c9a84c;
  --light:  #f8f6f2;
  --white:  #ffffff;
  --text:   #333333;
  --muted:  #666666;
  --border: #e0dbd0;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section      { padding: 80px 0; }
.section-alt  { background: var(--light); }
.section-title { text-align: center; margin-bottom: 48px; font-size: 2rem; color: var(--navy); }

/* ── Typography ── */
h1, h2, h3 { color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: #b8942f; border-color: #b8942f; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--white);
}
.logo span { color: var(--gold); }

nav { display: flex; gap: 32px; }
nav a {
  color: rgba(255,255,255,0.8);
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--gold); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243d5c 100%);
  color: var(--white);
  padding: 100px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo { display: flex; justify-content: center; }

.photo-placeholder {
  width: 280px;
  height: 340px;
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
}

/* ── About ── */
.about-inner { max-width: 700px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--muted); font-size: 1.05rem; }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-stats li { text-align: center; }
.about-stats strong { display: block; font-size: 2rem; color: var(--gold); }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}
.testimonial-card p { color: var(--muted); font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-family: 'Arial', sans-serif; font-size: 0.875rem; color: var(--navy); font-weight: bold; }

/* ── CTA ── */
.cta { background: var(--navy); color: var(--white); text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 1.05rem; }

/* ── Page Hero (interior pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.filter-group select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  min-width: 140px;
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.no-results-msg {
  text-align: center;
  color: var(--muted);
  padding: 48px 0;
  font-size: 1.05rem;
}
.no-results-msg a { color: var(--navy); text-decoration: underline; }

/* ── Listings ── */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.listing-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.listing-img-placeholder {
  position: relative;
  height: 220px;
  background: #d4cfc4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: 'Arial', sans-serif;
}

.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.listing-badge-rent { background: #2a7a4b; }

.listing-info { padding: 24px; }

.listing-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 4px;
}
.listing-address { margin-bottom: 8px; font-size: 1rem; }
.listing-details {
  font-family: 'Arial', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.listing-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

/* ── Contact ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: 'Arial', sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

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

.label-optional {
  font-weight: normal;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.contact-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-details li { display: flex; flex-direction: column; gap: 4px; }
.contact-details strong {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.contact-details a { color: var(--navy); }
.contact-details a:hover { color: var(--gold); }
.contact-details span { color: var(--muted); font-size: 0.95rem; }

/* ── Thank You Page ── */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thankyou-inner {
  text-align: center;
  padding: 80px 24px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-inner h1 { margin-bottom: 12px; }
.thankyou-inner p  { color: var(--muted); font-size: 1.1rem; margin-bottom: 36px; }
.thankyou-actions  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: #111d2b;
  color: rgba(255,255,255,0.5);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.6); }
.site-footer a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 820px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-photo          { display: none; }
  .testimonial-grid    { grid-template-columns: 1fr; }
  .listing-grid        { grid-template-columns: 1fr; }
  .contact-inner       { grid-template-columns: 1fr; }
  .footer-inner        { flex-direction: column; text-align: center; }
  .about-stats         { gap: 24px; }
}
