/* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: #023336;
      background: #eaf8e7;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; font-family: inherit; }
    input, textarea, select { font-family: inherit; }
    .serif { font-family: 'Playfair Display', Georgia, serif; }

    /* ===== COLOR TOKENS ===== */
    :root {
      --dark: #023336;
      --green: #4da674;
      --green-light: #c1e6ba;
      --green-bg: #eaf8e7;
      --white: #ffffff;
    }

    /* ===== UTILITY ===== */
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--dark);
      transition: all 0.35s ease;
    }
    .navbar.scrolled {
      background: rgba(2, 51, 54, 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 30px rgba(2, 51, 54, 0.25);
    }
    .navbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 24px; max-width: 1200px; margin: 0 auto; height: 72px;
    }
    .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .logo-img {
      height: 46px; width: auto; border-radius: 4px;
      object-fit: contain;
    }

    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-links a {
      padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 500;
      color: rgba(193,230,186,0.75); transition: all 0.25s; white-space: nowrap;
      position: relative;
    }
    .nav-links a:hover { color: var(--white); background: rgba(77, 166, 116, 0.1); }
    .nav-links a.active {
      color: var(--white); background: rgba(77, 166, 116, 0.15);
    }
    .nav-links a.active::after {
      content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
      width: 20px; height: 2px; background: var(--green); border-radius: 2px;
    }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      padding: 10px; border-radius: 8px; transition: background 0.25s;
    }
    .hamburger:hover { background: rgba(77, 166, 116, 0.15); }
    .hamburger .bar {
      width: 22px; height: 2.5px; background: var(--green-light); border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }
    .hamburger.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .mobile-menu {
      display: none; flex-direction: column; padding: 8px 20px 20px;
      background: var(--dark); border-top: 1px solid rgba(77,166,116,0.12);
      max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .mobile-menu.open { display: flex; max-height: 500px; }
    .mobile-menu a {
      padding: 14px 16px; font-size: 14.5px; font-weight: 500;
      color: rgba(193,230,186,0.75); border-radius: 8px; transition: all 0.25s;
    }
    .mobile-menu a:hover,
    .mobile-menu a.active { color: var(--white); background: rgba(77, 166, 116, 0.2); }

    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }

    /* ===== HERO SECTION ===== */
    .hero {
      margin-top: 72px; position: relative; min-height: 500px;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, rgba(2, 51, 54, 0.85) 0%, rgba(77, 166, 116, 0.75) 100%), url('/images/properties-hero.jpg');
      background-size: cover; background-position: center;
      color: var(--white);
      text-align: center;
      padding: 60px 24px;
    }
    .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    .hero-content h1 {
      font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 800;
      margin-bottom: 16px; text-balance; line-height: 1.2;
      animation: fadeInUp 0.8s ease 0.2s both;
    }
    .hero-content p {
      font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
      opacity: 0.95; animation: fadeInUp 0.8s ease 0.4s both;
    }
    .hero-cta {
      display: inline-flex; gap: 16px; animation: fadeInUp 0.8s ease 0.6s both;
    }
    .hero-cta button {
      padding: 12px 32px; border-radius: 8px; font-size: 15px; font-weight: 600;
      transition: all 0.3s;
    }
    .btn-primary {
      background: var(--green); color: var(--dark);
    }
    .btn-primary:hover {
      background: var(--green-light); transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(77, 166, 116, 0.3);
    }
    .btn-secondary {
      background: transparent; color: var(--white); border: 2px solid var(--white);
    }
    .btn-secondary:hover {
      background: var(--white); color: var(--dark); transform: translateY(-2px);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 640px) {
      .hero { min-height: 380px; padding: 40px 20px; }
      .hero-content h1 { font-size: 32px; }
      .hero-content p { font-size: 16px; }
    }

    /* ===== INTRO SECTION ===== */
    .intro-section {
      padding: 80px 24px; background: var(--white);
    }
    .intro-section .container {
      text-align: center;
    }
    .section-headline {
      font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800;
      color: var(--dark); margin-bottom: 24px; text-balance;
    }
    .section-description {
      font-size: 17px; color: #4a5568; max-width: 700px;
      margin: 0 auto 60px; line-height: 1.7;
    }

    /* ===== FEATURES GRID ===== */
    .features-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px; margin-bottom: 60px;
    }
    .feature-card {
      background: var(--green-bg); padding: 28px 24px; border-radius: 12px;
      text-align: center; border: 2px solid var(--green-light);
      transition: all 0.35s;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      border-color: var(--green);
      box-shadow: 0 12px 28px rgba(77, 166, 116, 0.15);
    }
    .feature-icon {
      width: 60px; height: 60px; margin: 0 auto 16px;
      background: linear-gradient(135deg, var(--green), var(--green-light));
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      font-size: 28px;
    }
    .feature-card h3 {
      font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--dark);
    }
    .feature-card p {
      font-size: 14px; color: #5a6c7d; line-height: 1.6;
    }

    @media (max-width: 640px) {
      .intro-section { padding: 60px 20px; }
      .section-headline { font-size: 28px; }
      .features-grid { gap: 16px; }
    }

    /* ===== PROPERTIES GRID ===== */
    .properties-section {
      padding: 80px 24px; background: var(--green-bg);
    }
    .properties-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 32px;
    }
    .property-card {
      background: var(--white); border-radius: 12px; overflow: hidden;
      transition: all 0.35s; box-shadow: 0 4px 12px rgba(2, 51, 54, 0.08);
    }
    .property-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 16px 36px rgba(77, 166, 116, 0.2);
    }
    .property-image {
      width: 100%; height: 240px; overflow: hidden;
      background: linear-gradient(135deg, var(--green-light), var(--green));
    }
    .property-image img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.35s;
    }
    .property-card:hover .property-image img {
      transform: scale(1.08);
    }
    .property-info {
      padding: 24px;
    }
    .property-header {
      display: flex; justify-content: space-between; align-items: start; gap: 12px;
      margin-bottom: 16px;
    }
    .property-header h3 {
      font-size: 20px; font-weight: 700; color: var(--dark);
    }
    .property-type {
      background: var(--green-light); color: var(--dark);
      padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
      white-space: nowrap;
    }
    .property-meta {
      display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap;
    }
    .meta-item {
      display: flex; align-items: center; gap: 6px; font-size: 14px; color: #5a6c7d;
    }
    .meta-item svg {
      width: 16px; height: 16px; stroke: var(--green);
    }
    .property-features {
      background: var(--green-bg); padding: 16px; border-radius: 8px;
      margin-bottom: 16px;
    }
    .features-list {
      display: flex; flex-direction: column; gap: 8px;
    }
    .features-list li {
      font-size: 13px; color: #5a6c7d; padding-left: 20px; position: relative;
    }
    .features-list li::before {
      content: '✓'; position: absolute; left: 0;
      color: var(--green); font-weight: bold;
    }
    .property-footer {
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
    }
    .property-price {
      font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800;
      color: var(--green);
    }
    .property-price span {
      font-size: 12px; display: block; color: #8893a1; font-family: 'Inter';
    }
    .inspect-btn {
      background: var(--green); color: var(--white);
      padding: 10px 18px; border-radius: 6px; font-size: 13px; font-weight: 600;
      transition: all 0.25s;
    }
    .inspect-btn:hover {
      background: var(--dark); transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(77, 166, 116, 0.25);
    }

    @media (max-width: 768px) {
      .properties-section { padding: 60px 20px; }
      .properties-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
      .property-image { height: 200px; }
    }
    @media (max-width: 640px) {
      .properties-grid { grid-template-columns: 1fr; }
    }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      padding: 64px 24px; background: linear-gradient(135deg, var(--dark), var(--green));
      color: var(--white); text-align: center;
    }
    .cta-banner h2 {
      font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800;
      margin-bottom: 24px; text-balance;
    }
    .cta-banner p {
      font-size: 16px; margin-bottom: 32px; opacity: 0.9; max-width: 600px;
      margin-left: auto; margin-right: auto;
    }
    .cta-banner-btn {
      background: var(--white); color: var(--dark);
      padding: 14px 40px; border-radius: 8px; font-size: 15px; font-weight: 700;
      transition: all 0.3s; display: inline-block;
    }
    .cta-banner-btn:hover {
      transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 640px) {
      .cta-banner { padding: 48px 20px; }
      .cta-banner h2 { font-size: 28px; }
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark); color: var(--green-light); padding: 48px 24px 24px;
    }
    .footer-inner {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px; margin-bottom: 40px;
    }
    .footer-section h4 {
      color: var(--white); margin-bottom: 16px; font-size: 15px; font-weight: 700;
    }
    .footer-section ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-section a {
      font-size: 14px; transition: color 0.25s;
    }
    .footer-section a:hover { color: var(--green); }
    .footer-divider {
      border-top: 1px solid rgba(77, 166, 116, 0.15); margin: 32px 0;
    }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 13px;
    }
    .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
    .footer-logo img { height: 32px; width: auto; }

    @media (max-width: 640px) {
      .footer { padding: 36px 20px 20px; }
      .footer-inner { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.active {
      opacity: 1; transform: translateY(0);
    }