/*
Theme Name: du Preez Property Group
Theme URI: https://www.dupreez.com.au
Author: Rudi du Preez
Author URI: https://www.dupreez.com.au
Description: Custom theme for du Preez Property Group. Sunshine Coast Real Estate Agent at Amber Werchon Property.
Version: 1.0.0
License: Private
Text Domain: dupreez
*/

/* ═══ TOKENS ═══ */
:root {
  --sage:        #59736e;
  --sage-deep:   #3e544f;
  --sage-pale:   #c2d2cf;
  --beige:       #f8eedf;
  --beige-mid:   #e8d9c5;
  --beige-deep:  #d9c8b0;
  --white:       #ffffff;
  --ink:         #2a3530;
  --muted:       #7a8c88;
  --font-brand:  'Dancing Script', cursive;
  --font-main:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--beige); color: var(--ink); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ═══ SCROLL REVEAL ═══ */
.sr { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.sr.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .22s; }
.d3 { transition-delay: .34s; }
.d4 { transition-delay: .46s; }

/* ═══ NAV ═══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 72px;
  background: rgba(248,238,223,.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--beige-mid);
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
#nav.scrolled {
  background: rgba(248,238,223,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--beige-mid);
}
.nav-brand { display: flex; align-items: center; }
.nav-brand a { display: flex; align-items: center; line-height: 0; }
.nav-logo-dp {
  height: 58px; width: auto; object-fit: contain; display: block;
  transition: opacity .2s;
}
.nav-logo-dp:hover { opacity: .82; }
@media (max-width: 640px) { .nav-logo-dp { height: 46px; } }
#nav ul {
  display: flex; list-style: none; gap: 32px; align-items: center;
}
#nav ul a {
  font-family: var(--font-main);
  font-size: 13px; font-weight: 500; letter-spacing: .3px;
  color: var(--ink); opacity: .75; transition: opacity .2s;
}
#nav ul a:hover { opacity: 1; }
.nav-cta {
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase;
  background: var(--sage); color: var(--white) !important;
  opacity: 1 !important; padding: 10px 18px; border-radius: 2px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--sage-deep) !important; }

/* Mobile nav hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(248,238,223,.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-mid);
  padding: 20px 6% 24px; flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-main);
  font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--beige-mid);
  opacity: .8;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta {
  margin-top: 12px; text-align: center;
  padding: 14px 18px; border-radius: 2px;
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase;
  background: var(--sage); color: var(--white) !important;
  opacity: 1 !important; border-bottom: none;
}

/* ═══ HERO ═══ */
.hero {
  display: grid; grid-template-columns: 1fr 2fr;
  min-height: 100vh;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 8% 80px 6%; gap: 0;
}
.hero-eyebrow {
  font-family: var(--font-main);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage); font-weight: 700; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -2px; color: var(--ink);
  margin-bottom: 24px;
}
.hero-sub {
  font-family: var(--font-main);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400; line-height: 1.75;
  color: var(--muted); max-width: 440px; margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-main);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 28px; background: var(--sage); color: var(--white);
  border-radius: 2px; transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--font-main);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 28px; background: transparent; color: var(--ink);
  border: 1.5px solid var(--beige-mid); border-radius: 2px;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); }
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}

/* ═══ INTRO BAND ═══ */
.intro-band {
  background: var(--sage-deep);
  display: flex; align-items: center; gap: 40px;
  padding: 28px 6%;
}
.intro-band p {
  font-family: var(--font-main);
  font-size: 14px; font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,.72); flex: 1;
}
.intro-band strong { color: var(--white); font-weight: 700; }
.intro-logo { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; opacity: .85; }

/* ═══ SECTIONS ═══ */
.section {
  padding: 100px 6%;
}
.eyebrow {
  font-family: var(--font-main);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage); font-weight: 700; margin-bottom: 16px; display: block;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1px; color: var(--ink);
}
.section-title em { font-style: normal; color: var(--sage); }
.section-body {
  font-family: var(--font-main);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400; line-height: 1.8; color: var(--muted); max-width: 680px;
}

/* ═══ ABOUT ═══ */
#about {
  background: var(--white);
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 3px; width: 100%; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--sage); padding: 14px 20px; border-radius: 2px;
}
.about-badge-label {
  font-family: var(--font-main);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white); margin-bottom: 2px;
}
.about-badge-sub {
  font-family: var(--font-main);
  font-size: 10px; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase;
}
.about-text h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 3vw, 46px); font-weight: 700;
  line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 24px;
}
.about-text h2 em { font-style: normal; color: var(--sage); }
.about-text p {
  font-family: var(--font-main);
  font-size: clamp(15px, 1.3vw, 17px); font-weight: 400;
  line-height: 1.8; color: var(--muted); margin-bottom: 16px;
}
.about-text strong { color: var(--ink); font-weight: 700; }
.about-creds {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--beige); border-radius: 3px;
  border: 1px solid var(--beige-mid); margin-top: 32px;
}
.ac { padding: 20px 14px; text-align: center; border-right: 1px solid var(--beige-mid); }
.ac:last-child { border-right: none; }
.ac-val {
  font-family: var(--font-main);
  font-size: 22px; font-weight: 700;
  color: var(--sage-deep); margin-bottom: 5px;
}
.ac-lbl {
  font-family: var(--font-main);
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
}

/* ═══ ABOUT CANDICE ═══ */
#candice {
  background: var(--beige);
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 80px; align-items: center;
}
#candice .about-img-wrap { max-width: 82%; margin-left: auto; }

/* ═══ SERVICES ═══ */
#services { background: var(--white); }
.sec-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.svc-card {
  background: var(--beige); padding: 36px 24px;
  border-radius: 3px; border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--sage); transition: width .4s;
}
.svc-card:hover { border-color: var(--sage-pale); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(89,115,110,.1); }
.svc-card:hover::after { width: 100%; }
.svc-num {
  font-family: var(--font-main);
  font-size: 42px; font-weight: 700;
  color: var(--beige-mid); line-height: 1;
  margin-bottom: 14px; transition: color .3s;
}
.svc-card:hover .svc-num { color: var(--sage-pale); }
.svc-card h3 {
  font-family: var(--font-main);
  font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px;
}
.svc-card p {
  font-family: var(--font-main);
  font-size: 14px; font-weight: 400; line-height: 1.78; color: var(--muted);
}

/* ═══ STATS BAND ═══ */
.stats-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--sage);
}
.stat-block {
  padding: 50px 20px; text-align: center;
  position: relative; transition: background .25s;
}
.stat-block:hover { background: var(--sage-deep); }
.stat-block + .stat-block::before {
  content: ''; position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,.15);
}
.stat-num {
  font-family: var(--font-main);
  font-size: 40px; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 8px; letter-spacing: -1px;
}
.stat-lbl {
  font-family: var(--font-main);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 600;
}

/* ═══ TESTIMONIALS ═══ */
#testimonials { background: var(--white); }
.t-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; margin-top: 48px;
}
.t-card {
  background: var(--beige); border: 1px solid var(--beige-mid);
  border-radius: 3px; padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: border-color .3s, box-shadow .3s;
}
.t-card:hover { border-color: var(--sage-pale); box-shadow: 0 10px 30px rgba(89,115,110,.08); }
.t-quote-mark {
  font-family: var(--font-main);
  font-size: 52px; font-weight: 700;
  color: var(--sage); opacity: .25; line-height: .7;
  margin-bottom: 16px;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.t-star { color: var(--sage); font-size: 13px; }
.t-body {
  font-family: var(--font-main);
  font-size: 15px; font-weight: 400; font-style: italic;
  line-height: 1.75; color: var(--ink); flex: 1; margin-bottom: 20px;
}
.t-attr {
  font-family: var(--font-main);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sage); font-weight: 700;
  padding-top: 16px; border-top: 1px solid var(--beige-mid);
}
.t-attr span { display: block; color: var(--muted); font-weight: 400; margin-top: 2px; }

/* ═══ AREAS ═══ */
#areas { background: var(--beige); }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 12px; margin-top: 48px;
}
.area-card {
  background: var(--white); border: 1px solid var(--beige-mid);
  border-radius: 3px; padding: 18px 16px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .25s, box-shadow .25s;
}
.area-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--sage); transition: width .35s;
}
.area-card:hover { border-color: var(--sage-pale); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(89,115,110,.09); }
.area-card:hover::before { width: 100%; }
.area-dot { width: 5px; height: 5px; background: var(--sage-pale); border-radius: 50%; margin-bottom: 9px; transition: background .25s; }
.area-card:hover .area-dot { background: var(--sage); }
.area-card h3 {
  font-family: var(--font-main);
  font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 3px;
}
.area-card p {
  font-family: var(--font-main);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
}
.areas-cta {
  margin-top: 34px; padding: 20px 24px;
  background: var(--sage); border-radius: 3px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.areas-cta p {
  font-family: var(--font-main);
  font-size: 14px; color: rgba(255,255,255,.82); flex: 1; min-width: 200px;
}
.areas-cta strong { color: var(--white); font-weight: 700; }
.areas-cta a {
  font-family: var(--font-main);
  display: inline-block; padding: 10px 22px;
  background: var(--white); color: var(--sage-deep);
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; flex-shrink: 0; transition: background .2s;
}
.areas-cta a:hover { background: var(--beige); }

/* ═══ FAQ ═══ */
#faq { background: var(--white); }
.faq-list { margin-top: 48px; max-width: 800px; }
details.faq-item { border-bottom: 1px solid var(--beige-mid); }
details.faq-item:first-of-type { border-top: 1px solid var(--beige-mid); }
details.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-main);
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 600;
  color: var(--ink); padding: 20px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; font-size: 20px; font-weight: 400;
  color: var(--sage); flex-shrink: 0; transition: transform .25s;
}
details[open].faq-item summary { color: var(--sage-deep); }
details[open].faq-item summary::after { transform: rotate(45deg); }
.faq-answer {
  font-family: var(--font-main);
  font-size: 15px; font-weight: 400;
  line-height: 1.85; color: var(--muted);
  padding: 0 4px 20px; max-width: 660px;
}
.faq-answer a { color: var(--sage); }

/* ═══ CONTACT ═══ */
#contact {
  background: var(--beige);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-main);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); letter-spacing: -0.5px;
  margin-top: 4px; margin-bottom: 8px;
}
.contact-info h2 em { font-style: normal; color: var(--sage); }
.contact-tagline {
  font-family: var(--font-main);
  font-size: 15px; color: var(--muted); line-height: 1.75;
  margin-bottom: 34px; max-width: 380px;
}
.contact-links { display: flex; flex-direction: column; }
.c-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--beige-mid);
  color: var(--ink); transition: color .2s, padding-left .2s;
}
.c-link:first-child { border-top: 1px solid var(--beige-mid); }
.c-link:hover { color: var(--sage); padding-left: 6px; }
.c-link-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--beige-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color .2s, background .2s;
}
.c-link:hover .c-link-icon { border-color: var(--sage); background: rgba(89,115,110,.07); }
.c-link-icon svg { width: 14px; height: 14px; }
.c-link-label {
  font-family: var(--font-main);
  display: block; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px; font-weight: 700;
}
.c-link-val {
  font-family: var(--font-main);
  font-size: 14px; font-weight: 400;
}

/* Contact Form */
.contact-form {
  background: var(--white); border: 1px solid var(--beige-mid);
  border-radius: 4px; padding: 40px 36px;
}
.contact-form h3 {
  font-family: var(--font-main);
  font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
}
.contact-form .form-tagline {
  font-family: var(--font-main);
  font-size: 14px; color: var(--muted); margin-bottom: 26px; line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { margin-bottom: 14px; }
.fg label {
  font-family: var(--font-main);
  display: block; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px; font-weight: 700;
}
.fg input, .fg select, .fg textarea {
  width: 100%; font-family: var(--font-main);
  font-size: 14px; font-weight: 400; color: var(--ink);
  background: var(--beige); border: 1px solid var(--beige-mid);
  border-radius: 2px; padding: 12px 14px;
  outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); opacity: .7; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--sage); }
.fg textarea { resize: vertical; min-height: 100px; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8c88' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-btn {
  width: 100%; margin-top: 6px;
  font-family: var(--font-main);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px; background: var(--sage); color: var(--white);
  border: none; border-radius: 2px; cursor: pointer;
  transition: background .2s, transform .2s;
}
.form-btn:hover { background: var(--sage-deep); transform: translateY(-1px); }
.form-btn:disabled { opacity: .65; cursor: default; transform: none; }
.form-status {
  margin-top: 12px; padding: 12px 16px; border-radius: 2px;
  font-family: var(--font-main); font-size: 14px; display: none;
}
.form-status.ok { background: rgba(89,115,110,.1); color: var(--sage-deep); border: 1px solid var(--sage-pale); }
.form-status.err { background: rgba(180,80,80,.08); color: #903030; border: 1px solid rgba(180,80,80,.2); }

/* ═══ FOOTER ═══ */
footer {
  background: var(--sage); padding: 28px 6%;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px;
}
/* Left: AW logo + Rudi du Preez side-by-side */
.footer-brand {
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  white-space: nowrap;
}
.footer-brand span {
  font-family: var(--font-brand);
  font-size: 26px; font-weight: 700;
  color: rgba(255,255,255,.85);
}
/* AW logo left — bg matches footer sage exactly, no filter needed */
.footer-aw-logo {
  height: 36px; width: auto; object-fit: contain; flex-shrink: 0;
}
.footer-copy {
  font-family: var(--font-main);
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,.4); text-align: center;
}
.footer-copy a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-copy a:hover { color: var(--white); }
/* Right: AW logo replacing QLD Licensed Agent */
.footer-lic {
  display: flex; align-items: center; justify-content: flex-end;
}
.footer-aw-logo-right {
  height: 40px; width: auto; object-fit: contain;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  #nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 110px 6% 52px; justify-content: flex-start; }
  .hero-right { height: 52vw; min-height: 280px; }
  .hero-right img { object-position: center 25%; }
  #about, #candice { grid-template-columns: 1fr; gap: 40px; }
  #about { padding: 70px 6%; }
  #candice { padding: 70px 6%; }
  #candice .about-img-wrap { max-width: 360px !important; margin: 0 auto; }
  .about-img-wrap { max-width: 360px; margin: 0 auto; }
  .t-grid { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .footer-brand { justify-content: center; }
  .footer-lic { justify-content: center; }
  .sec-header { flex-direction: column; align-items: flex-start; }
  .intro-band { flex-direction: column; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 36px; letter-spacing: -0.5px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .about-creds { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 26px 18px; }
  .section { padding: 70px 5%; }
  #contact { padding: 70px 5%; }
}
@media (max-width: 400px) {
  .areas-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
}

/* ═══ BLOG ARCHIVE ═══ */
.blog-hero { background: var(--sage-deep); padding: 120px 6% 70px; text-align: center; }
.blog-hero h1 { font-family: var(--font-main); font-size: clamp(32px,4vw,58px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; color: var(--white); margin-bottom: 16px; }
.blog-hero h1 em { font-style: normal; color: var(--sage-pale); }
.blog-hero p { font-family: var(--font-main); font-size: 17px; color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.blog-section { padding: 80px 6%; background: var(--beige); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: var(--white); border: 1px solid var(--beige-mid); border-radius: 3px; overflow: hidden; transition: border-color .3s, transform .25s, box-shadow .25s; }
.blog-card:hover { border-color: var(--sage-pale); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(89,115,110,.1); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-img-placeholder { width: 100%; height: 200px; background: var(--sage-pale); }
.blog-card-body { padding: 24px 22px 28px; }
.blog-card-cat { font-family: var(--font-main); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-bottom: 10px; display: block; }
.blog-card-title { font-family: var(--font-main); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.blog-card-title a { color: inherit; transition: color .2s; }
.blog-card-title a:hover { color: var(--sage); }
.blog-card-excerpt { font-family: var(--font-main); font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.blog-card-meta { font-family: var(--font-main); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); padding-top: 14px; border-top: 1px solid var(--beige-mid); }
.blog-read-more { font-family: var(--font-main); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); display: inline-block; margin-top: 8px; transition: color .2s; }
.blog-read-more:hover { color: var(--sage-deep); }
.blog-pagination { text-align: center; margin-top: 48px; }
.blog-pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; font-family: var(--font-main); font-size: 13px; font-weight: 500; color: var(--ink); background: var(--white); border: 1px solid var(--beige-mid); border-radius: 2px; transition: all .2s; }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

/* ═══ SINGLE POST ═══ */
.post-hero { background: var(--sage-deep); padding: 120px 6% 70px; }
.post-hero-inner { max-width: 780px; }
.post-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-main); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 24px; transition: color .2s; }
.post-back:hover { color: var(--white); }
.post-cat { font-family: var(--font-main); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-pale); font-weight: 700; margin-bottom: 16px; display: block; }
.post-hero h1 { font-family: var(--font-main); font-size: clamp(28px,3.5vw,52px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; color: var(--white); margin-bottom: 20px; }
.post-meta { font-family: var(--font-main); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; padding: 70px 6%; background: var(--beige); align-items: start; }
.post-content { font-family: var(--font-main); font-size: 17px; line-height: 1.85; color: var(--ink); background: var(--white); padding: 48px 44px; border-radius: 3px; border: 1px solid var(--beige-mid); }
.post-content h2 { font-size: clamp(22px,2.5vw,32px); font-weight: 700; color: var(--ink); margin: 36px 0 16px; letter-spacing: -.5px; line-height: 1.2; }
.post-content h3 { font-size: clamp(18px,2vw,24px); font-weight: 700; color: var(--ink); margin: 28px 0 12px; }
.post-content p { margin-bottom: 20px; color: var(--muted); }
.post-content ul, .post-content ol { padding-left: 22px; margin-bottom: 20px; color: var(--muted); }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--sage); }
.post-content strong { color: var(--ink); font-weight: 700; }
.post-content blockquote { border-left: 3px solid var(--sage-pale); padding: 4px 0 4px 20px; margin: 28px 0; font-style: italic; color: var(--sage-deep); }
.post-content img { border-radius: 3px; margin: 28px 0; width: 100%; }
.sidebar-widget { background: var(--white); border: 1px solid var(--beige-mid); border-radius: 3px; padding: 28px 24px; margin-bottom: 20px; }
.sidebar-widget h4 { font-family: var(--font-main); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-bottom: 16px; }
.sidebar-cta { background: var(--sage); border-color: var(--sage); }
.sidebar-cta h4 { color: rgba(255,255,255,.7); }
.sidebar-cta p { font-family: var(--font-main); font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 18px; }
.sidebar-cta a.btn-white { display: block; text-align: center; padding: 12px 20px; background: var(--white); color: var(--sage-deep); font-family: var(--font-main); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 2px; transition: background .2s; }
.sidebar-cta a.btn-white:hover { background: var(--beige); }
.sidebar-recent-post { padding: 10px 0; border-bottom: 1px solid var(--beige-mid); }
.sidebar-recent-post:last-child { border-bottom: none; }
.sidebar-recent-post a { font-family: var(--font-main); font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; transition: color .2s; }
.sidebar-recent-post a:hover { color: var(--sage); }
.sidebar-recent-post span { display: block; font-family: var(--font-main); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
@media (max-width:1100px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:900px){ .blog-grid { grid-template-columns: 1fr; } .post-layout { grid-template-columns: 1fr; } .post-sidebar { display: none; } }
@media (max-width:640px){ .post-content { padding: 28px 20px; } }
