A cleaned text extract from the T1985 archive, shown for source transparency. This is one of the documents T1985 Intelligence draws on. Restricted, financial, and personal material is excluded from public view.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Keturah Ardh - Land Flow Cycle | Where Luxury Meets Wellness</title> <meta name="description" content="Discover Keturah Ardh's revolutionary Land Flow Cycle - 8 phases of sustainable luxury development with 93 clusters and 558 townhouses. MAG Group and Fäm Properties exclusive partnership."> <style> :root { --primary-gold: #D4AF37; --deep-gold: #B8941F; --light-gold: #F4E4A6; --charcoal: #2C2C2C; --soft-white: #FAFAFA; --light-gray: #F5F5F5; --medium-gray: #E0E0E0; --text-dark: #333333; --text-light: #666666; --accent-blue: #4A90E2; --success-green: #27AE60; --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--deep-gold)); --gradient-secondary: linear-gradient(135deg, var(--light-gold), var(--primary-gold)); --shadow-light: 0 2px 10px rgba(0,0,0,0.1); --shadow-medium: 0 4px 20px rgba(0,0,0,0.15); --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2); } • { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--text-dark); background-color: var(--soft-white); overflow-x: hidden; } / Floating Background Elements / .floating-elements { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; overflow: hidden; } .floating-element { position: absolute; background: var(--gradient-secondary); border-radius: 50%; opacity: 0.1; animation: float 20s infinite linear; } .floating-element:nth-child(1) { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; } .floating-element:nth-child(2) { width: 120px; height: 120px; top: 60%; right: 15%; animation-delay: -5s; } .floating-element:nth-child(3) { width: 60px; height: 60px; top: 80%; left: 70%; animation-delay: -10s; } @keyframes float { 0% { transform: translateY(0px) rotate(0deg); } 33% { transform: translateY(-20px) rotate(120deg); } 66% { transform: translateY(10px) rotate(240deg); } 100% { transform: translateY(0px) rotate(360deg); } } / Header / .header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; box-shadow: var(--shadow-light); transition: all 0.3s ease; } .header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-medium); } .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; } .logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; color: var(--charcoal); text-decoration: none; } .logo-icon { width: 40px; height: 40px; background: var(--gradient-primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; } .nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; } .nav-link { color: var(--text-dark); text-decoration: none; font-weight: 500; transition: color 0.3s ease; position: relative; } .nav-link:hover { color: var(--primary-gold); } .nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary-gold); transition: width 0.3s ease; } .nav-link:hover::after { width: 100%; } .cta-button { background: var(--gradient-primary); color: white; padding: 0.75rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; box-shadow: var(--shadow-light); } .cta-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); } / Hero Section / .hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--soft-white) 0%, var(--light-gray) 100%); position: relative; overflow: hidden; } .hero-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .hero-content h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.25rem; color: var(--text-light); margin-bottom: 2rem; line-height: 1.6; } .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; } .stat-item { text-align: center; padding: 1rem; background: white; border-radius: 12px; box-shadow: var(--shadow-light); } .stat-number { font-size: 2rem; font-weight: 700; color: var(--primary-gold); display: block; } .stat-label { font-size: 0.9rem; color: var(--text-light); margin-top: 0.5rem; } .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; } .btn-primary { background: var(--gradient-primary); color: white; padding: 1rem 2rem; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; box-shadow: var(--shadow-light); border: none; cursor: pointer; } .btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); } .btn-secondary { background: transparent; color: var(--text-dark); padding: 1rem 2rem; border: 2px solid var(--primary-gold); border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; } .btn-secondary:hover { background: var(--primary-gold); color: white; } .hero-visual { position: relative; height: 500px; background: var(--gradient-secondary); border-radius: 20px; display: flex; align-items: center; justify-content: center; overflow: hidden; } .hero-visual::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); } .hero-visual-content { text-align: center; color: white; z-index: 1; } .hero-visual-icon { font-size: 4rem; margin-bottom: 1rem; } .hero-visual-text { font-size: 1.5rem; font-weight: 600; } / Land Flow Cycle Section / .land-flow-section { padding: 6rem 0; background: white; } .section-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .section-header { text-align: center; margin-bottom: 4rem; } .section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--charcoal); } .section-subtitle { font-size: 1.2rem; color: var(--text-light); max-width: 600px; margin: 0 auto; } .land-flow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; } .flow-phase { background: white; border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-light); transition: all 0.3s ease; border: 1px solid var(--medium-gray); position: relative; overflow: hidden; } .flow-phase::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-primary); } .flow-phase:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); } .phase-number { display: inline-block; width: 40px; height: 40px; background: var(--gradient-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 1rem; } .phase-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; color: var(--charcoal); } .phase-description { color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; } .phase-zone { background: var(--light-gold); color: var(--deep-gold); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; display: inline-block; } / Universal Zones Section / .universal-zones-section { padding: 6rem 0; background: var(--light-gray); } .zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; } .zone-card { background: white; border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-light); transition: all 0.3s ease; position: relative; overflow: hidden; } .zone-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-primary); } .zone-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); } .zone-icon { width: 60px; height: 60px; background: var(--gradient-secondary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; } .zone-title { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: var(--charcoal); } .zone-function { color: var(--primary-gold); font-weight: 600; margin-bottom: 1rem; } .zone-description { color: var(--text-light); line-height: 1.6; } / Smart Community Integration / .smart-community-section { padding: 6rem 0; background: white; } .smart-phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .smart-phase { background: var(--light-gray); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; } .smart-phase:hover { background: white; box-shadow: var(--shadow-medium); } .smart-phase-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; color: var(--charcoal); } .smart-features { list-style: none; } .smart-features li { padding: 0.5rem 0; color: var(--text-light); position: relative; padding-left: 1.5rem; } .smart-features li::before { content: '✓'; position: absolute; left: 0; color: var(--success-green); font-weight: bold; } / Investment Calculator / .investment-section { padding: 6rem 0; background: var(--light-gray); } .calculator-container { background: white; border-radius: 20px; padding: 3rem; box-shadow: var(--shadow-medium); margin-top: 3rem; } .calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } .calculator-inputs { display: flex; flex-direction: column; gap: 1.5rem; } .input-group { display: flex; flex-direction: column; gap: 0.5rem; } .input-label { font-weight: 600; color: var(--charcoal); } .input-field { padding: 1rem; border: 2px solid var(--medium-gray); border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease; } .input-field:focus { outline: none; border-color: var(--primary-gold); } .select-field { padding: 1rem; border: 2px solid var(--medium-gray); border-radius: 8px; font-size: 1rem; background: white; cursor: pointer; } .calculator-results { background: var(--light-gray); border-radius: 12px; padding: 2rem; } .result-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--medium-gray); } .result-item:last-child { border-bottom: none; } .result-label { font-weight: 600; color: var(--charcoal); } .result-value { font-size: 1.2rem; font-weight: 700; color: var(--primary-gold); } / Partnership Section / .partnership-section { padding: 6rem 0; background: white; } .partnership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem; } .partner-card { text-align: center; padding: 2rem; background: var(--light-gray); border-radius: 16px; transition: all 0.3s ease; } .partner-card:hover { background: white; box-shadow: var(--shadow-medium); } .partner-logo { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: white; font-size: 2rem; font-weight: bold; } .partner-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--charcoal); } .partner-role { color: var(--primary-gold); font-weight: 600; margin-bottom: 1rem; } .partner-description { color: var(--text-light); line-height: 1.6; } / Contact Section / .contact-section { padding: 6rem 0; background: var(--charcoal); color: white; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; } .contact-info h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--primary-gold); } .contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; } .contact-icon { width: 40px; height: 40px; background: var(--primary-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .contact-form { display: flex; flex-direction: column; gap: 1.5rem; } .form-group { display: flex; flex-direction: column; gap: 0.5rem; } .form-label { font-weight: 600; color: var(--light-gold); } .form-input { padding: 1rem; border: 2px solid var(--medium-gray); border-radius: 8px; font-size: 1rem; background: white; } .form-textarea { padding: 1rem; border: 2px solid var(--medium-gray); border-radius: 8px; font-size: 1rem; background: white; min-height: 120px; resize: vertical; } / Footer / .footer { background: var(--charcoal); color: white; padding: 3rem 0 1rem; border-top: 1px solid var(--medium-gray); } .footer-content { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .footer-section h4 { color: var(--primary-gold); margin-bottom: 1rem; font-size: 1.2rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: var(--light-gray); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--primary-gold); } .footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--medium-gray); color: var(--light-gray); } / Responsive Design / @media (max-width: 768px) { .nav-menu { display: none; } .hero-container { grid-template-columns: 1fr; text-align: center; } .hero-content h1 { font-size: 2.5rem; } .hero-stats { grid-template-columns: 1fr; } .calculator-grid { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } .section-title { font-size: 2rem; } } / Animations / .fade-in { opacity: 0; transform: translateY(30px); animation: fadeIn 0.8s ease forwards; } @keyframes fadeIn { to { opacity: 1; transform: translateY(0); } } .slide-in-left { opacity: 0; transform: translateX(-50px); animation: slideInLeft 0.8s ease forwards; } @keyframes slideInLeft { to { opacity: 1; transform: translateX(0); } } .slide-in-right { opacity: 0; transform: translateX(50px); animation: slideInRight 0.8s ease forwards; } @keyframes slideInRight { to { opacity: 1; transform: translateX(0); } } </style> </head> <body> <!-- Floating Background Elements --> <div class="floating-elements"> <div class="floating-element"></div> <div class="floating-element"></div> <div class="floating-element"></div> </div> <!-- Header --> <header class="header" id="header"> <div class="nav-container"> <a href="#" class="logo"> <div class="logo-icon">K</div> <span>Keturah Ardh</span> </a> <nav class="nav-menu"> <a hre …