/* ============================================================
   LONDON PROPERTY BROKERAGE LIMITED
   Website Stylesheet
   Navy #0d2545 | Gold #c8a84b | Cream #faf8f4
   Fonts: Cinzel | Cormorant Garamond | DM Sans
   ============================================================ */

:root {
  --navy:       #0d2545;
  --navy-mid:   #162f55;
  --navy-light: #1e3d6b;
  --gold:       #c8a84b;
  --gold-light: #e2c97e;
  --gold-pale:  #f5edd8;
  --cream:      #faf8f4;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #e2ddd6;
  --transition: all .3s ease;
  --max-w:      1280px;
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--cream); color:var(--text); overflow-x:hidden; line-height:1.6; }

/* NAVIGATION */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; padding:0 40px; height:80px; display:flex; align-items:center; transition:var(--transition); background:transparent; }
.nav.scrolled { background:rgba(13,37,69,.97); backdrop-filter:blur(10px); box-shadow:0 2px 20px rgba(0,0,0,.3); height:68px; }
.nav-inner { display:flex; align-items:center; gap:40px; width:100%; max-width:var(--max-w); margin:0 auto; }
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-logo-mark { width:44px; height:44px; background:var(--gold); color:var(--navy); font-family:'Cinzel',serif; font-weight:500; font-size:.85rem; display:flex; align-items:center; justify-content:center; border-radius:4px; letter-spacing:.05em; flex-shrink:0; }
.nav-logo-text { display:flex; flex-direction:column; }
.nav-logo-name { color:var(--white); font-size:.75rem; font-weight:500; letter-spacing:.08em; text-transform:uppercase; line-height:1.2; }
.nav-logo-tagline { color:var(--gold); font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; opacity:.8; }
.nav-links { display:flex; gap:36px; margin-left:auto; }
.nav-links a { color:rgba(255,255,255,.75); text-decoration:none; font-size:.82rem; font-weight:400; letter-spacing:.1em; text-transform:uppercase; transition:var(--transition); }
.nav-links a:hover { color:var(--gold); }
.nav-phone { color:var(--gold); text-decoration:none; font-size:.85rem; font-weight:500; letter-spacing:.05em; border:1px solid rgba(200,168,75,.4); padding:8px 18px; border-radius:2px; transition:var(--transition); white-space:nowrap; }
.nav-phone:hover { background:var(--gold); color:var(--navy); }
.nav-burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; margin-left:auto; }
.nav-burger span { display:block; width:24px; height:2px; background:var(--white); transition:var(--transition); }

/* MOBILE MENU */
.mobile-menu { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:var(--navy); z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:32px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { color:var(--white); text-decoration:none; font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:300; transition:var(--transition); }
.mobile-menu a:hover { color:var(--gold); }
.mobile-phone { color:var(--gold) !important; font-size:1.5rem !important; }
.mobile-close { position:fixed; top:24px; right:32px; background:none; border:none; color:var(--white); font-size:2rem; cursor:pointer; }

/* HERO */
.hero { min-height:100vh; background:var(--navy); display:flex; align-items:center; position:relative; overflow:hidden; }
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-skyline { position:absolute; bottom:0; left:0; right:0; height:55%; opacity:.5; }
.hero-skyline svg { width:100%; height:100%; }
.hero-particles { position:absolute; inset:0; }
.particle { position:absolute; width:2px; height:2px; background:var(--gold); border-radius:50%; animation:float 8s infinite; opacity:0; }
.particle:nth-child(1) { left:10%; top:20%; animation-delay:0s; }
.particle:nth-child(2) { left:30%; top:60%; animation-delay:2s; }
.particle:nth-child(3) { left:60%; top:30%; animation-delay:4s; }
.particle:nth-child(4) { left:80%; top:70%; animation-delay:1s; }
.particle:nth-child(5) { left:50%; top:80%; animation-delay:3s; }

@keyframes float {
  0%,100% { opacity:0; transform:translateY(0) scale(1); }
  20% { opacity:.8; }
  50% { transform:translateY(-40px) scale(1.5); opacity:.4; }
  80% { opacity:0; }
}

.hero-content { position:relative; z-index:10; max-width:var(--max-w); margin:0 auto; padding:140px 40px 80px; width:100%; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; color:var(--gold); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; border:1px solid rgba(200,168,75,.3); padding:6px 16px; margin-bottom:32px; animation:fadeUp .8s ease both; }
.hero-title { display:flex; flex-direction:column; gap:4px; margin-bottom:28px; animation:fadeUp .8s ease .15s both; }
.hero-title-line { font-family:'Cormorant Garamond',serif; font-size:clamp(3rem,6vw,5.5rem); font-weight:300; color:var(--white); line-height:1.05; letter-spacing:-.02em; }
.hero-title-italic { font-style:italic; color:var(--gold); }
.hero-sub { color:rgba(255,255,255,.65); font-size:1.05rem; font-weight:300; max-width:520px; line-height:1.7; margin-bottom:40px; animation:fadeUp .8s ease .3s both; }
.hero-ctas { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:60px; animation:fadeUp .8s ease .45s both; }
.btn-hero-primary { background:var(--gold); color:var(--navy); text-decoration:none; padding:16px 36px; font-size:.85rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; transition:var(--transition); border:1px solid var(--gold); }
.btn-hero-primary:hover { background:var(--gold-light); transform:translateY(-1px); box-shadow:0 8px 24px rgba(200,168,75,.3); }
.btn-hero-secondary { background:transparent; color:var(--white); text-decoration:none; padding:16px 36px; font-size:.85rem; font-weight:400; letter-spacing:.1em; text-transform:uppercase; border:1px solid rgba(255,255,255,.3); transition:var(--transition); }
.btn-hero-secondary:hover { border-color:var(--white); background:rgba(255,255,255,.05); }
.hero-stats { display:flex; align-items:center; gap:32px; animation:fadeUp .8s ease .6s both; }
.hero-stat { display:flex; flex-direction:column; gap:2px; }
.hero-stat-num { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:400; color:var(--white); line-height:1; }
.hero-stat-label { font-size:.7rem; color:rgba(255,255,255,.5); letter-spacing:.1em; text-transform:uppercase; }
.hero-stat-div { width:1px; height:40px; background:rgba(255,255,255,.15); }
.hero-scroll { position:absolute; bottom:40px; left:40px; display:flex; align-items:center; gap:12px; color:rgba(255,255,255,.4); font-size:.7rem; letter-spacing:.15em; text-transform:uppercase; z-index:10; }
.hero-scroll-line { width:40px; height:1px; background:rgba(255,255,255,.3); }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* MARQUEE */
.marquee-wrap { background:var(--gold); overflow:hidden; padding:14px 0; }
.marquee-track { display:flex; align-items:center; gap:24px; white-space:nowrap; animation:marquee 30s linear infinite; width:max-content; }
.marquee-track span { font-size:.72rem; font-weight:500; letter-spacing:.15em; text-transform:uppercase; color:var(--navy); }
.marquee-dot { color:var(--navy) !important; font-size:.5rem !important; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* SHARED */
.section { padding:100px 0; }
.container { max-width:var(--max-w); margin:0 auto; padding:0 40px; }
.section-header { text-align:center; max-width:680px; margin:0 auto 64px; }
.section-eyebrow { font-size:.7rem; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; display:flex; align-items:center; justify-content:center; gap:12px; }
.section-eyebrow::before, .section-eyebrow::after { content:''; display:block; width:32px; height:1px; background:var(--gold); opacity:.5; }
.section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.2rem); font-weight:400; color:var(--navy); line-height:1.15; letter-spacing:-.02em; margin-bottom:20px; }
.section-title em { font-style:italic; color:var(--gold); }
.section-sub { color:var(--text-mid); font-size:.95rem; line-height:1.8; font-weight:300; }

/* SERVICES */
.services { background:var(--white); }
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.service-card { background:var(--white); padding:48px 36px; position:relative; transition:var(--transition); overflow:hidden; }
.service-card::before { content:''; position:absolute; inset:0; background:var(--navy); transform:scaleY(0); transform-origin:bottom; transition:transform .4s ease; z-index:0; }
.service-card:hover::before { transform:scaleY(1); }
.service-card > * { position:relative; z-index:1; }
.service-num { font-family:'Cinzel',serif; font-size:.7rem; color:var(--gold); letter-spacing:.15em; margin-bottom:24px; }
.service-icon { font-size:1.8rem; color:var(--navy); margin-bottom:20px; transition:var(--transition); }
.service-card:hover .service-icon { color:var(--gold); }
.service-title { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:600; color:var(--navy); margin-bottom:14px; transition:var(--transition); }
.service-card:hover .service-title { color:var(--white); }
.service-desc { font-size:.875rem; color:var(--text-mid); line-height:1.8; font-weight:300; transition:var(--transition); }
.service-card:hover .service-desc { color:rgba(255,255,255,.7); }
.service-line { width:32px; height:2px; background:var(--gold); margin-top:24px; transition:width .3s ease; }
.service-card:hover .service-line { width:100%; }

/* ABOUT */
.about { background:var(--navy); }
.about-grid { max-width:var(--max-w); margin:0 auto; padding:0 40px; display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:center; }
.about-visual { position:relative; }
.about-frame { width:100%; max-width:380px; aspect-ratio:3/4; position:relative; background:var(--navy-mid); display:flex; align-items:center; justify-content:center; }
.about-frame-inner { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; }
.about-initials { font-family:'Cinzel',serif; font-size:5rem; font-weight:400; color:rgba(200,168,75,.12); line-height:1; }
.about-years { display:flex; flex-direction:column; align-items:center; gap:2px; border:1px solid rgba(200,168,75,.2); padding:16px 24px; }
.about-years-num { font-family:'Cormorant Garamond',serif; font-size:3rem; color:var(--gold); line-height:1; }
.about-years-label { font-size:.7rem; color:rgba(255,255,255,.5); letter-spacing:.2em; text-transform:uppercase; }
.about-frame-border { position:absolute; inset:12px; border:1px solid rgba(200,168,75,.2); pointer-events:none; }
.about-frame-corner { position:absolute; width:20px; height:20px; border-color:var(--gold); border-style:solid; border-width:0; }
.about-frame-corner.tl { top:-1px; left:-1px; border-top-width:2px; border-left-width:2px; }
.about-frame-corner.tr { top:-1px; right:-1px; border-top-width:2px; border-right-width:2px; }
.about-frame-corner.bl { bottom:-1px; left:-1px; border-bottom-width:2px; border-left-width:2px; }
.about-frame-corner.br { bottom:-1px; right:-1px; border-bottom-width:2px; border-right-width:2px; }
.about-credentials { display:flex; flex-direction:column; gap:10px; margin-top:24px; }
.credential { display:flex; align-items:center; gap:12px; padding:12px 16px; border:1px solid rgba(200,168,75,.15); background:rgba(200,168,75,.04); }
.credential-icon { color:var(--gold); font-size:.9rem; }
.credential-text { display:flex; flex-direction:column; gap:1px; }
.credential-text strong { color:var(--white); font-size:.8rem; font-weight:500; }
.credential-text span { color:rgba(255,255,255,.4); font-size:.72rem; }
.about .section-eyebrow { justify-content:flex-start; }
.about .section-eyebrow::before { display:none; }
.about .section-title { text-align:left; color:var(--white); }
.about .section-title em { color:var(--gold); }
.about-quote { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-style:italic; color:var(--gold); line-height:1.4; border-left:3px solid var(--gold); padding-left:20px; margin:28px 0; }
.about-body { color:rgba(255,255,255,.65); font-size:.9rem; line-height:1.85; font-weight:300; margin-bottom:16px; }
.about-cta { display:flex; gap:16px; margin-top:32px; flex-wrap:wrap; }

/* BUTTONS */
.btn-primary { background:var(--gold); color:var(--navy); text-decoration:none; padding:14px 32px; font-size:.8rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; transition:var(--transition); border:1px solid var(--gold); display:inline-block; }
.btn-primary:hover { background:var(--gold-light); transform:translateY(-1px); }
.btn-secondary { background:transparent; color:var(--white); text-decoration:none; padding:14px 32px; font-size:.8rem; font-weight:400; letter-spacing:.1em; text-transform:uppercase; border:1px solid rgba(255,255,255,.3); transition:var(--transition); display:inline-block; }
.btn-secondary:hover { border-color:var(--white); }
.btn-outline { background:transparent; color:var(--navy); text-decoration:none; padding:14px 40px; font-size:.8rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; border:1px solid var(--navy); transition:var(--transition); display:inline-block; }
.btn-outline:hover { background:var(--navy); color:var(--white); }

/* PROPERTIES PREVIEW */
.properties-preview { background:var(--cream); }
.properties-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:48px; }
.property-placeholder { grid-column:1/-1; background:var(--white); border:1px solid var(--border); padding:80px 40px; text-align:center; }
.placeholder-icon { font-size:3rem; color:var(--text-light); margin-bottom:16px; }
.property-placeholder h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--navy); margin-bottom:12px; }
.property-placeholder p { color:var(--text-mid); font-size:.9rem; margin-bottom:24px; }
.properties-cta { text-align:center; }
.prop-card { background:var(--white); border:1px solid var(--border); overflow:hidden; transition:var(--transition); text-decoration:none; color:inherit; display:flex; flex-direction:column; }
.prop-card:hover { box-shadow:0 12px 40px rgba(13,37,69,.12); transform:translateY(-3px); }
.prop-card-img { height:220px; background:var(--navy); overflow:hidden; position:relative; }
.prop-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.prop-card:hover .prop-card-img img { transform:scale(1.05); }
.prop-card-body { padding:24px; flex:1; }
.prop-card-price { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:600; color:var(--navy); margin-bottom:6px; }
.prop-card-address { font-size:.85rem; color:var(--text-mid); margin-bottom:14px; }
.prop-card-specs { display:flex; gap:16px; font-size:.78rem; color:var(--text-light); }

/* WHY */
.why { background:var(--white); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:48px 64px; }
.why-num { font-family:'Cinzel',serif; font-size:.65rem; color:var(--gold); letter-spacing:.15em; margin-bottom:16px; }
.why-item h3 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:600; color:var(--navy); margin-bottom:10px; }
.why-item p { font-size:.875rem; color:var(--text-mid); line-height:1.8; font-weight:300; }

/* CONTACT */
.contact { background:var(--cream); }
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:start; }
.contact-body { color:var(--text-mid); font-size:.9rem; line-height:1.8; margin-bottom:40px; }
.contact-details { display:flex; flex-direction:column; gap:16px; }
.contact-item { display:flex; align-items:center; gap:16px; text-decoration:none; color:inherit; padding:16px 20px; background:var(--white); border:1px solid var(--border); transition:var(--transition); }
.contact-item:hover { border-color:var(--gold); }
.contact-item-icon { font-size:1.1rem; color:var(--gold); flex-shrink:0; }
.contact-item-text { display:flex; flex-direction:column; gap:2px; }
.contact-item-label { font-size:.7rem; color:var(--text-light); text-transform:uppercase; letter-spacing:.1em; }
.contact-item-value { font-size:.9rem; color:var(--navy); font-weight:500; }
.contact-form-wrap { background:var(--white); border:1px solid var(--border); padding:40px; }
.contact-form { display:flex; flex-direction:column; gap:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:.72rem; font-weight:500; color:var(--text-mid); text-transform:uppercase; letter-spacing:.08em; }
.form-group label span { color:#9b1c1c; }
.form-group input, .form-group select, .form-group textarea { border:1px solid var(--border); padding:12px 14px; font-family:'DM Sans',sans-serif; font-size:.9rem; color:var(--text); background:var(--cream); outline:none; transition:var(--transition); width:100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--navy); background:var(--white); }
.form-group textarea { resize:vertical; min-height:100px; }
.form-gdpr { font-size:.78rem; color:var(--text-light); line-height:1.6; }
.form-gdpr label { display:flex; align-items:flex-start; gap:10px; cursor:pointer; }
.form-gdpr a { color:var(--gold); }
.btn-form-submit { background:var(--navy); color:var(--white); border:none; padding:16px; font-family:'DM Sans',sans-serif; font-size:.85rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; cursor:pointer; transition:var(--transition); width:100%; }
.btn-form-submit:hover { background:var(--navy-light); }

/* FOOTER */
.footer { background:var(--navy); padding:60px 40px; }
.footer-inner { max-width:var(--max-w); margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:28px; text-align:center; }
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-logo-mark { width:44px; height:44px; background:var(--gold); color:var(--navy); font-family:'Cinzel',serif; font-size:.85rem; display:flex; align-items:center; justify-content:center; border-radius:4px; flex-shrink:0; }
.footer-logo-text { display:flex; flex-direction:column; gap:2px; text-align:left; }
.footer-logo-text span:first-child { color:var(--white); font-size:.82rem; font-weight:500; }
.footer-logo-text span:last-child { color:rgba(255,255,255,.4); font-size:.7rem; }
.footer-links { display:flex; gap:28px; flex-wrap:wrap; justify-content:center; }
.footer-links a { color:rgba(255,255,255,.5); text-decoration:none; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; transition:var(--transition); }
.footer-links a:hover { color:var(--gold); }
.footer-compliance { display:flex; gap:12px; align-items:center; flex-wrap:wrap; justify-content:center; font-size:.72rem; color:rgba(255,255,255,.3); letter-spacing:.08em; }
.footer-bottom { display:flex; gap:32px; font-size:.72rem; color:rgba(255,255,255,.25); flex-wrap:wrap; justify-content:center; padding-top:20px; border-top:1px solid rgba(255,255,255,.08); width:100%; }

/* PROPERTIES PAGE */
.page-hero { background:var(--navy); padding:140px 40px 80px; text-align:center; }
.page-hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,5vw,4rem); font-weight:300; color:var(--white); line-height:1.1; margin-bottom:16px; }
.page-hero-sub { color:rgba(255,255,255,.55); font-size:.95rem; font-weight:300; }
.filters-bar { background:var(--white); border-bottom:1px solid var(--border); padding:20px 40px; position:sticky; top:68px; z-index:100; }
.filters-inner { max-width:var(--max-w); margin:0 auto; display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.filter-select { border:1px solid var(--border); padding:9px 14px; font-family:'DM Sans',sans-serif; font-size:.82rem; color:var(--text); background:var(--white); outline:none; cursor:pointer; min-width:160px; }
.filter-select:focus { border-color:var(--navy); }
.filter-btn { background:var(--navy); color:var(--white); border:none; padding:9px 20px; font-family:'DM Sans',sans-serif; font-size:.82rem; font-weight:500; cursor:pointer; letter-spacing:.08em; text-transform:uppercase; transition:var(--transition); }
.filter-btn:hover { background:var(--navy-light); }
.props-section { padding:60px 40px; }
.props-inner { max-width:var(--max-w); margin:0 auto; }
.props-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:28px; }
.prop-full-card { background:var(--white); border:1px solid var(--border); overflow:hidden; transition:var(--transition); }
.prop-full-card:hover { box-shadow:0 16px 48px rgba(13,37,69,.1); transform:translateY(-4px); }
.prop-full-img { height:240px; background:linear-gradient(135deg,var(--navy-light),var(--navy)); overflow:hidden; position:relative; }
.prop-full-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.prop-full-card:hover .prop-full-img img { transform:scale(1.06); }
.prop-full-status { position:absolute; top:16px; right:16px; background:var(--gold); color:var(--navy); font-size:.68rem; font-weight:700; padding:4px 10px; letter-spacing:.08em; text-transform:uppercase; }
.prop-full-body { padding:28px; }
.prop-full-price { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:600; color:var(--navy); margin-bottom:6px; }
.prop-full-address { font-size:.875rem; color:var(--text-mid); margin-bottom:16px; }
.prop-full-specs { display:flex; gap:20px; font-size:.8rem; color:var(--text-light); margin-bottom:16px; border-top:1px solid var(--border); padding-top:16px; }
.prop-full-desc { font-size:.82rem; color:var(--text-mid); line-height:1.7; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:20px; }
.prop-full-cta { display:flex; gap:10px; }
.prop-tag { display:inline-flex; align-items:center; padding:3px 10px; font-size:.68rem; font-weight:600; letter-spacing:.05em; border-radius:2px; margin-right:6px; }
.prop-tag-luxury { background:var(--navy); color:var(--gold); }
.prop-tag-investment { background:#e0e7ff; color:#3730a3; }
.prop-tag-hmo { background:#fef3c7; color:#92400e; }
.no-props { grid-column:1/-1; text-align:center; padding:80px 20px; background:var(--white); border:1px solid var(--border); }
.no-props h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--navy); margin-bottom:8px; }
.no-props p { color:var(--text-mid); font-size:.9rem; margin-bottom:24px; }

/* PRIVACY PAGE */
.content-page { max-width:760px; margin:0 auto; padding:120px 40px 80px; }
.content-page h1 { font-family:'Cormorant Garamond',serif; font-size:2.5rem; color:var(--navy); margin-bottom:8px; }
.content-page .date { color:var(--text-light); font-size:.82rem; margin-bottom:40px; }
.content-page h2 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--navy); margin:32px 0 12px; }
.content-page p, .content-page li { font-size:.9rem; color:var(--text-mid); line-height:1.85; margin-bottom:12px; }
.content-page ul { padding-left:20px; }

/* RESPONSIVE */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:1fr 1fr; }
  .about-grid { grid-template-columns:1fr; gap:48px; }
  .about-frame { max-width:340px; }
  .contact-grid { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .nav-phone { display:none; }
  .nav-burger { display:flex; }
  .why-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .section { padding:72px 0; }
  .services-grid { grid-template-columns:1fr; }
  .properties-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .hero-stats { gap:20px; }
  .hero-title-line { font-size:clamp(2.2rem,8vw,3.5rem); }
  .form-row { grid-template-columns:1fr; }
  .nav { padding:0 20px; }
  .container { padding:0 20px; }
  .about-grid { padding:0 20px; }
  .contact-form-wrap { padding:24px; }
  .hero-content { padding:120px 20px 60px; }
  .props-grid { grid-template-columns:1fr; }
  .filters-bar { padding:16px 20px; top:68px; }
  .props-section { padding:40px 20px; }
  .page-hero { padding:120px 20px 60px; }
}
