
:root {
    --ink: #34383c;
    --ink-soft: #5f6468;
    --green: #58a52c;
    --green-dark: #41851f;
    --green-soft: #edf7e8;
    --line: #dfe3e5;
    --surface: #ffffff;
    --surface-soft: #f5f7f6;
    --shadow: 0 18px 55px rgba(31, 37, 40, .10);
    --radius: 20px;
    --container: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; background: #fff; padding: 10px 14px; }
.skip-link:focus { top: 16px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.topbar { background: var(--ink); color: #fff; font-size: 13px; }
.topbar-inner { min-height: 44px; display:flex; justify-content:space-between; align-items:center; gap:20px; }
.topbar-contact, .topbar-social { display:flex; align-items:center; gap:14px; }
.topbar-social a { opacity:.92; }
.topbar-social a:hover { opacity:1; color:#bce8a6; }

.site-header { background: rgba(255,255,255,.96); border-bottom:1px solid rgba(52,56,60,.08); position:sticky; top:0; z-index:50; backdrop-filter:blur(14px); }
.header-inner { min-height:94px; display:flex; align-items:center; gap:30px; }
.brand { flex:0 0 auto; }
.brand img { width:225px; max-height:76px; object-fit:contain; }
.main-nav { margin-left:auto; display:flex; align-items:center; gap:27px; font-size:14px; font-weight:600; }
.main-nav a { padding:34px 0 30px; position:relative; }
.main-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:23px; height:2px; background:var(--green); transition:.2s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { right:0; }
.header-portal { white-space:nowrap; }
.menu-toggle { display:none; border:0; background:transparent; padding:8px; }
.menu-toggle span:not(.sr-only) { width:24px; height:2px; background:var(--ink); display:block; margin:5px; }

.button {
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    border-radius:7px; min-height:48px; padding:0 23px; font-weight:750;
    border:1px solid transparent; transition:.2s ease; cursor:pointer;
}
.button-green { background:var(--green); color:#fff; box-shadow:0 10px 24px rgba(88,165,44,.22); }
.button-green:hover { background:var(--green-dark); transform:translateY(-1px); }
.button-dark { background:var(--ink); color:#fff; }
.button-dark:hover { background:#202428; }
.button-outline { border-color:var(--ink); background:#fff; }
.button-outline:hover { border-color:var(--green); color:var(--green-dark); }
.button-light { background:#fff; color:var(--ink); }
.button-small { min-height:40px; padding:0 17px; font-size:14px; }

.hero {
    position:relative; min-height:570px; overflow:hidden;
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 39%, rgba(255,255,255,.18) 68%, rgba(255,255,255,.02) 100%),
      url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
}
.hero-inner { min-height:570px; display:flex; align-items:center; padding:70px 0 105px; }
.hero-content { max-width:690px; }
.eyebrow { color:var(--green-dark); font-size:13px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }
.hero h1 { font-size:clamp(44px,6vw,72px); line-height:1.03; margin:13px 0 22px; max-width:780px; letter-spacing:-.045em; }
.hero h1 span { color:var(--green); }
.hero p { font-size:19px; max-width:660px; color:#4d5256; margin:0 0 31px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; }

.trust-strip {
    margin-top:-69px; position:relative; z-index:4;
    display:grid; grid-template-columns:repeat(4,1fr);
    background:#fff; border-radius:13px; box-shadow:var(--shadow); padding:24px 18px;
}
.trust-item { display:flex; align-items:center; gap:14px; padding:7px 21px; border-right:1px solid var(--line); }
.trust-item:last-child { border-right:0; }
.icon-ring { width:48px; height:48px; border-radius:50%; display:grid; place-items:center; background:var(--green-soft); color:var(--green-dark); font-size:23px; flex:0 0 auto; }
.trust-item strong { display:block; font-size:14px; line-height:1.3; }
.trust-item span { color:var(--ink-soft); font-size:12px; }

.section { padding:95px 0; }
.section-soft { background:var(--surface-soft); }
.section-heading { max-width:720px; margin:0 auto 48px; text-align:center; }
.section-heading.left { margin-left:0; text-align:left; }
.section-heading h2 { font-size:clamp(34px,4vw,48px); line-height:1.1; margin:10px 0 14px; letter-spacing:-.035em; }
.section-heading p { color:var(--ink-soft); margin:0; font-size:17px; }

.feature-grid { display:grid; grid-template-columns:repeat(5,1fr); }
.feature { text-align:center; padding:4px 28px; border-right:1px solid var(--line); }
.feature:last-child { border-right:0; }
.feature .icon-ring { margin:0 auto 18px; }
.feature h3 { font-size:17px; line-height:1.25; margin:0 0 9px; }
.feature p { color:var(--ink-soft); font-size:14px; margin:0; }

.rooms-layout { display:grid; grid-template-columns:190px 1fr; gap:32px; align-items:start; }
.rooms-intro h2 { font-size:42px; line-height:1.04; margin:9px 0 24px; letter-spacing:-.04em; }
.room-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.room-card { background:#fff; border:1px solid #e6e9ea; border-radius:12px; overflow:hidden; transition:.2s ease; position:relative; }
.room-card:hover { transform:translateY(-4px); box-shadow:0 15px 40px rgba(34,40,43,.11); }
.room-photo { aspect-ratio:4/3; width:100%; object-fit:cover; }
.room-body { padding:17px; }
.room-type { font-size:15px; font-weight:800; margin:0; }
.room-area { color:var(--ink-soft); font-size:13px; margin:2px 0 11px; }
.room-price { font-size:22px; font-weight:850; margin-bottom:12px; }
.room-price small { font-size:12px; color:var(--ink-soft); font-weight:600; }
.badge { display:inline-flex; border-radius:999px; padding:5px 9px; font-size:11px; font-weight:800; }
.badge.available { background:var(--green-soft); color:var(--green-dark); }
.badge.unavailable { background:#f0f0f0; color:#696e71; }
.room-meta { display:flex; gap:13px; flex-wrap:wrap; border-top:1px solid var(--line); margin-top:14px; padding-top:13px; font-size:11px; color:var(--ink-soft); }

.split-section { display:grid; grid-template-columns:1.05fr 1fr; gap:70px; align-items:center; }
.split-section img { border-radius:var(--radius); box-shadow:var(--shadow); }
.info-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:23px; margin-top:30px; }
.info-card { padding:24px; border:1px solid var(--line); border-radius:14px; background:#fff; }
.info-card h3 { margin:12px 0 7px; font-size:18px; }
.info-card p { margin:0; color:var(--ink-soft); font-size:14px; }

.portal-panel { background:var(--ink); color:#fff; border-radius:18px; padding:40px; display:grid; grid-template-columns:1fr 1fr; gap:45px; align-items:center; overflow:hidden; }
.portal-panel h2 { font-size:35px; line-height:1.1; margin:0 0 13px; }
.portal-panel p { color:#e4e8e9; }
.check-list { display:grid; grid-template-columns:repeat(2,1fr); gap:9px 20px; padding:0; list-style:none; margin:24px 0; font-size:14px; }
.check-list li::before { content:"✓"; display:inline-grid; place-items:center; width:18px; height:18px; border-radius:50%; margin-right:8px; background:var(--green); color:#fff; font-size:11px; }
.portal-screen { min-height:270px; border-radius:15px; background:linear-gradient(145deg,#fff,#e9eeeb); padding:18px; color:var(--ink); box-shadow:0 25px 60px rgba(0,0,0,.26); transform:rotate(-1deg); }
.fake-nav { height:18px; width:45%; background:#d5dadd; border-radius:4px; margin-bottom:20px; }
.fake-total { width:55%; height:58px; border-radius:10px; background:#edf7e8; margin-bottom:14px; }
.fake-row { height:36px; border-radius:7px; background:#edf0f1; margin:8px 0; }

.stats { background:var(--ink); color:#fff; }
.stats-grid { min-height:115px; display:grid; grid-template-columns:repeat(4,1fr); align-items:center; }
.stat { text-align:center; border-right:1px solid rgba(255,255,255,.2); }
.stat:last-child { border-right:0; }
.stat strong { display:block; font-size:27px; }
.stat span { color:#dce0e1; font-size:13px; }

.page-hero { padding:82px 0; background:linear-gradient(120deg,#f7f9f8,#edf4ea); }
.page-hero h1 { font-size:clamp(42px,5vw,64px); line-height:1.06; margin:12px 0; letter-spacing:-.04em; }
.page-hero p { max-width:740px; color:var(--ink-soft); font-size:18px; }

.filters { display:grid; grid-template-columns:1.2fr repeat(3,1fr) auto; gap:12px; padding:18px; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:0 12px 35px rgba(31,37,40,.06); margin-top:-33px; position:relative; }
.field label { display:block; font-size:12px; font-weight:800; margin-bottom:6px; }
.field input, .field select, .field textarea {
    width:100%; border:1px solid #cfd5d7; border-radius:8px; min-height:46px; padding:10px 12px; background:#fff; color:var(--ink);
}
.field textarea { min-height:135px; resize:vertical; }
.all-rooms-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.empty-state { padding:50px; text-align:center; border:1px dashed #cbd1d3; border-radius:15px; grid-column:1/-1; }

.room-detail-hero { padding:55px 0 20px; }
.room-title-row { display:flex; justify-content:space-between; gap:30px; align-items:flex-end; margin-bottom:28px; }
.room-title-row h1 { font-size:clamp(36px,4vw,54px); margin:7px 0; line-height:1.06; }
.price-large { font-size:40px; font-weight:900; white-space:nowrap; }
.price-large small { display:block; text-align:right; font-size:13px; color:var(--ink-soft); font-weight:600; }
.gallery { display:grid; grid-template-columns:2fr 1fr 1fr; grid-template-rows:250px 250px; gap:10px; border-radius:18px; overflow:hidden; }
.gallery img { width:100%; height:100%; object-fit:cover; }
.gallery img:first-child { grid-row:1/3; }
.detail-layout { display:grid; grid-template-columns:minmax(0,1fr) 360px; gap:50px; align-items:start; }
.detail-content h2 { font-size:28px; margin:45px 0 14px; }
.detail-content p { color:#555b5e; }
.fact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; }
.fact { padding:18px; border-radius:11px; border:1px solid var(--line); background:#fff; }
.fact small { display:block; color:var(--ink-soft); }
.fact strong { font-size:16px; }
.enquiry-card { position:sticky; top:120px; padding:27px; border-radius:16px; border:1px solid var(--line); box-shadow:var(--shadow); background:#fff; }
.enquiry-card h2 { margin:0 0 5px; font-size:25px; }
.form-grid { display:grid; gap:13px; }
.form-message { border-radius:8px; padding:12px 14px; margin-bottom:16px; }
.form-message.success { background:var(--green-soft); color:var(--green-dark); }
.form-message.error { background:#fff0f0; color:#9d2626; }
.map-placeholder { height:380px; border-radius:15px; background:linear-gradient(135deg,#e7ece8,#d8e5d4); display:grid; place-items:center; color:var(--ink-soft); text-align:center; padding:30px; }

.content-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.content-card { padding:30px; border:1px solid var(--line); border-radius:15px; background:#fff; }
.content-card h2, .content-card h3 { margin-top:0; }
.content-card p { color:var(--ink-soft); }
.steps { counter-reset:step; display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.step { counter-increment:step; padding:28px; border:1px solid var(--line); border-radius:15px; }
.step::before { content:counter(step); display:grid; place-items:center; width:38px; height:38px; border-radius:50%; background:var(--green); color:#fff; font-weight:800; margin-bottom:17px; }

.contact-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:65px; }
.contact-card { background:var(--surface-soft); border-radius:15px; padding:28px; margin-top:22px; }
.contact-form { padding:35px; border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow); }
.two-cols { display:grid; grid-template-columns:1fr 1fr; gap:13px; }

.legal { max-width:850px; }
.legal h2 { margin-top:38px; }
.legal p, .legal li { color:var(--ink-soft); }

.site-footer { background:#2f3438; color:#fff; padding:75px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:60px; }
.footer-logo { width:230px; background:#fff; border-radius:8px; padding:8px; margin-bottom:18px; }
.footer-grid h2 { font-size:16px; margin:0 0 18px; }
.footer-grid a, .footer-grid p { display:block; color:#d5d9db; margin:0 0 10px; font-size:14px; }
.footer-grid a:hover { color:#b9ea9f; }
.footer-social { display:flex; gap:18px; }
.footer-bottom { margin-top:55px; border-top:1px solid rgba(255,255,255,.14); min-height:72px; display:flex; justify-content:space-between; align-items:center; gap:20px; font-size:13px; color:#c9ced0; }
.footer-bottom div { display:flex; gap:22px; }

@media (max-width: 1050px) {
    .main-nav { position:fixed; inset:138px 0 auto; background:#fff; display:none; padding:24px 20px 32px; flex-direction:column; align-items:flex-start; box-shadow:0 18px 30px rgba(0,0,0,.12); }
    .main-nav.is-open { display:flex; }
    .main-nav a { padding:8px 0; }
    .main-nav a::after { bottom:4px; }
    .menu-toggle { display:block; margin-left:auto; }
    .header-portal { display:none; }
    .feature-grid { grid-template-columns:repeat(3,1fr); row-gap:35px; }
    .feature:nth-child(3) { border-right:0; }
    .room-grid { grid-template-columns:repeat(2,1fr); }
    .all-rooms-grid { grid-template-columns:repeat(2,1fr); }
    .gallery { grid-template-columns:2fr 1fr; }
    .gallery img:nth-child(n+4) { display:none; }
    .detail-layout { grid-template-columns:1fr; }
    .enquiry-card { position:static; }
}
@media (max-width: 760px) {
    .container { width:min(calc(100% - 28px), var(--container)); }
    .topbar-contact span:not(:first-child), .topbar-separator, .topbar-social a:not(:last-child) { display:none; }
    .topbar-inner { min-height:38px; }
    .header-inner { min-height:78px; }
    .brand img { width:185px; }
    .main-nav { top:116px; }
    .hero, .hero-inner { min-height:610px; }
    .hero { background:linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)),url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1000&q=80') center/cover; }
    .hero-inner { padding:60px 0 105px; }
    .hero h1 { font-size:46px; }
    .hero p { font-size:17px; }
    .hero-actions .button { width:100%; }
    .trust-strip { grid-template-columns:1fr; margin-top:-58px; padding:12px 18px; }
    .trust-item { border-right:0; border-bottom:1px solid var(--line); padding:14px 5px; }
    .trust-item:last-child { border-bottom:0; }
    .section { padding:70px 0; }
    .feature-grid { grid-template-columns:1fr; }
    .feature { border-right:0; border-bottom:1px solid var(--line); padding:25px; }
    .feature:last-child { border-bottom:0; }
    .rooms-layout, .split-section, .portal-panel, .contact-layout { grid-template-columns:1fr; }
    .rooms-intro h2 { font-size:36px; }
    .room-grid, .all-rooms-grid, .content-grid, .steps, .info-grid { grid-template-columns:1fr; }
    .portal-panel { padding:28px; }
    .check-list { grid-template-columns:1fr; }
    .stats-grid { grid-template-columns:repeat(2,1fr); padding:18px 0; row-gap:25px; }
    .stat:nth-child(2) { border-right:0; }
    .filters { grid-template-columns:1fr; margin-top:20px; }
    .room-title-row { align-items:flex-start; flex-direction:column; }
    .price-large small { text-align:left; }
    .gallery { grid-template-columns:1fr; grid-template-rows:360px; }
    .gallery img:first-child { grid-row:auto; }
    .gallery img:not(:first-child) { display:none; }
    .fact-grid { grid-template-columns:repeat(2,1fr); }
    .two-cols { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:35px; }
    .footer-grid > div:first-child { grid-column:1/-1; }
    .footer-bottom { align-items:flex-start; flex-direction:column; padding:20px 0; }
}
@media (max-width: 470px) {
    .footer-grid { grid-template-columns:1fr; }
    .footer-grid > div:first-child { grid-column:auto; }
    .fact-grid { grid-template-columns:1fr; }
}


/* Tenant portal login */
.tenant-login-section {
    padding: 80px 0 95px;
    background:
        radial-gradient(circle at 12% 15%, rgba(88,165,44,.12), transparent 33%),
        linear-gradient(135deg, #f7f9f8 0%, #eef3ef 100%);
}

.tenant-login-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
    gap: 80px;
    align-items: center;
}

.tenant-login-intro h1 {
    max-width: 720px;
    margin: 12px 0 20px;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.tenant-login-lead {
    max-width: 650px;
    margin: 0 0 36px;
    color: var(--ink-soft);
    font-size: 19px;
}

.tenant-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tenant-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(52,56,60,.1);
    border-radius: 14px;
}

.tenant-benefit .icon-ring {
    width: 43px;
    height: 43px;
    font-size: 18px;
}

.tenant-benefit strong,
.tenant-benefit span {
    display: block;
}

.tenant-benefit strong {
    margin-bottom: 4px;
    font-size: 15px;
}

.tenant-benefit span {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.45;
}

.tenant-login-card {
    padding: 38px;
    background: #fff;
    border: 1px solid rgba(52,56,60,.1);
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(31,37,40,.14);
}

.tenant-login-card-header {
    margin-bottom: 27px;
    text-align: center;
}

.tenant-login-card-header img {
    width: 220px;
    margin: 0 auto 25px;
}

.tenant-login-card-header h2 {
    margin: 0 0 7px;
    font-size: 29px;
    line-height: 1.15;
}

.tenant-login-card-header p {
    margin: 0;
    color: var(--ink-soft);
}

.tenant-login-button {
    width: 100%;
    margin-top: 5px;
}

.tenant-login-help {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.tenant-login-help strong,
.tenant-login-help p {
    display: block;
}

.tenant-login-help p {
    margin: 5px 0 8px;
    color: var(--ink-soft);
    font-size: 14px;
}

.tenant-login-help a {
    color: var(--green-dark);
    font-weight: 750;
}

@media (max-width: 900px) {
    .tenant-login-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tenant-login-intro {
        text-align: center;
    }

    .tenant-login-lead {
        margin-inline: auto;
    }
}

@media (max-width: 620px) {
    .tenant-login-section {
        padding: 55px 0 70px;
    }

    .tenant-benefits {
        grid-template-columns: 1fr;
    }

    .tenant-login-card {
        padding: 25px 20px;
    }

    .tenant-login-intro h1 {
        font-size: 43px;
    }
}
