/*
  ============================================================
  PACIFIC WOODS ESTATE — style.css
  pacificwoodsestate.com.au
  ============================================================
  Applies to: index.html, blog/index.html, all future pages
  Fonts: Cormorant Garamond + DM Sans (loaded via Google Fonts)
  ============================================================
*/

/* ── VARIABLES ── */
:root {
  --pacific:       #02a3b5;
  --pacific-deep:  #134e5e;
  --pacific-light: #70eaea;
  --timber:        #9e6438;
  --concrete:      #7a8490;
  --cream:         #f7f3ee;
  --pale:          #eef8f9;
  --white:         #ffffff;
  --dark:          #0e1f26;
  --text:          #2a3a40;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --shadow-sm:  0 4px 16px rgba(2,163,181,0.08);
  --shadow-md:  0 12px 40px rgba(2,163,181,0.12);
  --shadow-lg:  0 20px 60px rgba(2,163,181,0.15);

  --transition: 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); }
ul { list-style: none; }

/* ── BASE ── */
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.1;
  font-weight: 400;
}

h1 { font-size: clamp(42px, 6vw, 82px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 34px); }
h4 { font-size: 18px; font-weight: 500; font-family: var(--font-sans); }

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--concrete);
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2,163,181,0.15);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--pacific-deep);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span { color: var(--pacific); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--concrete);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--pacific); }

.nav-cta {
  background: var(--pacific) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--pacific-deep) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pacific-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--pacific);
  padding: 20px 32px 28px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 16px;
  font-weight: 400;
  color: var(--pacific-deep);
  letter-spacing: 0.04em;
  padding: 13px 0;
  border-bottom: 1px solid rgba(2,163,181,0.12);
  transition: color var(--transition);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--pacific); }

.mobile-menu .mob-cta {
  margin-top: 8px;
  background: var(--pacific);
  color: white !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  font-weight: 600 !important;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--pacific);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-block;
  border: none;
}

.btn-primary:hover {
  background: var(--pacific-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,163,181,0.35);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--pacific-light);
  color: var(--pacific-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: none;
  border: 1px solid rgba(2,163,181,0.25);
  color: var(--pacific);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-block;
}

.btn-ghost:hover {
  background: var(--pacific);
  color: white;
  border-color: var(--pacific);
}

/* ── SECTIONS ── */
section { padding: 100px 80px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--pacific);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--pacific-deep);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--concrete);
  max-width: 600px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(2,163,181,0.08) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(14,31,38,0.95) 0%, rgba(19,78,94,0.85) 100%);
}

.hero-geo {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border: 1px solid rgba(2,163,181,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-geo::after {
  content: '';
  position: absolute;
  top: 80px; left: 80px; right: 80px; bottom: 80px;
  border: 1px solid rgba(2,163,181,0.08);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--pacific);
}

.hero h1 {
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--pacific-light);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  background: rgba(2,163,181,0.12);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(2,163,181,0.2);
  padding: 24px 80px;
  display: flex;
  gap: 60px;
}

.stat-item { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--pacific-light);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── ABOUT SECTION ── */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-card {
  background: var(--pacific-deep);
  border-radius: var(--radius-md);
  padding: 60px 50px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(2,163,181,0.15);
  border-radius: 50%;
}

.about-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pacific-light);
  margin-bottom: 20px;
}

.about-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: white;
}

.about-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--timber);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

/* ── UNITS ── */
.units { background: var(--white); }

.units-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.unit-card {
  border: 1px solid rgba(2,163,181,0.15);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.unit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pacific);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.unit-card:hover {
  border-color: var(--pacific);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.unit-card:hover::before { transform: scaleX(1); }

.unit-card.featured {
  background: var(--pacific-deep);
  border-color: var(--pacific-deep);
}

.unit-card.featured::before { transform: scaleX(1); }

.unit-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 16px;
}

.unit-card.featured .unit-tag { color: var(--pacific-light); }

.unit-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--pacific-deep);
  margin-bottom: 12px;
}

.unit-card.featured .unit-name { color: white; }

.unit-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--concrete);
  margin-bottom: 24px;
}

.unit-card.featured .unit-desc { color: rgba(255,255,255,0.7); }

.unit-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.unit-features li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.unit-card.featured .unit-features li { color: rgba(255,255,255,0.8); }

.unit-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pacific);
  flex-shrink: 0;
}

.unit-card.featured .unit-features li::before { background: var(--pacific-light); }

/* ── INVESTMENT ── */
.investment {
  background: var(--pacific-deep);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.investment .section-title { color: white; }
.investment .section-eyebrow { color: var(--pacific-light); }
.investment .section-eyebrow::before { background: var(--pacific-light); }
.investment .section-body { color: rgba(255,255,255,0.65); max-width: 100%; }

.invest-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.invest-point { display: flex; gap: 20px; align-items: flex-start; }

.invest-icon {
  width: 44px; height: 44px;
  background: rgba(2,163,181,0.2);
  border: 1px solid rgba(2,163,181,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.invest-text h4 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 4px; }
.invest-text p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.6; }

.invest-cta-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(2,163,181,0.25);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.invest-cta-box h3 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
  color: white;
}

.invest-cta-box p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── COMMUNITY ── */
.community {
  background: var(--cream);
  text-align: center;
}

.community .section-eyebrow { justify-content: center; }
.community .section-eyebrow::before { display: none; }
.community .section-eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--pacific); }
.community .section-title { text-align: center; }

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.community-card {
  background: white;
  border-radius: 10px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(2,163,181,0.1);
  transition: all 0.3s;
}

.community-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.community-icon { font-size: 32px; margin-bottom: 20px; display: block; }

.community-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--pacific-deep);
  margin-bottom: 10px;
}

.community-card p { font-size: 13px; }

/* ── CONTACT ── */
.contact {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--pacific-deep);
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 14px;
  color: var(--concrete);
  margin-bottom: 36px;
  font-weight: 300;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pacific-deep);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(2,163,181,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pacific); }

.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--pacific);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--pacific-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,163,181,0.3);
}

.contact-info { padding-top: 20px; }
.contact-info .section-body { margin-bottom: 40px; }

.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }

.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(2,163,181,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text h5 { font-size: 13px; font-weight: 600; color: var(--pacific-deep); margin-bottom: 2px; }
.contact-detail-text p { font-size: 13px; font-weight: 300; color: var(--concrete); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: white;
}

.footer-logo span { color: var(--pacific); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; }
.footer-pub { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-back { font-size: 12px; color: var(--pacific); font-weight: 500; transition: color var(--transition); }
.footer-back:hover { color: var(--pacific-light); }

/* ── SHARE BAR ── */
.tq-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(2,163,181,0.15);
  border-bottom: 1px solid rgba(2,163,181,0.15);
}

.tq-share-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-right: 4px;
  white-space: nowrap;
}

.tq-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(2,163,181,0.2);
  background: var(--white);
  color: var(--pacific-deep);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.tq-share-btn:hover {
  border-color: var(--pacific);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--pacific);
}

.tq-share-btn:active { transform: translateY(0); }
.tq-share-icon { font-size: 15px; line-height: 1; }
.tq-share-btn.copied { border-color: #1D9E75 !important; color: #1D9E75 !important; }
.tq-share-native { display: none; }

/* ── BLOG — LISTING PAGE ── */
.blog-hero {
  background: var(--pacific-deep);
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(2,163,181,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.blog-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pacific-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--pacific-light); }

.blog-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}

.blog-hero p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.7; }

.blog-filters {
  background: white;
  padding: 20px 60px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(2,163,181,0.1);
  flex-wrap: wrap;
}

.filter-label { font-size: 12px; font-weight: 500; color: var(--concrete); letter-spacing: 0.08em; text-transform: uppercase; margin-right: 4px; }

.filter-btn {
  background: none;
  border: 1px solid rgba(2,163,181,0.2);
  color: var(--concrete);
  font-size: 12px;
  font-family: var(--font-sans);
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 500;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active { background: var(--pacific); color: white; border-color: var(--pacific); }

.blog-grid-wrap { padding: 60px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.post-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,163,181,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pacific);
}

.post-card-top { height: 6px; background: var(--pacific); }
.post-card-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }

.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.post-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pacific); }
.post-date { font-size: 12px; color: var(--concrete); font-weight: 300; }

.post-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.post-excerpt { font-size: 14px; font-weight: 300; color: var(--concrete); line-height: 1.7; flex: 1; }

.post-read-more {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pacific);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.post-card:hover .post-read-more { gap: 14px; }

.no-posts { text-align: center; padding: 80px 40px; color: var(--concrete); grid-column: 1 / -1; }
.no-posts h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 400; margin-bottom: 12px; color: var(--pacific-deep); }

/* ── BLOG — SINGLE POST ── */
.post-view { background: var(--cream); min-height: 100vh; }

.post-header { background: var(--pacific-deep); padding: 80px 60px 60px; }

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pacific-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 32px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: gap var(--transition);
}

.post-back:hover { gap: 12px; }
.post-back::before { content: '←'; }

.post-header-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pacific-light); margin-bottom: 16px; }

.post-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}

.post-header-meta { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; }

.post-content-wrap { max-width: 780px; margin: 0 auto; padding: 60px 40px; }

.post-body { font-size: 17px; font-weight: 300; line-height: 1.9; color: var(--text); }
.post-body p { margin-bottom: 1.5em; }

.post-body h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--pacific-deep);
  margin: 1.8em 0 0.6em;
  line-height: 1.2;
}

.post-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--pacific-deep);
  margin: 1.4em 0 0.5em;
}

.post-body strong { font-weight: 600; color: var(--dark); }
.post-body em { font-style: italic; }
.post-body ul, .post-body ol { margin: 0 0 1.5em 1.5em; }
.post-body li { margin-bottom: 0.5em; }

.post-body blockquote {
  border-left: 3px solid var(--pacific);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--pacific-deep);
}

.post-cta { background: var(--pacific-deep); padding: 60px; text-align: center; margin-top: 60px; }
.post-cta h3 { font-family: var(--font-serif); font-size: 32px; font-weight: 400; color: white; margin-bottom: 12px; }
.post-cta p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 28px; max-width: 100%; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.7s ease both; }
.hero h1 { animation: fadeUp 0.7s 0.15s ease both; }
.hero-sub { animation: fadeUp 0.7s 0.3s ease both; }
.hero-actions { animation: fadeUp 0.7s 0.45s ease both; }
.hero-stats { animation: fadeUp 0.5s 0.6s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 70px 32px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 32px 100px; }
  .hero-stats { padding: 20px 32px; gap: 32px; flex-wrap: wrap; }
  .about, .investment, .contact { grid-template-columns: 1fr; gap: 48px; }
  .units-grid, .community-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 32px; flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .units-header { flex-direction: column; align-items: flex-start; }
  .blog-hero { padding: 60px 24px 40px; }
  .blog-filters { padding: 16px 24px; }
  .blog-grid-wrap { padding: 32px 20px; }
  .post-header { padding: 60px 24px 40px; }
  .post-content-wrap { padding: 40px 24px; }
  .post-cta { padding: 40px 24px; }
  .tq-share-btn span:last-child { display: none; }
  .tq-share-btn { padding: 10px 12px; }
  .tq-share-icon { font-size: 18px; }
  .tq-share-native { display: inline-flex !important; }
}

@media (max-width: 600px) {
  .units-grid, .community-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
}
