/* TruLeaf Landscaping - Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1a3a2a;
  --forest-deep: #0f2318;
  --forest-mid: #2a5040;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e8c0;
  --cream: #faf6ee;
  --warm-white: #fffdf8;
  --text-dark: #1a1a14;
  --text-mid: #3a3a2e;
  --text-light: #7a7a6a;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'DM Sans', -apple-system, sans-serif;
  --elegant: 'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px; display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 26, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(201,168,76,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text span:first-child { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--warm-white); letter-spacing: 0.02em; }
.nav-logo-text span:last-child { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 300; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a, .nav-links button { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; background: none; border: none; cursor: pointer; transition: color 0.2s; }
.nav-links a:hover, .nav-links button:hover { color: var(--warm-white); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--warm-white); border: 1px solid rgba(26,58,42,0.1); border-radius: 4px; padding: 8px 0; min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); list-style: none; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a { display: block; padding: 10px 20px; font-size: 0.82rem; color: var(--text-dark); text-decoration: none; text-transform: none; letter-spacing: 0.02em; }
.nav-dropdown-menu li a:hover { background: var(--cream); color: var(--forest); }
.nav-cta { background: var(--gold) !important; color: var(--forest-deep) !important; padding: 10px 20px !important; border-radius: 2px !important; font-weight: 600 !important; }
.nav-phone { display: flex; align-items: center; gap: 6px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px 4px; z-index: 202; }
.nav-hamburger span { display: block; width: 25px; height: 2px; background: var(--warm-white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 100vw); z-index: 200; background: var(--forest-deep); flex-direction: column; padding: 90px 36px 48px; overflow-y: auto; transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); box-shadow: -8px 0 40px rgba(0,0,0,0.4); }
.mobile-drawer.open { display: flex; transform: translateX(0); }
.mobile-drawer-nav { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-drawer-item { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--warm-white); text-decoration: none; border: none; background: none; text-align: left; cursor: pointer; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); line-height: 1; letter-spacing: -0.01em; transition: color 0.2s; width: 100%; }
.mobile-drawer-item:hover { color: var(--gold); }
.mobile-drawer-sub { display: flex; flex-direction: column; padding-left: 14px; border-left: 2px solid rgba(201,168,76,0.3); margin: 2px 0 10px; }
.mobile-drawer-sub a { font-family: var(--body); font-size: 0.9rem; color: rgba(255,255,255,0.55); padding: 9px 0; display: block; text-decoration: none; transition: color 0.2s; }
.mobile-drawer-sub a:hover { color: var(--gold); }
.mobile-drawer-section-label { font-family: var(--body); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); padding: 20px 0 6px; }
.mobile-drawer-footer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; margin-top: 20px; }
.mobile-drawer-cta { display: block; width: 100%; background: var(--gold); color: var(--forest-deep); border: none; padding: 16px; font-family: var(--body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; cursor: pointer; margin-bottom: 18px; text-align: center; text-decoration: none; }
.mobile-drawer-phone { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.45); font-size: 0.88rem; text-decoration: none; justify-content: center; }
.mobile-drawer-phone svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn-gold { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--forest-deep); padding: 16px 32px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; border-radius: 2px; transition: all 0.25s; border: none; cursor: pointer; font-family: var(--body); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: var(--forest-deep); color: var(--gold); padding: 16px 32px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; border-radius: 2px; transition: all 0.25s; border: none; cursor: pointer; font-family: var(--body); }
.btn-dark:hover { background: var(--forest); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; background: transparent; color: var(--warm-white); border: 1px solid rgba(255,255,255,0.3); padding: 16px 32px; font-size: 0.85rem; letter-spacing: 0.06em; text-decoration: none; border-radius: 2px; transition: all 0.25s; font-family: var(--body); cursor: pointer; }
.btn-outline:hover { background: rgba(255,255,255,0.08); }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; }
.section { padding: 100px 80px; }
.section-alt { background: var(--cream); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.section-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.section-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.section-eyebrow span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.1; color: var(--forest-deep); margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--gold); }
.eyebrow-line { width: 40px; height: 1px; background: var(--gold); }

/* ── PAGE HERO (dark sections) ── */
.page-hero { padding: 180px 80px 120px; background: var(--forest-deep); position: relative; overflow: hidden; min-height: 520px; display: flex; flex-direction: column; justify-content: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%); }
.page-hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; position: relative; }
.page-hero-eyebrow span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; line-height: 1.05; color: var(--warm-white); letter-spacing: -0.02em; max-width: 700px; margin-bottom: 24px; position: relative; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-family: var(--elegant); font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; margin-bottom: 40px; position: relative; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; position: relative; }

/* ── ASIDE CARD ── */
.aside-card { background: var(--forest-deep); border-radius: 4px; padding: 40px; position: sticky; top: 100px; }
.aside-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--warm-white); margin-bottom: 16px; }
.aside-card > p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.aside-phone { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); text-decoration: none; display: block; margin-bottom: 8px; }
.aside-email { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; }
.aside-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 24px 0; }
.aside-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.aside-badge svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.aside-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ── WHY CARDS ── */
.why-card { background: var(--warm-white); border: 1px solid rgba(26,58,42,0.1); border-radius: 4px; padding: 32px; }
.why-num { font-family: var(--serif); font-size: 3rem; font-weight: 900; color: var(--gold-pale); line-height: 1; margin-bottom: 16px; }
.why-card h4 { font-size: 1rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 10px; }
.why-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* ── FAQ ── */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid rgba(26,58,42,0.1); }
.faq-q-btn { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--body); font-size: 1rem; font-weight: 600; color: var(--forest-deep); }
.faq-icon { font-size: 1.2rem; transition: transform 0.3s; color: var(--gold); }
.faq-q-btn.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-a.open { max-height: 400px; padding-bottom: 24px; }

/* ── SERVICES LIST ── */
.services-checks { list-style: none; }
.services-checks li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; border-bottom: 1px solid rgba(26,58,42,0.07); }
.services-checks li:last-child { border-bottom: none; }
.check { color: var(--gold); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.services-list { list-style: none; margin-top: 32px; }
.services-list li { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(26,58,42,0.08); }
.services-list li:last-child { border-bottom: none; }
.svc-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-icon svg { width: 18px; height: 18px; color: var(--forest); }
.services-list h4 { font-size: 0.95rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 6px; }
.services-list p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ── CLIENT TYPES ── */
.client-types { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.client-card { background: var(--cream); border-radius: 4px; padding: 24px; }
.client-card h4 { font-size: 0.92rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; }
.client-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 900; color: var(--forest-deep); }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.process-step { text-align: center; padding: 32px 16px; }
.process-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 900; color: var(--gold-pale); margin-bottom: 12px; }
.process-step h4 { font-size: 0.95rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }

/* ── OUR STORY PAGE ── */
.story { padding: 130px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; background: var(--warm-white); position: relative; }
.story-visual { position: relative; }
.story-brand-panel { background: var(--forest-deep); border-radius: 4px; padding: 52px 44px; display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 560px; justify-content: center; position: relative; overflow: hidden; }
.story-brand-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 20%, rgba(201,168,76,0.09) 0%, transparent 65%); pointer-events: none; }
.story-brand-logo { margin-bottom: 20px; position: relative; }
.story-brand-wordmark { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 28px; }
.story-brand-name { font-family: var(--serif); font-size: 2.6rem; font-weight: 900; color: var(--warm-white); letter-spacing: -0.02em; line-height: 1; }
.story-brand-sub { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.story-brand-est { font-family: var(--elegant); font-size: 0.82rem; font-style: italic; color: rgba(255,255,255,0.3); margin-top: 2px; }
.story-brand-divider { width: 48px; height: 1px; background: rgba(201,168,76,0.3); margin: 24px auto; }
.story-brand-quote { font-family: var(--elegant); font-size: 1.2rem; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.75; max-width: 300px; margin: 0; }
.story-brand-cite { display: block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 14px; font-style: normal; }
.story-brand-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.story-brand-badge { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); border-radius: 4px; padding: 14px 10px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.story-brand-badge svg { width: 18px; height: 18px; color: var(--gold); }
.story-brand-badge span { font-size: 0.75rem; font-weight: 600; color: var(--warm-white); }
.story-brand-badge small { font-size: 0.62rem; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; text-transform: uppercase; }
.story-content { display: flex; flex-direction: column; gap: 24px; }
.story-body p { font-size: 0.95rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; }
.story-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.timeline-item { display: flex; gap: 24px; padding-bottom: 40px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 24px; top: 48px; bottom: 0; width: 1px; background: rgba(26,58,42,0.15); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { width: 48px; height: 48px; background: var(--forest-deep); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--body); font-size: 0.7rem; font-weight: 700; color: var(--gold); position: relative; z-index: 1; }
.timeline-content { flex: 1; padding-top: 8px; }
.timeline-content h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--forest-deep); margin-bottom: 8px; }
.timeline-content p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* ── GUARANTEE SECTION ── */
.guarantee { background: var(--forest-deep); padding: 100px 80px; position: relative; overflow: hidden; }
.guarantee::before { content: '100%'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: clamp(12rem, 25vw, 22rem); font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }
.guarantee-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.guarantee-left { display: flex; flex-direction: column; gap: 24px; }
.guarantee-left .section-title { color: var(--warm-white); }
.guarantee-left .section-eyebrow span { color: var(--gold); }
.guarantee-left .section-eyebrow-line { background: var(--gold); }
.guarantee-desc { font-family: var(--elegant); font-size: 1.15rem; line-height: 1.8; color: rgba(255,255,255,0.65); font-style: italic; }
.guarantee-seal { width: 160px; height: 160px; border: 2px solid var(--gold); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; margin-bottom: 32px; }
.guarantee-seal-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.guarantee-seal-text { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-align: center; max-width: 100px; }
.guarantee-points { display: flex; flex-direction: column; gap: 28px; }
.guarantee-point { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.guarantee-point:last-child { border-bottom: none; padding-bottom: 0; }
.guarantee-point-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.guarantee-point-icon svg { width: 20px; height: 20px; color: var(--gold); }
.guarantee-point h4 { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--warm-white); margin-bottom: 6px; }
.guarantee-point p { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.5); }

/* ── BLOG ── */
.blog-header { padding: 140px 80px 80px; background: var(--cream); border-bottom: 1px solid rgba(26,58,42,0.08); }
.blog-header h1 { font-family: var(--serif); font-size: clamp(2.4rem,5vw,4rem); font-weight: 900; line-height: 1.1; color: var(--forest-deep); max-width: 640px; margin-bottom: 16px; }
.blog-header h1 em { font-style: italic; color: var(--gold); }
.blog-header p { font-family: var(--elegant); font-style: italic; font-size: 1.1rem; color: var(--text-mid); max-width: 520px; line-height: 1.75; }
.blog-header-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.featured-post-blog { border: 1px solid rgba(26,58,42,0.1); border-radius: 4px; overflow: hidden; margin-bottom: 40px; }
.featured-post-body { padding: 40px; }
.post-tag-blog { display: inline-block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: var(--gold-pale); padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.post-title-blog { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--forest-deep); line-height: 1.2; margin-bottom: 12px; text-decoration: none; display: block; }
.post-title-blog:hover { color: var(--forest-mid); }
.post-meta { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.06em; margin-bottom: 16px; text-transform: uppercase; }
.post-excerpt { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.read-more-btn { font-size: 0.8rem; font-weight: 600; color: var(--forest); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; background: none; border: none; font-family: var(--body); }
.post-list { list-style: none; }
.post-list-item { padding: 24px 0; border-bottom: 1px solid rgba(26,58,42,0.08); }
.post-list-item:last-child { border-bottom: none; }
.post-title-sm { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--forest-deep); line-height: 1.2; margin-bottom: 8px; cursor: pointer; background: none; border: none; text-align: left; width: 100%; }
.sidebar-card-blog { background: var(--cream); border: 1px solid rgba(26,58,42,0.1); border-radius: 4px; padding: 28px; margin-bottom: 24px; }
.sidebar-card-blog h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--forest-deep); margin-bottom: 16px; }
.sidebar-links-blog { list-style: none; }
.sidebar-links-blog li { padding: 10px 0; border-bottom: 1px solid rgba(26,58,42,0.07); font-size: 0.82rem; }
.sidebar-links-blog li:last-child { border-bottom: none; }
.sidebar-links-blog a, .sidebar-links-blog button { color: var(--text-mid); text-decoration: none; cursor: pointer; background: none; border: none; font-family: var(--body); font-size: 0.82rem; }
.sidebar-cta-blog { background: var(--forest-deep); border-radius: 4px; padding: 28px; }
.sidebar-cta-blog h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--warm-white); margin-bottom: 12px; }
.sidebar-cta-blog p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 20px; }

/* ── BLOG ARTICLE ── */
.post-header { padding: 140px 80px 60px; background: var(--cream); border-bottom: 1px solid rgba(26,58,42,0.08); }
.post-tag { display: inline-block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: var(--gold-pale); padding: 4px 12px; border-radius: 100px; margin-bottom: 20px; }
.post-header h1 { font-family: var(--serif); font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 900; line-height: 1.1; color: var(--forest-deep); margin-bottom: 20px; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; padding: 60px 80px; max-width: 1100px; margin: 0 auto; align-items: start; }
.post-body p { font-size: 0.95rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 24px; }
.post-body h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--forest-deep); margin: 40px 0 16px; }
.post-body h3 { font-size: 1rem; font-weight: 600; color: var(--forest-deep); margin: 28px 0 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.post-breadcrumb { font-size: 0.75rem; color: var(--text-light); margin-bottom: 24px; }
.post-breadcrumb-btn { color: var(--text-light); background: none; border: none; cursor: pointer; font-family: var(--body); font-size: 0.75rem; }
.callout { background: var(--gold-pale); border-left: 3px solid var(--gold); padding: 20px 24px; border-radius: 0 4px 4px 0; margin: 32px 0; }
.schedule-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 0.85rem; }
.schedule-table th { background: var(--forest-deep); color: var(--warm-white); padding: 12px 16px; text-align: left; }
.schedule-table td { padding: 12px 16px; border-bottom: 1px solid rgba(26,58,42,0.08); color: var(--text-mid); vertical-align: top; }
.schedule-table tr:nth-child(even) td { background: var(--cream); }
.sidebar-article-card { background: var(--cream); border: 1px solid rgba(26,58,42,0.1); border-radius: 4px; padding: 28px; margin-bottom: 24px; }
.sidebar-article-card h3 { font-family: var(--serif); font-size: 1rem; color: var(--forest-deep); margin-bottom: 14px; }
.sidebar-article-links { list-style: none; }
.sidebar-article-links li { padding: 8px 0; border-bottom: 1px solid rgba(26,58,42,0.07); font-size: 0.82rem; }
.sidebar-article-links li:last-child { border-bottom: none; }
.sidebar-article-links a, .sidebar-article-links button { color: var(--text-mid); text-decoration: none; cursor: pointer; background: none; border: none; font-family: var(--body); font-size: 0.82rem; }
.sidebar-article-cta { background: var(--forest-deep); border-radius: 4px; padding: 28px; }
.sidebar-article-cta h3 { font-family: var(--serif); font-size: 1rem; color: var(--warm-white); margin-bottom: 12px; }
.sidebar-article-cta p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 20px; }

/* ── FOOTER ── */
footer { background: #0a1a10; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding: 80px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { font-family: var(--elegant); font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.4); font-style: italic; font-weight: 300; margin-top: 20px; max-width: 280px; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a, .footer-col ul button { text-decoration: none; font-size: 0.85rem; color: rgba(255,255,255,0.45); background: none; border: none; cursor: pointer; font-family: var(--body); display: block; transition: color 0.2s; text-align: left; padding: 0; }
.footer-col ul a:hover, .footer-col ul button:hover { color: var(--gold); }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.footer-contact-item span:first-child { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.footer-contact-item a, .footer-contact-item span:last-child { font-size: 0.88rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 80px; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-weight: 300; }
.footer-licenses { display: flex; gap: 20px; }
.footer-license { font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.2); text-transform: uppercase; border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 2px; }

/* ── HAMBURGER SHOW/HIDE ── */
@media (max-width: 860px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px; }
  .story { padding: 80px 40px; gap: 60px; }
  .guarantee { padding: 80px 40px; }
}
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .section { padding: 60px 24px; }
  .two-col, .stat-row, .client-types, .process-steps, .guarantee-inner, .story { grid-template-columns: 1fr; gap: 40px; }
  .story { padding: 60px 24px; }
  .blog-header { padding: 120px 24px 48px; }
  .post-header { padding: 120px 24px 48px; }
  .post-layout { grid-template-columns: 1fr; padding: 40px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 24px; }
  .footer-bottom { padding: 20px 24px; }
}
@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; }
  .footer-top { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .story-brand-badges { grid-template-columns: 1fr 1fr; }
}
