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

:root {
  --green-dark: #1B3A2D;
  --green-mid: #2D5A3D;
  --green-light: #3D7A52;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: #a8893a;
  --cream: #F8F5EE;
  --cream-dark: #EDE8DC;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(27,58,45,0.12);
  --shadow-lg: 0 8px 40px rgba(27,58,45,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ── NAVIGATION ── */
nav {
  background: var(--green-dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1.1rem 0;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-logo span { font-style: italic; font-weight: 400; }

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

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
  font-family: 'Lora', serif;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem 0;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--green-dark);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 1rem 2rem 1.5rem;
  gap: 1.2rem;
}

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 55%, #2a4f38 100%);
  color: var(--cream);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

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

.hero p {
  font-size: 1.05rem;
  color: rgba(248,245,238,0.8);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Lora', serif;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248,245,238,0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-dark);
  color: var(--cream);
}

.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

/* ── SECTION STYLES ── */
section { padding: 4rem 2rem; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title em { font-style: italic; }

.section-subtitle {
  color: var(--text-mid);
  font-size: 0.98rem;
  max-width: 520px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

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

/* ── DIVIDER ── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 2rem;
}

.text-center .gold-divider { margin: 1.2rem auto 2rem; }

/* ── LISTING CARDS ── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.listing-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.listing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-condition {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.condition-excellent { background: #e8f5e9; color: #2e7d32; }
.condition-very-good { background: #e3f2fd; color: #1565c0; }
.condition-good { background: #fff8e1; color: #f57f17; }

.card-description {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  font-weight: 700;
}

.card-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  font-family: 'Lora', serif;
}

.card-enquire {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  transition: color 0.25s;
}

.card-enquire:hover { color: var(--gold); border-color: var(--gold); }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Lora', serif;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--green-dark);
  color: var(--gold);
  border-color: var(--green-dark);
}

/* ── FEATURES / INFO STRIP ── */
.features-strip {
  background: var(--green-dark);
  padding: 3rem 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.feature-item { color: var(--cream); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: rgba(248,245,238,0.7);
  line-height: 1.5;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  padding: 4rem 2rem;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.cta-banner p {
  color: rgba(248,245,238,0.75);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ── FORMS ── */
.form-section {
  background: var(--white);
  padding: 4rem 2rem;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.25s;
  outline: none;
}

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

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

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

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 1rem;
  text-align: center;
}

.success-msg {
  display: none;
  background: #e8f5e9;
  border: 1px solid #2e7d32;
  color: #2e7d32;
  padding: 1rem 1.5rem;
  border-radius: 3px;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(160deg, var(--green-dark), var(--green-mid));
  padding: 3.5rem 2rem 3rem;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 0.6rem;
}

.page-header p {
  color: rgba(248,245,238,0.75);
  font-size: 0.95rem;
}

/* ── CONTACT INFO CARDS ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--gold);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-radius: 2px;
}

.contact-card .icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.contact-card p, .contact-card a {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
}

.contact-card a:hover { color: var(--gold-dim); }

/* ── LOADING ── */
.loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-mid);
  font-style: italic;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text-mid);
  grid-column: 1/-1;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 2px solid var(--gold);
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

footer p {
  font-size: 0.82rem;
  color: rgba(248,245,238,0.6);
  margin-bottom: 0.4rem;
}

footer a {
  color: var(--gold-light);
  text-decoration: none;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

footer .footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,245,238,0.65);
  transition: color 0.25s;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 3.5rem 1.5rem 3rem; }

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

  section { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .listings-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }
}
