/* ==========================================================================
   Brik Tara Realty — Public Site Stylesheet
   ========================================================================== */

:root {
  --dark: #1f2a22;
  --dark-2: #26332a;
  --green: #3b5744;
  --green-mid: #46614d;
  --green-light: #e8f3e8;
  --sage: #ced9ce;
  --gold: #c9a24b;
  --gold-light: #e4cd8f;
  --gold-dark: #a8842f;
  --cream: #faf8f3;
  --paper: #fffdf9;
  --ink: #1c211c;
  --ink-soft: #4a534b;
  --gray: #737d74;
  --border: #e4e2d8;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(31, 42, 34, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 42, 34, 0.10);
  --shadow-lg: 0 25px 60px rgba(31, 42, 34, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --font-heading: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--green-light); }
.section-dark { background: var(--dark); color: var(--sage); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: #c7d0c8; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-dark);
  display: inline-block;
}
.section-dark .eyebrow, .on-dark .eyebrow { color: var(--gold-light); }
.section-dark .eyebrow::before, .on-dark .eyebrow::before { background: var(--gold-light); }

.section-head { max-width: 720px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head p { font-size: 17px; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 17px; height: 17px; }

/* -------------------- Header -------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all .35s ease;
}
.site-header.is-scrolled, .site-header.is-solid {
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.site-header .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); }
.brand img.brand-logo { height: 52px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 999px;
  transition: all .2s ease;
  color: var(--dark);
}
.transparent-header .main-nav a { color: var(--white); }
.site-header.is-scrolled .main-nav a, .site-header.is-solid .main-nav a { color: var(--dark); }
.main-nav a:hover, .main-nav a.active { background: var(--gold); color: var(--dark) !important; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 12px 24px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  background: var(--white);
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 18px; height: 2px; background: var(--dark); position: relative; transition: all .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--green) 55%, var(--dark-2) 100%);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(201,162,75,.18), transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(201,162,75,.14), transparent 50%);
  pointer-events: none;
}
.hero.has-image {
  background-size: cover;
  background-position: center;
}
.hero.has-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,28,22,.78), rgba(20,28,22,.55) 45%, rgba(20,28,22,.9));
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
  background: rgba(255,255,255,.06);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5.4vw, 64px);
  margin-bottom: 22px;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero p.lead { color: #dfe6df; font-size: 18px; max-width: 620px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats { display: flex; gap: 40px; margin-top: 64px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-family: var(--font-heading); font-size: 32px; color: var(--gold-light); }
.hero-stats .stat span { font-size: 13px; color: #c7d0c8; text-transform: uppercase; letter-spacing: .07em; }

.page-hero {
  position: relative;
  padding: 190px 0 100px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--green) 60%, var(--dark-2) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201,162,75,.16), transparent 45%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 16px; }
.page-hero p { color: #dbe3db; font-size: 17px; max-width: 640px; margin: 0 auto; }
.breadcrumb { margin-top: 24px; font-size: 13px; color: var(--gold-light); letter-spacing: .05em; }
.breadcrumb a { color: #dfe6df; }
.breadcrumb a:hover { color: var(--gold-light); }

/* -------------------- Cards: features / services / process -------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all .3s ease;
  height: 100%;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.icon-badge svg { width: 26px; height: 26px; }
.feature-card h4 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

.section-dark .feature-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section-dark .icon-badge { background: rgba(201,162,75,.16); color: var(--gold-light); }

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.process-step { position: relative; padding: 10px 6px; }
.process-step .step-num {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--gold);
  opacity: .55;
  margin-bottom: 14px;
}
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px; right: -14px;
  width: 24px; height: 1px;
  background: var(--sage);
}

/* Stats / market opportunity */
.stat-card { text-align: center; padding: 30px 20px; }
.stat-card .icon-badge { margin: 0 auto 18px; }
.stat-card h4 { font-size: 17px; }
.stat-card p { font-size: 13.5px; }

/* -------------------- Project cards -------------------- */
.project-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.project-filters a {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper);
}
.project-filters a:hover, .project-filters a.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

.project-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-media {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-media img { transform: scale(1.06); }
.project-media .placeholder-mark { color: rgba(255,255,255,.5); width: 46px; height: 46px; }
.project-media .badge-status {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
}
.badge-status.completed { background: var(--green-light); color: var(--green); }
.badge-status.upcoming { background: var(--sage); color: var(--dark); }
.project-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.project-cat { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.project-body h3 { font-size: 21px; margin-bottom: 8px; }
.project-loc { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--gray); margin-bottom: 14px; }
.project-loc svg { width: 15px; height: 15px; flex-shrink: 0; }
.project-body p.desc { font-size: 14px; flex: 1; }
.project-body .project-link { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--dark); }
.project-body .project-link svg { width: 16px; height: 16px; transition: transform .2s; }
.project-card:hover .project-link svg { transform: translateX(4px); }

/* -------------------- Blog cards -------------------- */
.blog-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  display: flex; flex-direction: column;
  transition: all .3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-media { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--sage), var(--green-light)); overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--gray); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.blog-meta .cat { color: var(--gold-dark); font-weight: 600; }
.blog-body h3 { font-size: 20px; margin-bottom: 10px; }
.blog-body p { font-size: 14px; flex: 1; }
.blog-body .read-more { margin-top: 10px; font-weight: 600; font-size: 13.5px; color: var(--dark); display: inline-flex; align-items: center; gap: 6px; }
.blog-body .read-more svg { width: 16px; height: 16px; transition: transform .2s; }
.blog-card:hover .read-more svg { transform: translateX(4px); }

/* -------------------- Team cards -------------------- */
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--green), var(--dark));
  display: flex; align-items: center; justify-content: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .initials { font-family: var(--font-heading); font-size: 42px; color: var(--gold-light); }
.team-card h4 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.team-card p.bio { font-size: 13.5px; }

/* -------------------- CTA banner -------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--dark) 0%, var(--green) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(201,162,75,.22), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.cta-banner p { color: #dbe3db; margin-bottom: 0; max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* -------------------- Contact / forms -------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon-badge { background: rgba(201,162,75,.16); color: var(--gold-light); flex-shrink: 0; margin-bottom: 0; }
.contact-info-item h5 { color: var(--white); font-size: 14px; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.contact-info-item p { color: #c7d0c8; font-size: 14px; margin-bottom: 0; }
.social-row { display: flex; gap: 10px; margin-top: 26px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-row a:hover { background: var(--gold); color: var(--dark); }
.social-row svg { width: 18px; height: 18px; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.field .req { color: var(--gold-dark); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.field.file-field input { padding: 11px; }

.alert { padding: 16px 20px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 24px; }
.alert-success { background: #e5f5e6; color: #245c2a; border: 1px solid #b9e2bd; }
.alert-error { background: #fbe9e7; color: #8a3327; border: 1px solid #f3c3ba; }
.alert-info { background: var(--green-light); color: var(--green); border: 1px solid var(--sage); }

/* -------------------- Footer -------------------- */
.site-footer { background: var(--dark); color: #c7d0c8; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-about { font-size: 14px; margin: 18px 0 22px; max-width: 320px; }
.footer-col h5 { color: var(--white); font-family: var(--font-body); font-size: 15px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14.5px; color: #c7d0c8; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 12px; font-size: 14px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 13px; color: #93a094; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #93a094; }
.footer-bottom a:hover { color: var(--gold-light); }

/* -------------------- Floating buttons -------------------- */
.float-actions { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: #25d366; color: var(--white); }
.float-btn.whatsapp svg { width: 28px; height: 28px; }
.float-btn.top { background: var(--dark); color: var(--white); opacity: 0; pointer-events: none; transition: all .25s; }
.float-btn.top.visible { opacity: 1; pointer-events: auto; }
.float-btn.top svg { width: 20px; height: 20px; }

/* -------------------- Detail pages -------------------- */
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; }
.detail-gallery .main-shot { aspect-ratio: 4/3; }
.detail-gallery .side-shots { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; }
.detail-gallery img, .detail-gallery .ph { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery .ph { background: linear-gradient(135deg, var(--green), var(--dark)); display: flex; align-items: center; justify-content: center; }
.detail-gallery .ph svg { width: 40px; height: 40px; color: rgba(255,255,255,.5); }

.detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.detail-main h1 { font-size: clamp(26px, 3.4vw, 38px); }
.detail-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.tag { padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; background: var(--green-light); color: var(--green); }
.detail-main .prose { font-size: 15.5px; color: var(--ink-soft); }
.detail-main .prose p { margin-bottom: 1.2em; }
.detail-main .prose h3 { margin-top: 1.6em; font-size: 22px; }
.detail-main .prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1.2em; }
.detail-main .prose li { margin-bottom: .5em; color: var(--ink-soft); }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 8px; }
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.amenity-item svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; }

.sidebar-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }
.sidebar-card h4 { font-size: 18px; margin-bottom: 18px; }
.info-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-row span:first-child { color: var(--gray); }
.info-row span:last-child { font-weight: 600; color: var(--dark); }

/* -------------------- Author / blog detail -------------------- */
.blog-detail-head { max-width: 780px; margin: 0 auto; text-align: center; }
.blog-detail-media { border-radius: var(--radius-lg); overflow: hidden; margin: 40px auto; max-width: 980px; aspect-ratio: 16/8; background: linear-gradient(135deg, var(--sage), var(--green-light)); }
.blog-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-body { max-width: 780px; margin: 0 auto; }
.blog-detail-body .prose { font-size: 16.5px; }
.blog-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); flex-wrap: wrap; }

/* -------------------- Pagination -------------------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination a, .pagination span {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 14px; font-weight: 500;
}
.pagination a:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }

/* -------------------- Empty state -------------------- */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state .icon-badge { margin: 0 auto 20px; width: 68px; height: 68px; }
.empty-state .icon-badge svg { width: 32px; height: 32px; }

/* -------------------- 404 -------------------- */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 160px 20px 100px; }
.error-page .code { font-family: var(--font-heading); font-size: 120px; color: var(--gold); line-height: 1; }

/* -------------------- Scroll reveal -------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* -------------------- Responsive -------------------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .main-nav, .header-actions .btn-outline-dark.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 44px 30px; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-stats { gap: 26px; }
  .amenities-grid { grid-template-columns: 1fr; }
}

/* -------------------- Mobile nav drawer -------------------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--dark);
  color: var(--white);
  padding: 30px 28px;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .close-nav { align-self: flex-end; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); border: none; color: var(--white); display: flex; align-items: center; justify-content: center; }
.mobile-nav ul { margin-top: 40px; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav ul a { display: block; padding: 16px 4px; font-family: var(--font-heading); font-size: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .header-actions { margin-top: 30px; flex-direction: column; align-items: stretch; }
