:root {
  --orange: #df5d0b;
  --orange-dark: #ba4300;
  --orange-soft: #fff0e4;
  --cream: #fffaf5;
  --cream-2: #f9efe5;
  --beige: #edddce;
  --brown: #2d2117;
  --brown-2: #493222;
  --ink: #1d1b19;
  --muted: #6d6259;
  --line: #eadbcf;
  --white: #fff;
  --green: #228b55;
  --shadow-sm: 0 10px 30px rgba(75, 45, 24, .08);
  --shadow-md: 0 18px 60px rgba(75, 45, 24, .14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffdfb;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { flex: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-sm { padding: 58px 0; }
.section-cream { background: linear-gradient(135deg, #fffaf5, #f8eee4); }
.section-white { background: #fff; }
.skip-link { position: fixed; top: -100px; left: 20px; padding: 10px 16px; background: var(--brown); color: #fff; z-index: 10000; border-radius: 8px; }
.skip-link:focus { top: 20px; }

h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin: 0 0 16px; color: var(--ink); }
h1 { font-size: clamp(42px, 6vw, 76px); letter-spacing: -.035em; }
h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -.025em; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
p { margin: 0 0 18px; color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--orange); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.text-orange { color: var(--orange); }
.lead { font-size: 18px; max-width: 640px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 32px; }
.section-heading p { max-width: 580px; }
.section-heading.center { display: block; text-align: center; }
.section-heading.center p { margin-inline: auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 22px; border-radius: 8px; border: 1px solid transparent; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .035em; transition: .25s ease; }
.btn-primary { background: linear-gradient(135deg, var(--orange), #f17421); color: #fff; box-shadow: 0 9px 22px rgba(223, 93, 11, .22); }
.btn-primary:hover { transform: translateY(-2px); background: linear-gradient(135deg, var(--orange-dark), var(--orange)); box-shadow: 0 12px 28px rgba(223, 93, 11, .3); }
.btn-outline { border-color: var(--orange); color: var(--orange); background: transparent; }
.btn-outline:hover { color: #fff; background: var(--orange); transform: translateY(-2px); }
.btn-dark { background: var(--brown); color: #fff; }
.btn-dark:hover { background: var(--brown-2); transform: translateY(-2px); }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; color: var(--orange); font-weight: 800; font-size: 14px; }
.link-arrow:hover { gap: 11px; }
.icon-orb { width: 46px; height: 46px; border-radius: 50%; display: inline-grid; place-items: center; color: var(--orange); background: var(--orange-soft); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,253,251,.96); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(234,219,207,.8); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 40px rgba(50,30,15,.08); }
.header-inner { min-height: 82px; display: grid; grid-template-columns: 210px 155px 1fr auto; align-items: center; gap: 22px; }
.brand img { width: 190px; height: auto; }
.header-tagline { padding-left: 18px; border-left: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.35; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(15px, 2vw, 30px); }
.desktop-nav a { position: relative; padding: 29px 0 26px; font-size: 13px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 19px; height: 2px; background: var(--orange); transform: scaleX(0); transition: .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--orange); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.header-call { white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); color: var(--brown); background: #fff; border-radius: 10px; }
.mobile-nav { position: fixed; inset: 0 0 0 auto; width: min(88vw, 390px); padding: 22px; background: #fffdfb; transform: translateX(105%); transition: .3s ease; z-index: 1002; box-shadow: -20px 0 60px rgba(0,0,0,.15); display: flex; flex-direction: column; gap: 3px; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.mobile-nav-head button { border: 0; background: transparent; color: var(--brown); }
.mobile-nav > a:not(.btn) { padding: 14px 6px; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-nav .btn { margin-top: 20px; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(24,16,10,.5); opacity: 0; visibility: hidden; z-index: 1001; transition: .25s ease; }
.nav-backdrop.open { opacity: 1; visibility: visible; }

.hero { position: relative; background: linear-gradient(110deg, #fff9f3 0%, #fffaf6 42%, #f5e4d5 100%); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 14% 22%, rgba(255,255,255,.95), transparent 35%); pointer-events: none; }
.hero-grid { min-height: 590px; display: grid; grid-template-columns: 48% 52%; align-items: stretch; position: relative; }
.hero-copy { padding: 76px 38px 120px 0; position: relative; z-index: 2; }
.hero-copy p { max-width: 600px; }
.hero-visual { position: relative; min-height: 590px; }
.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #fffaf5 0%, rgba(255,250,245,.73) 12%, transparent 45%); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-location { position: absolute; right: 24px; bottom: 82px; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-md); border-radius: 12px; font-weight: 800; }
.hero-location svg { color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.service-pills { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.service-pill { display: inline-flex; align-items: center; gap: 10px; min-width: 112px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.72); font-weight: 800; }
.service-pill svg { color: var(--orange); }
.hero-bullets { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 20px; max-width: 570px; }
.hero-bullets span { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 14px; font-weight: 700; }
.hero-bullets svg { color: var(--orange); }

.search-panel-wrap { position: relative; z-index: 5; margin-top: -62px; }
.search-panel { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 20px; border-radius: 16px; display: grid; grid-template-columns: 1.2fr 1fr .9fr 1fr auto; gap: 14px; align-items: end; }
.field label { display: block; margin: 0 0 7px; font-size: 11px; color: var(--muted); font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #e8ded6; border-radius: 8px; background: #fff; min-height: 48px; padding: 12px 14px; color: var(--ink); outline: none; transition: .2s; }
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(223,93,11,.1); }

.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 14px; }
.trust-card { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fffdfb; display: flex; gap: 14px; align-items: center; min-height: 102px; }
.trust-card svg { color: var(--orange); }
.trust-card strong { display: block; font-size: 14px; }
.trust-card small { color: var(--muted); line-height: 1.35; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.project-card { background: #fff; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; transition: .25s ease; box-shadow: 0 6px 20px rgba(70,40,20,.04); }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.project-image { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-image img { transform: scale(1.045); }
.badge { position: absolute; top: 13px; left: 13px; z-index: 2; padding: 6px 10px; border-radius: 5px; color: #fff; background: var(--orange); text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: .05em; }
.badge.green { background: #5b8c54; }
.badge.brown { background: #876044; }
.favorite { position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; border: 0; background: rgba(255,255,255,.93); color: #544b45; }
.favorite.active { background: var(--orange); color: #fff; }
.project-body { padding: 20px; }
.project-body h3 { font-size: 23px; margin-bottom: 8px; }
.project-location { display: flex; gap: 7px; align-items: center; color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.project-location svg { color: var(--orange); }
.project-meta { display: flex; justify-content: space-between; gap: 10px; padding-top: 15px; border-top: 1px solid var(--line); font-size: 13px; }
.project-meta span { display: flex; align-items: center; gap: 7px; }
.project-meta svg { color: var(--orange); }
.project-card .btn { width: 100%; margin-top: 16px; }
.home-project-grid { grid-template-columns: repeat(4, 1fr); }

.info-columns { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 50px; }
.info-column { padding-right: 20px; }
.info-list { display: grid; gap: 16px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .icon-orb { width: 42px; height: 42px; flex: none; }
.info-item strong { display: block; margin-bottom: 3px; }
.info-item p { margin: 0; font-size: 14px; }
.process-list { display: grid; gap: 14px; }
.process-step { display: grid; grid-template-columns: 42px 1fr; gap: 13px; }
.process-number { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--orange); color: var(--orange); border-radius: 50%; font-weight: 800; }
.process-step:not(:last-child) .process-number::after { content: ""; width: 1px; height: 25px; background: var(--orange); display: block; position: relative; top: 12px; opacity: .35; }

.testimonials { position: relative; overflow: hidden; }
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 14px; min-height: 240px; }
.stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 16px; min-height: 18px; }
.stars .rating-stars { display: inline-flex; align-items: center; gap: 4px; line-height: 1; }
.stars .testimonial-star-filled { display: block; fill: currentColor; stroke: currentColor; stroke-width: 1.4; filter: drop-shadow(0 1px 1px rgba(203, 111, 47, .16)); }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--cream-2); color: var(--orange); font-weight: 900; }
.testimonial-person strong, .testimonial-person small { display: block; }
.testimonial-person small { color: var(--muted); }

.blog-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-mini { border: 1px solid var(--line); background: #fff; border-radius: 12px; overflow: hidden; display: grid; grid-template-columns: 42% 58%; min-height: 155px; }
.blog-mini img { width: 100%; height: 100%; object-fit: cover; }
.blog-mini-body { padding: 18px; }
.blog-mini-body small { color: var(--muted); }
.blog-mini-body h3 { font-size: 18px; margin: 7px 0 12px; }

.page-hero { position: relative; background: linear-gradient(110deg, #fffaf5 0%, #fff9f4 45%, #f6e5d8 100%); overflow: hidden; }
.page-hero-grid { min-height: 405px; display: grid; grid-template-columns: 48% 52%; align-items: stretch; }
.page-hero-copy { padding: 70px 38px 70px 0; display: flex; justify-content: center; flex-direction: column; position: relative; z-index: 2; }
.page-hero-copy h1 { font-size: clamp(42px, 5vw, 66px); }
.page-hero-image { position: relative; }
.page-hero-image::before { content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,#fffaf5 0%,rgba(255,250,245,.7) 15%,transparent 48%); }
.page-hero-image img { width:100%; height:100%; object-fit:cover; }
.page-hero-features { display:flex; flex-wrap:wrap; gap:18px 25px; margin-top:20px; }
.page-hero-features span { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--muted); }
.page-hero-features svg { color:var(--orange); }
.breadcrumbs { display:flex; gap:8px; align-items:center; margin-bottom:25px; color:var(--muted); font-size:13px; }
.breadcrumbs a:hover { color:var(--orange); }

.about-founder { display:grid; grid-template-columns: 1fr 1.1fr; gap:55px; align-items:center; }
.about-founder-image { border-radius: 0 28px 28px 0; overflow:hidden; min-height:460px; }
.about-founder-image img { width:100%; height:100%; object-fit:cover; }
.signature { font-family: Georgia, serif; font-style: italic; font-size: 30px; color: var(--brown); margin-top: 20px; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow-sm); margin-top:45px; }
.stat { padding:28px; text-align:center; position:relative; }
.stat:not(:last-child)::after { content:""; position:absolute; right:0; top:22%; bottom:22%; width:1px; background:var(--line); }
.stat strong { display:block; color:var(--ink); font-family:Georgia,serif; font-size:36px; }
.stat span { color:var(--muted); font-size:13px; }
.value-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }
.value-card { padding:28px; border:1px solid var(--line); background:#fff; border-radius:15px; }
.value-card .icon-orb { margin-bottom:16px; }

.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card { padding:30px; border:1px solid var(--line); background:#fff; border-radius:15px; transition:.25s ease; }
.service-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.service-card .service-icon { color:var(--orange); margin-bottom:20px; }
.service-card p { font-size:14px; }
.process-grid { display:grid; grid-template-columns:repeat(5,1fr); border:1px solid var(--line); border-radius:18px; overflow:hidden; }
.process-card { position:relative; padding:35px 24px; background:#fff; text-align:center; }
.process-card:not(:last-child) { border-right:1px solid var(--line); }
.process-card .process-index { width:40px; height:40px; display:grid; place-items:center; margin:-55px auto 20px; border-radius:50%; border:1px solid var(--orange); background:#fff; color:var(--orange); font-weight:900; }
.process-card svg { color:var(--orange); margin-bottom:14px; }
.split-cta-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.split-cta { padding:32px; border:1px solid var(--line); border-radius:18px; background:linear-gradient(135deg,#fff,#fff5eb); display:grid; grid-template-columns:1.2fr .8fr; gap:22px; align-items:center; }
.split-cta img { width:100%; height:220px; object-fit:cover; border-radius:12px; }
.feature-icon-row { display:grid; grid-template-columns:repeat(6,1fr); gap:18px; text-align:center; }
.feature-icon-card { padding:20px 10px; }
.feature-icon-card svg { color:var(--orange); margin-bottom:12px; }
.feature-icon-card strong { display:block; font-size:14px; }
.feature-icon-card p { font-size:12px; margin:5px 0 0; }

.projects-hero .page-hero-grid { min-height:375px; }
.filter-panel { background:#fff; border:1px solid var(--line); border-radius:15px; padding:18px; box-shadow:var(--shadow-md); display:grid; grid-template-columns:repeat(4,1fr) auto; gap:14px; margin-top:-38px; position:relative; z-index:3; }
.results-toolbar { display:flex; justify-content:space-between; gap:20px; align-items:center; margin:45px 0 25px; }
.results-toolbar h2 { font-size:32px; margin:0; }
.results-toolbar select { min-height:44px; padding:0 42px 0 14px; border:1px solid var(--line); background:#fff; border-radius:8px; }
.project-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.no-results { display:none; grid-column:1/-1; text-align:center; padding:50px; background:var(--cream); border-radius:15px; }
.pagination { display:flex; justify-content:center; gap:9px; margin-top:38px; }
.pagination a, .pagination button { width:42px; height:42px; display:grid; place-items:center; border:1px solid var(--line); background:#fff; border-radius:7px; font-weight:800; }
.pagination .active { background:var(--orange); color:#fff; border-color:var(--orange); }
.featured-project { display:grid; grid-template-columns:42% 58%; border:1px solid var(--line); border-radius:18px; overflow:hidden; background:linear-gradient(135deg,#fff,#fff2e6); margin-top:35px; }
.featured-project img { width:100%; height:100%; object-fit:cover; min-height:280px; }
.featured-project-copy { padding:38px; }

.project-detail-hero { position:relative; min-height:560px; overflow:hidden; background:linear-gradient(100deg,#fff9f3 0%,#f7e6d7 55%,#e6c5ab 100%); }
.project-detail-grid { display:grid; grid-template-columns:1fr 340px; gap:36px; position:relative; z-index:2; padding:52px 0 30px; }
.project-detail-copy { min-height:470px; max-width:760px; }
.project-detail-copy h1 { font-size:clamp(48px,6vw,72px); }
.project-bg { position:absolute; inset:0 0 0 42%; }
.project-bg::before { content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,#fff9f3 0%,rgba(255,249,243,.7) 14%,transparent 45%); }
.project-bg img { width:100%; height:100%; object-fit:cover; object-position:center 15%; }
.project-highlights { display:flex; flex-wrap:wrap; gap:20px; margin-top:30px; }
.project-highlights span { min-width:125px; display:flex; align-items:center; gap:9px; font-size:13px; font-weight:800; }
.project-highlights svg { color:var(--orange); }
.enquiry-card { position:sticky; top:104px; background:rgba(255,255,255,.96); border:1px solid rgba(234,219,207,.9); box-shadow:var(--shadow-md); border-radius:16px; padding:26px; align-self:start; }
.enquiry-card h3 { font-size:28px; }
.enquiry-card .field { margin-bottom:13px; }
.enquiry-card .btn { width:100%; }
.enquiry-card-note { display:flex; justify-content:center; gap:18px; padding-top:18px; margin-top:18px; border-top:1px solid var(--line); color:var(--muted); font-size:12px; }
.project-summary-bar { display:grid; grid-template-columns:repeat(5,1fr); background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow-md); margin-top:-48px; position:relative; z-index:4; }
.summary-item { padding:22px; display:flex; gap:12px; align-items:center; }
.summary-item:not(:last-child) { border-right:1px solid var(--line); }
.summary-item svg { color:var(--orange); }
.summary-item small, .summary-item strong { display:block; }
.summary-item small { color:var(--muted); }
.amenities-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:12px; }
.amenity { padding:22px 12px; border:1px solid var(--line); border-radius:12px; text-align:center; background:#fff; }
.amenity svg { color:var(--orange); margin-bottom:8px; }
.amenity strong { display:block; font-size:13px; }
.gallery-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.gallery-item { border:0; padding:0; border-radius:12px; overflow:hidden; aspect-ratio:16/10; background:#eee; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:.3s; }
.gallery-item:hover img { transform:scale(1.06); }
.floor-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.floor-card { display:grid; grid-template-columns:45% 55%; border:1px solid var(--line); border-radius:13px; overflow:hidden; background:#fff; }
.floor-card img { width:100%; height:100%; object-fit:contain; background:#faf7f4; }
.floor-copy { padding:22px; }
.location-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.location-list, .map-card { padding:28px; border:1px solid var(--line); border-radius:16px; background:#fff; }
.location-list-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.location-list-grid span { display:flex; align-items:center; gap:8px; color:var(--muted); font-size:13px; }
.location-list-grid svg { color:var(--orange); }
.map-card iframe { width:100%; min-height:280px; border:0; border-radius:12px; }

.blog-layout { display:grid; grid-template-columns:minmax(0,1fr) 315px; gap:34px; align-items:start; }
.featured-article { display:grid; grid-template-columns:48% 52%; border:1px solid var(--line); border-radius:16px; overflow:hidden; background:#fff; margin-bottom:30px; }
.featured-article img { width:100%; height:100%; object-fit:cover; min-height:330px; }
.featured-article-copy { padding:36px; }
.blog-filter-tabs { display:flex; flex-wrap:wrap; gap:10px; margin:25px 0; }
.blog-filter-tabs button { padding:10px 17px; border:1px solid var(--line); background:#fff; border-radius:999px; font-size:13px; font-weight:700; }
.blog-filter-tabs button.active, .blog-filter-tabs button:hover { background:var(--orange); color:#fff; border-color:var(--orange); }
.blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.blog-card { border:1px solid var(--line); border-radius:14px; background:#fff; overflow:hidden; transition:.25s; }
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.blog-card img { width:100%; aspect-ratio:16/10; object-fit:cover; }
.blog-card-body { padding:20px; }
.blog-card-body .category { color:var(--orange); text-transform:uppercase; font-size:10px; font-weight:900; letter-spacing:.06em; }
.blog-card-body h3 { font-size:21px; margin:10px 0; }
.blog-card-meta { display:flex; gap:12px; color:var(--muted); font-size:12px; margin-bottom:14px; }
.sidebar-card { padding:24px; border:1px solid var(--line); border-radius:15px; background:#fff; margin-bottom:20px; }
.sidebar-card h3 { font-size:24px; }
.sidebar-post { display:grid; grid-template-columns:80px 1fr; gap:12px; padding:12px 0; border-bottom:1px solid var(--line); }
.sidebar-post:last-child { border-bottom:0; }
.sidebar-post img { width:80px; height:65px; object-fit:cover; border-radius:8px; }
.sidebar-post strong { font-size:13px; line-height:1.35; }
.sidebar-post small { color:var(--muted); }
.category-list { display:grid; gap:8px; }
.category-list button { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border:0; background:transparent; font-weight:700; color:var(--ink); }
.category-list button:hover { color:var(--orange); }
.subscribe-card { background:linear-gradient(135deg,#fff7ef,#fff); }
.subscribe-card .btn { width:100%; margin-top:10px; }

.article-layout { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:38px; align-items:start; }
.article-main h1 { font-size:clamp(40px,5vw,60px); }
.article-meta { display:flex; flex-wrap:wrap; gap:16px; color:var(--muted); font-size:13px; margin:18px 0 25px; }
.article-hero-image { width:100%; max-height:470px; object-fit:cover; border-radius:16px; margin-bottom:25px; }
.article-main h2 { font-size:32px; margin-top:34px; }
.article-main h3 { font-size:25px; margin-top:26px; }
.article-toc { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; padding:20px; background:var(--cream); border-radius:14px; margin:25px 0; }
.article-toc a { display:flex; gap:8px; align-items:center; font-size:13px; font-weight:700; }
.article-toc svg { color:var(--orange); }
.article-quote { margin:28px 0; padding:28px; border-left:4px solid var(--orange); background:var(--cream); border-radius:0 14px 14px 0; font-family:Georgia,serif; font-size:25px; color:var(--brown); }
.author-box { display:grid; grid-template-columns:86px 1fr; gap:20px; padding:24px; border:1px solid var(--line); background:#fff7ef; border-radius:15px; margin-top:30px; }
.author-avatar { width:86px; height:86px; display:grid; place-items:center; border-radius:50%; background:var(--orange); color:#fff; font-size:28px; font-weight:900; }
.related-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:25px; }
.related-card img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:10px; }
.related-card small { color:var(--orange); font-weight:800; text-transform:uppercase; }
.related-card h4 { font-size:17px; margin-top:8px; }

.contact-hero .page-hero-grid { min-height:420px; }
.contact-grid { display:grid; grid-template-columns:1.25fr .85fr; border:1px solid var(--line); border-radius:18px; background:#fff; overflow:hidden; box-shadow:var(--shadow-md); margin-top:-55px; position:relative; z-index:3; }
.contact-form-wrap { padding:42px; }
.contact-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-form-grid .full { grid-column:1/-1; }
.office-panel { padding:42px; background:linear-gradient(145deg,#fff9f3,#fff); border-left:1px solid var(--line); }
.office-info { display:grid; gap:15px; }
.office-info-card { display:flex; align-items:flex-start; gap:16px; padding:18px; border:1px solid var(--line); border-radius:13px; background:#fff; }
.office-info-card strong, .office-info-card span { display:block; }
.office-info-card span { color:var(--muted); font-size:13px; }
.contact-map { margin-top:28px; border-radius:18px; overflow:hidden; border:1px solid var(--line); }
.contact-map iframe { width:100%; height:380px; border:0; display:block; }
.quick-connect { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.quick-card { display:flex; align-items:center; gap:18px; padding:22px; border:1px solid var(--line); background:#fff; border-radius:15px; transition:.25s; }
.quick-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.quick-card.whatsapp .icon-orb { color:#fff; background:#27a65a; }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:15px; }
.faq-item { border:1px solid var(--line); border-radius:12px; background:#fff; overflow:hidden; }
.faq-question { width:100%; padding:17px 20px; display:flex; justify-content:space-between; align-items:center; border:0; background:#fff; text-align:left; font-weight:800; }
.faq-answer { max-height:0; overflow:hidden; padding:0 20px; transition:max-height .3s ease,padding .3s ease; }
.faq-item.open .faq-answer { max-height:220px; padding:0 20px 18px; }
.faq-item.open .faq-question svg { transform:rotate(180deg); }

.area-intro { display:grid; grid-template-columns:1fr 1fr; gap:35px; align-items:center; }
.area-intro img { border-radius:20px; min-height:390px; width:100%; object-fit:cover; }
.area-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.area-card { padding:30px; border:1px solid var(--line); border-radius:17px; background:#fff; }
.area-card h3 { font-size:30px; }
.area-points { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin:18px 0; }
.area-points span { display:flex; align-items:center; gap:7px; color:var(--muted); font-size:13px; }
.area-points svg { color:var(--orange); }

.legal-page { max-width:900px; }
.legal-page h1 { font-size:52px; }
.legal-page h2 { font-size:30px; margin-top:34px; }
.legal-page ul { color:var(--muted); }

.contact-strip { background:#fff; border-top:1px solid var(--line); }
.contact-strip-grid { display:grid; grid-template-columns:1fr 1.25fr .9fr 2fr; }
.contact-strip-item { min-height:112px; padding:20px; display:flex; align-items:center; gap:14px; border-right:1px solid var(--line); }
.contact-strip-item:last-child { border-right:0; }
.contact-strip-item small, .contact-strip-item strong { display:block; }
.contact-strip-item small { color:var(--muted); font-size:11px; }
.contact-strip-item strong { font-size:13px; line-height:1.4; }
.contact-strip-item:hover strong { color:var(--orange); }
.site-footer { background:linear-gradient(135deg,#2a2017,#3b291a); color:#fff8f0; }
.footer-grid { display:grid; grid-template-columns:1.3fr repeat(3,.85fr) 1.4fr; gap:35px; padding:55px 0 45px; }
.footer-grid h3 { font-family:Inter,Arial,sans-serif; color:#f47b28; font-size:13px; text-transform:uppercase; letter-spacing:.04em; }
.footer-grid a { display:block; margin:9px 0; color:#f6eee7; font-size:13px; opacity:.9; }
.footer-grid a:hover { color:#f47b28; opacity:1; }
.footer-about p { color:#d9cbc0; font-size:13px; max-width:250px; }
.footer-about img { width:200px; margin-bottom:15px; }
.social-links { display:flex; gap:9px; }
.social-links a { width:35px; height:35px; display:grid; place-items:center; border:1px solid rgba(244,123,40,.65); border-radius:50%; color:#f47b28; margin:0; }
.footer-contact a, .footer-contact p { display:flex; gap:9px; align-items:flex-start; color:#f6eee7; font-size:12px; margin:9px 0; opacity:.9; }
.footer-contact svg { color:#f47b28; margin-top:2px; }
.footer-bottom { border-top:1px solid rgba(244,123,40,.28); }
.footer-bottom-inner { min-height:54px; display:flex; align-items:center; justify-content:space-between; gap:20px; font-size:12px; color:#d7c8bc; }
.footer-bottom-inner span:last-child { display:flex; gap:12px; align-items:center; }
.footer-bottom-inner i { width:1px; height:15px; background:#8c7463; }
.floating-whatsapp { position:fixed; right:22px; bottom:22px; z-index:800; width:56px; height:56px; display:grid; place-items:center; background:#25d366; color:#fff; border-radius:50%; box-shadow:0 14px 35px rgba(0,0,0,.22); }
.floating-whatsapp:hover { transform:translateY(-4px); }
.back-to-top { position:fixed; right:28px; bottom:90px; z-index:790; width:42px; height:42px; border:0; border-radius:50%; background:var(--brown); color:#fff; opacity:0; visibility:hidden; transition:.25s; }
.back-to-top.show { opacity:1; visibility:visible; }
.toast { position:fixed; left:50%; bottom:28px; transform:translate(-50%,30px); z-index:2000; padding:14px 20px; border-radius:10px; background:var(--brown); color:#fff; opacity:0; visibility:hidden; transition:.3s; box-shadow:var(--shadow-md); }
.toast.show { opacity:1; visibility:visible; transform:translate(-50%,0); }

.lightbox { position:fixed; inset:0; z-index:2000; display:none; place-items:center; padding:30px; background:rgba(20,12,7,.88); }
.lightbox.open { display:grid; }
.lightbox img { max-width:min(1100px,95vw); max-height:85vh; border-radius:12px; box-shadow:var(--shadow-md); }
.lightbox button { position:absolute; top:22px; right:22px; width:45px; height:45px; border:0; border-radius:50%; background:#fff; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }
.hidden { display:none !important; }
.form-status { display:none; margin-top:14px; padding:12px 14px; border-radius:8px; font-weight:700; font-size:13px; }
.form-status.success { display:block; background:#e8f7ef; color:#197444; }
.form-status.error { display:block; background:#fff0ed; color:#b83c24; }
.honeypot { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 190px 1fr auto; }
  .header-tagline { display:none; }
  .desktop-nav { gap:16px; }
  .home-project-grid { grid-template-columns:repeat(2,1fr); }
  .trust-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1.3fr repeat(2,1fr); }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { grid-column:auto; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-call { display:none; }
  .header-inner { grid-template-columns:1fr auto; min-height:72px; }
  .menu-toggle { display:grid; place-items:center; }
  .hero-grid, .page-hero-grid { grid-template-columns:1fr; }
  .hero-copy { padding:60px 0 38px; }
  .hero-visual { min-height:390px; }
  .hero-visual::before, .page-hero-image::before { background:linear-gradient(180deg,#fffaf5 0%,transparent 30%); }
  .page-hero-copy { padding:55px 0 35px; }
  .page-hero-image { min-height:330px; }
  .search-panel-wrap { margin-top:-38px; }
  .search-panel, .filter-panel { grid-template-columns:repeat(2,1fr); }
  .search-panel .btn, .filter-panel .btn { width:100%; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .info-columns { grid-template-columns:1fr; gap:35px; }
  .testimonial-track { grid-template-columns:1fr 1fr; }
  .testimonial-card:last-child { display:none; }
  .blog-mini-grid { grid-template-columns:1fr; }
  .about-founder { grid-template-columns:1fr; }
  .about-founder-image { border-radius:20px; min-height:420px; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .process-grid { grid-template-columns:1fr 1fr; overflow:visible; border:0; gap:15px; }
  .process-card { border:1px solid var(--line) !important; border-radius:14px; }
  .process-card .process-index { margin:-52px auto 20px; }
  .split-cta-grid { grid-template-columns:1fr; }
  .feature-icon-row { grid-template-columns:repeat(3,1fr); }
  .project-grid { grid-template-columns:repeat(2,1fr); }
  .project-detail-grid { grid-template-columns:1fr; }
  .project-bg { inset:0; opacity:.42; }
  .project-bg::before { background:linear-gradient(90deg,#fff9f3 0%,rgba(255,249,243,.9) 55%,rgba(255,249,243,.35)); }
  .enquiry-card { position:relative; top:0; max-width:560px; }
  .project-summary-bar { grid-template-columns:repeat(3,1fr); }
  .summary-item:nth-child(3) { border-right:0; }
  .summary-item:nth-child(n+4) { border-top:1px solid var(--line); }
  .amenities-grid { grid-template-columns:repeat(3,1fr); }
  .gallery-grid { grid-template-columns:repeat(3,1fr); }
  .floor-grid { grid-template-columns:1fr; }
  .blog-layout, .article-layout { grid-template-columns:1fr; }
  .blog-sidebar, .article-sidebar { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
  .blog-sidebar .sidebar-card, .article-sidebar .sidebar-card { margin:0; }
  .contact-grid { grid-template-columns:1fr; }
  .office-panel { border-left:0; border-top:1px solid var(--line); }
  .quick-connect { grid-template-columns:1fr; }
  .contact-strip-grid { grid-template-columns:1fr 1fr; }
  .contact-strip-item:nth-child(2) { border-right:0; }
  .contact-strip-item:nth-child(n+3) { border-top:1px solid var(--line); }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  .footer-about { grid-column:1/-1; }
}

@media (max-width: 700px) {
  .container { width:min(calc(100% - 28px),var(--container)); }
  .section { padding:62px 0; }
  h1 { font-size:43px; }
  h2 { font-size:35px; }
  .section-heading { display:block; }
  .section-heading .btn { margin-top:15px; }
  .hero-copy { padding-top:46px; }
  .hero-bullets { grid-template-columns:1fr; }
  .hero-visual { min-height:300px; }
  .hero-location { right:12px; bottom:20px; font-size:13px; }
  .search-panel, .filter-panel { grid-template-columns:1fr; padding:15px; }
  .search-panel-wrap, .filter-panel { margin-top:0; }
  .trust-grid, .home-project-grid, .project-grid, .services-grid, .value-grid, .area-grid { grid-template-columns:1fr; }
  .trust-card { min-height:88px; }
  .testimonial-track { grid-template-columns:1fr; }
  .testimonial-card:nth-child(n+2) { display:none; }
  .blog-mini { grid-template-columns:1fr; }
  .blog-mini img { aspect-ratio:16/8; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat:nth-child(2)::after { display:none; }
  .stat:nth-child(n+3) { border-top:1px solid var(--line); }
  .process-grid { grid-template-columns:1fr; }
  .split-cta { grid-template-columns:1fr; }
  .feature-icon-row { grid-template-columns:repeat(2,1fr); }
  .results-toolbar { align-items:flex-start; flex-direction:column; }
  .featured-project { grid-template-columns:1fr; }
  .project-summary-bar { grid-template-columns:1fr; margin-top:20px; }
  .summary-item { border-right:0 !important; border-top:1px solid var(--line); }
  .summary-item:first-child { border-top:0; }
  .project-detail-hero { min-height:auto; }
  .project-detail-grid { padding-top:38px; }
  .project-detail-copy { min-height:auto; }
  .amenities-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .location-grid { grid-template-columns:1fr; }
  .location-list-grid { grid-template-columns:1fr; }
  .featured-article { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-sidebar, .article-sidebar { grid-template-columns:1fr; }
  .article-toc { grid-template-columns:1fr 1fr; }
  .related-grid { grid-template-columns:1fr 1fr; }
  .contact-form-wrap, .office-panel { padding:26px 20px; }
  .contact-form-grid { grid-template-columns:1fr; }
  .contact-form-grid .full { grid-column:auto; }
  .faq-grid { grid-template-columns:1fr; }
  .area-intro { grid-template-columns:1fr; }
  .contact-strip-grid { grid-template-columns:1fr; }
  .contact-strip-item { border-right:0; border-top:1px solid var(--line); min-height:90px; }
  .contact-strip-item:first-child { border-top:0; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .footer-contact { grid-column:1/-1; }
  .footer-bottom-inner { flex-direction:column; align-items:flex-start; padding:14px 0; }
}

@media (max-width: 480px) {
  .brand img { width:165px; }
  .service-pills { display:grid; grid-template-columns:repeat(3,1fr); }
  .service-pill { min-width:0; padding:10px; justify-content:center; font-size:12px; }
  .stats-grid, .feature-icon-row, .amenities-grid, .gallery-grid, .article-toc, .related-grid, .footer-grid { grid-template-columns:1fr; }
  .stat::after { display:none; }
  .floor-card { grid-template-columns:1fr; }
  .footer-about, .footer-contact { grid-column:auto; }
  .floating-whatsapp { width:50px; height:50px; right:15px; bottom:15px; }
}
