    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gold: #B8932A;
      --gold-light: #F5E8C0;
      --gold-dark: #8C6F1E;
      --navy: #0E1B2E;
      --navy-mid: #162234;
      --navy-soft: #1E3050;
      --white: #FFFFFF;
      --off-white: #F9F7F3;
      --text-body: #3A3A3A;
      --text-muted: #6B6B6B;
      --border: rgba(184,147,42,0.18);
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 4px 32px rgba(14,27,46,0.10);
      --shadow-card: 0 2px 20px rgba(14,27,46,0.08);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.65; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: rgba(14,27,46,0.97); backdrop-filter: blur(12px);
      padding: 0 5%; height: 68px; display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid rgba(184,147,42,0.2);
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-icon {
      width: 40px; height: 40px; background: var(--gold); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-icon svg { width: 22px; height: 22px; fill: var(--navy); }
    .logo-text { color: var(--white); }
    .logo-text strong { display: block; font-size: 15px; font-weight: 600; letter-spacing: 0.3px; }
    .logo-text span { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold); color: var(--navy) !important; padding: 8px 20px;
      border-radius: 8px; font-weight: 600 !important; font-size: 13px !important;
    }
    .nav-cta:hover { background: #d4a830 !important; color: var(--navy) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
    .mobile-menu {
      display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 998;
      background: var(--navy); padding: 20px 5%; flex-direction: column; gap: 16px;
      border-bottom: 1px solid rgba(184,147,42,0.2);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .mobile-menu a:last-child { border-bottom: none; }

    /* HERO */
    .hero {
      min-height: 100vh; background: var(--navy);
      display: flex; align-items: center; padding: 100px 5% 60px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 70% 60% at 70% 50%, rgba(184,147,42,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(30,48,80,0.6) 0%, transparent 60%);
    }
    .hero-grid-lines {
      position: absolute; inset: 0; z-index: 0; opacity: 0.04;
      background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content { position: relative; z-index: 1; max-width: 620px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(184,147,42,0.12); border: 1px solid rgba(184,147,42,0.3);
      color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1.2px;
      text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }
    .hero-badge::before { content: '★'; font-size: 10px; }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 62px); font-weight: 700; line-height: 1.12;
      color: var(--white); margin-bottom: 20px;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero h1 em { font-style: normal; color: var(--gold); }
    .hero-sub {
      font-size: 17px; color: rgba(255,255,255,0.65); max-width: 480px;
      margin-bottom: 36px; animation: fadeUp 0.7s 0.2s ease both; line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: var(--navy); font-weight: 700; font-size: 15px;
      padding: 14px 28px; border-radius: 10px; text-decoration: none; border: none;
      cursor: pointer; transition: all 0.22s; letter-spacing: 0.2px;
    }
    .btn-primary:hover { background: #d4a830; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,147,42,0.35); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); font-weight: 600; font-size: 15px;
      padding: 14px 28px; border-radius: 10px; text-decoration: none; background: transparent;
      cursor: pointer; transition: all 0.22s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,147,42,0.06); }
    .hero-stats {
      display: flex; gap: 32px; margin-top: 52px; flex-wrap: wrap;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .stat { }
    .stat-num { font-size: 30px; font-weight: 700; color: var(--white); font-family: 'Playfair Display', serif; }
    .stat-num span { color: var(--gold); }
    .stat-label { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
    .hero-visual {
      position: absolute; right: 5%; bottom: 0; top: 0; z-index: 1;
      display: flex; align-items: center;
      width: 42%; max-width: 520px;
    }
    .hero-card-float {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(184,147,42,0.2);
      border-radius: var(--radius-lg); padding: 32px; width: 100%;
      backdrop-filter: blur(8px); animation: float 4s ease-in-out infinite;
    }
    .hc-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
    .hc-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
    .hc-score { color: var(--white); font-size: 28px; font-weight: 700; font-family: 'Playfair Display', serif; }
    .hc-count { color: rgba(255,255,255,0.45); font-size: 13px; }
    .hc-testimonial {
      font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65;
      border-left: 3px solid var(--gold); padding-left: 16px; margin-bottom: 20px;
      font-style: italic;
    }
    .hc-author { font-size: 13px; color: rgba(255,255,255,0.45); }
    .hc-author strong { color: rgba(255,255,255,0.7); }
    .hc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    .hc-tag {
      background: rgba(184,147,42,0.1); border: 1px solid rgba(184,147,42,0.2);
      color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
      padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
    }

    /* SECTION COMMONS */
    section { padding: 80px 5%; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
    h2 {
      font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 16px;
    }
    h2 em { font-style: normal; color: var(--gold); }
    .section-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; line-height: 1.7; }

    /* TRUST BAR */
    .trust-bar {
      background: var(--off-white); padding: 22px 5%;
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .trust-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; max-width: 1100px; margin: 0 auto; }
    .trust-item { display: flex; align-items: center; gap: 10px; }
    .trust-icon { width: 36px; height: 36px; background: var(--gold-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .trust-icon svg { width: 18px; height: 18px; fill: var(--gold-dark); }
    .trust-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); }
    .trust-text span { font-size: 12px; color: var(--text-muted); }

    /* SERVICES */
    .services { background: var(--white); }
    .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
    .service-card {
      background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 32px 28px; transition: all 0.28s; cursor: default; position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; inset: 0; background: var(--navy);
      transform: translateY(100%); transition: transform 0.35s ease; z-index: 0;
    }
    .service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .service-card:hover::before { transform: translateY(0); }
    .service-card * { position: relative; z-index: 1; }
    .service-card:hover .sc-title, .service-card:hover .sc-desc { color: var(--white); }
    .service-card:hover .sc-icon-wrap { background: rgba(184,147,42,0.2); }
    .service-card:hover .sc-number { color: rgba(255,255,255,0.1); }
    .sc-number {
      position: absolute; top: 20px; right: 24px; font-family: 'Playfair Display', serif;
      font-size: 52px; font-weight: 700; color: rgba(184,147,42,0.08); line-height: 1;
      z-index: 0 !important; transition: color 0.35s;
    }
    .sc-icon-wrap {
      width: 52px; height: 52px; background: var(--gold-light); border-radius: 12px;
      display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.3s;
    }
    .sc-icon-wrap svg { width: 24px; height: 24px; fill: var(--gold-dark); }
    .sc-title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; transition: color 0.3s; }
    .sc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; transition: color 0.3s; }

    /* WHY US */
    .why-us { background: var(--navy); }
    .why-us h2, .why-us .section-sub { color: var(--white); }
    .why-us .section-sub { color: rgba(255,255,255,0.55); }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 48px; }
    .why-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(184,147,42,0.15);
      border-radius: var(--radius-lg); padding: 28px 24px;
      animation: fadeUp 0.5s ease both;
    }
    .why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,147,42,0.35); }
    .wc-icon {
      width: 48px; height: 48px; background: rgba(184,147,42,0.12);
      border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    }
    .wc-icon svg { width: 22px; height: 22px; fill: var(--gold); }
    .wc-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
    .wc-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

    /* PROCESS */
    .process { background: var(--off-white); }
    .process-steps { display: flex; gap: 0; margin-top: 48px; position: relative; flex-wrap: wrap; }
    .process-step {
      flex: 1; min-width: 180px; text-align: center; padding: 0 16px; position: relative;
    }
    .process-step:not(:last-child)::after {
      content: ''; position: absolute; top: 28px; right: 0; width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--gold), rgba(184,147,42,0.2));
      z-index: 0;
    }
    .ps-num {
      width: 56px; height: 56px; background: var(--white); border: 2px solid var(--gold);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--gold);
      margin: 0 auto 16px; position: relative; z-index: 1;
    }
    .ps-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .ps-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    /* TESTIMONIALS */
    .testimonials { background: var(--white); }
    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
    .review-card {
      background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 28px 24px; transition: box-shadow 0.25s, transform 0.25s;
    }
    .review-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
    .rc-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
    .rc-text { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
    .rc-author { display: flex; align-items: center; gap: 10px; }
    .rc-avatar {
      width: 36px; height: 36px; border-radius: 50%; background: var(--gold-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; color: var(--gold-dark);
    }
    .rc-name { font-size: 13px; font-weight: 600; color: var(--navy); }
    .rc-date { font-size: 11px; color: var(--text-muted); }

    /* PROPERTIES */
    .properties { background: var(--off-white); }
    .props-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; margin-top: 48px; }
    .prop-card {
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
      overflow: hidden; transition: all 0.28s;
    }
    .prop-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
    .prop-img {
      height: 190px; background: var(--navy-soft);
      display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
    }
    .prop-img-inner {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .prop-img svg { width: 64px; height: 64px; fill: rgba(255,255,255,0.07); }
    .prop-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
    }
    .prop-body { padding: 20px 20px 24px; }
    .prop-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .prop-location { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; margin-bottom: 14px; }
    .prop-location svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
    .prop-meta { display: flex; justify-content: space-between; align-items: center; }
    .prop-price { font-size: 18px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
    .prop-type { font-size: 11px; color: var(--text-muted); background: var(--off-white); padding: 4px 10px; border-radius: 100px; border: 1px solid var(--border); }

    /* CONTACT SECTION */
    .contact-section { background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; align-items: start; }
    .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--navy); margin-bottom: 16px; }
    .contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
    .contact-items { display: flex; flex-direction: column; gap: 16px; }
    .ci { display: flex; align-items: flex-start; gap: 14px; }
    .ci-icon {
      width: 44px; height: 44px; background: var(--gold-light); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .ci-icon svg { width: 20px; height: 20px; fill: var(--gold-dark); }
    .ci-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
    .ci-text span { font-size: 14px; color: var(--text-muted); }
    .ci-text a { color: var(--gold); text-decoration: none; font-size: 15px; font-weight: 600; }
    .ci-text a:hover { text-decoration: underline; }

    /* FORM */
    .lead-form { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; }
    .form-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 14px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--border); border-radius: 8px;
      font-family: 'Inter', sans-serif; font-size: 14px; color: var(--navy);
      background: var(--white); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,147,42,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      width: 100%; padding: 14px; background: var(--gold); border: none;
      border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 15px;
      font-weight: 700; color: var(--navy); cursor: pointer; transition: all 0.22s;
      letter-spacing: 0.2px;
    }
    .form-submit:hover { background: #d4a830; transform: translateY(-1px); }
    .form-submit:active { transform: translateY(0); }
    .form-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }
    .form-success {
      display: none; text-align: center; padding: 24px;
      background: #f0f9f4; border: 1px solid #a8d8b9; border-radius: 10px; margin-top: 10px;
    }
    .form-success svg { width: 40px; height: 40px; fill: #2e7d52; margin-bottom: 10px; }
    .form-success p { color: #2e7d52; font-weight: 600; }

    /* MAP SECTION */
    .map-section { padding: 0; }
    .map-embed {
      width: 100%; height: 380px; border: none;
      border-top: 3px solid var(--gold); display: block;
    }

    /* WHATSAPP */
    .wa-fab {
      position: fixed; bottom: 28px; right: 28px; z-index: 9999;
      width: 58px; height: 58px; background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45); text-decoration: none;
      transition: all 0.25s;
    }
    .wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
    .wa-fab svg { width: 32px; height: 32px; fill: white; }
    .wa-pulse {
      position: absolute; top: -2px; right: -2px; width: 14px; height: 14px;
      background: #ff4444; border-radius: 50%; border: 2px solid white;
      animation: pulse 2s infinite;
    }

    /* FOOTER */
    footer {
      background: var(--navy); padding: 48px 5% 28px;
      border-top: 1px solid rgba(184,147,42,0.2);
    }
    .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
    .footer-brand .logo-text strong { font-size: 16px; }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; margin: 14px 0 0; }
    .footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px;
      font-size: 12px; color: rgba(255,255,255,0.3);
    }
    .ssl-badge {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px; padding: 4px 10px; color: rgba(255,255,255,0.4);
    }
    .ssl-badge svg { width: 12px; height: 12px; fill: #2e7d52; }

    /* ANIMATIONS */

    /* MAP FALLBACK */
    .map-fallback {
      background: var(--navy); border-top: 3px solid var(--gold);
      padding: 60px 5%;
    }
    .map-fallback-inner {
      display: flex; align-items: center; gap: 32px; max-width: 700px; margin: 0 auto;
      flex-wrap: wrap; justify-content: center; text-align: center;
    }
    .map-pin-icon {
      width: 80px; height: 80px; background: rgba(184,147,42,0.15);
      border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .map-pin-icon svg { width: 40px; height: 40px; fill: var(--gold); }
    .map-fallback-text h4 {
      font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); margin-bottom: 8px;
    }
    .map-fallback-text p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.65; }


    /* OWNER SECTION */
    .owner-section { background: var(--off-white); }
    .owner-grid {
      display: grid; grid-template-columns: 360px 1fr; gap: 60px;
      align-items: center; margin-top: 48px;
    }
    .owner-photo-wrap {
      position: relative;
    }
    .owner-photo-frame {
      border-radius: var(--radius-lg); overflow: hidden;
      border: 4px solid var(--gold); box-shadow: 0 16px 48px rgba(14,27,46,0.15);
      aspect-ratio: 4/5; position: relative;
    }
    .owner-photo-frame img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
    }
    .owner-badge-float {
      position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 700;
      padding: 8px 20px; border-radius: 100px; white-space: nowrap;
      box-shadow: 0 4px 16px rgba(184,147,42,0.4); letter-spacing: 0.5px;
    }
    .owner-info { }
    .owner-name {
      font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700;
      color: var(--navy); margin-bottom: 4px; line-height: 1.15;
    }
    .owner-title { font-size: 15px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px; }
    .owner-bio { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
    .owner-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
    .owner-stat { }
    .owner-stat-num {
      font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy);
    }
    .owner-stat-num span { color: var(--gold); }
    .owner-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
    .owner-quote {
      background: var(--navy); border-left: 4px solid var(--gold);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 18px 20px; font-size: 15px; color: rgba(255,255,255,0.75);
      font-style: italic; line-height: 1.65;
    }
    @media (max-width: 900px) {
      .owner-grid { grid-template-columns: 1fr; gap: 40px; }
      .owner-photo-frame { max-width: 280px; margin: 0 auto; aspect-ratio: 1/1; }
      .owner-photo-wrap { text-align: center; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255,68,68,0.5); }
      70% { box-shadow: 0 0 0 8px rgba(255,68,68,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,68,68,0); }
    }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero-visual { display: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      nav .nav-links { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 600px) {
      section { padding: 60px 5%; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { gap: 20px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .process-step:not(:last-child)::after { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }
