/*
Theme Name: A.G. Elliott Consulting
Theme URI: https://agelliot.com
Author: A.G. Elliott, LLC
Description: ACF Flexible Content page builder theme for A.G. Elliott, LLC — fully editable via WordPress dashboard.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: age-consulting
*/

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --slate:        #3d4f52;
  --slate-dark:   #2b383b;
  --slate-light:  #5a7074;
  --teal:         #4a8c8c;
  --teal-light:   #6aacac;
  --teal-pale:    #e8f2f2;
  --gold:         #c4a35a;
  --gold-light:   #e2c98a;
  --cream:        #f9f7f4;
  --white:        #ffffff;
  --gray-50:      #f5f3f0;
  --gray-100:     #eae8e4;
  --gray-200:     #d4d0ca;
  --gray-400:     #9e9890;
  --gray-600:     #6e6860;
  --gray-800:     #3a3530;
  --ink:          #1e2a2c;
  --orange:       #eb5c1b;
  --font-display: 'Manrope' Libre Baskerville, Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --max-width:    1160px;
  --section-pad:  96px;
  --transition:   0.28s ease;
  --shadow-sm:    0 2px 8px rgba(29,42,44,0.07);
  --shadow-md:    0 8px 28px rgba(29,42,44,0.11);
  --shadow-lg:    0 20px 56px rgba(29,42,44,0.16);
}

/* ===========================
   RESET
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--gray-600); line-height: 1.72; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.22; color: var(--slate-dark); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

/* ===========================
   LAYOUT
=========================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad) 0; }
.section--white  { background: var(--white); }
.section--slate  { background: var(--slate-dark); }
.section--teal   { background: var(--teal); }
.section--gray   { background: var(--gray-50); }
.section--ink    { background: var(--ink); }

/* ===========================
   EYEBROW / LABEL
=========================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.1rem;
}
.eyebrow::before { display: none; }
.eyebrow--light  { color: var(--teal-light); }
.eyebrow--light::before { display: none; }
.eyebrow--gold   { color: var(--gold-light); }
.eyebrow--gold::before  { display: none; }
.eyebrow--white  { color: rgba(255,255,255,0.7); }
.eyebrow--white::before { display: none; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.82rem 2rem; font-family: var(--font-body);
  font-size: 0.83rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
}
.btn-primary   { background: var(--teal);  color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--slate-dark); border-color: var(--slate-dark); }
.btn-secondary { background: var(--slate-dark); color: var(--white); border-color: var(--slate-dark); }
.btn-secondary:hover { background: var(--teal); border-color: var(--teal); }
.btn-outline   { background: transparent; color: var(--slate-dark); border-color: var(--slate-dark); }
.btn-outline:hover { background: var(--slate-dark); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--slate-dark); border-color: var(--white); }
.btn-white     { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }

/* ===========================
   HEADER
=========================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.4rem 0; transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { background: var(--white); box-shadow: var(--shadow-sm); padding: 0.9rem 0; }

/* Left-align header content to content edge */
.site-header .container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

/* Logo — show light on hero, swap to dark on scroll */
.site-logo { display: flex; align-items: center; flex-shrink: 0; font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; text-decoration: none; }
.logo-wrap { position: relative; display: block; height: 44px; }
.logo-wrap img { height: 44px; width: auto; display: block; transition: opacity 0.3s ease; }
.logo-wrap .logo-light { opacity: 1; }
.logo-wrap .logo-dark  { opacity: 0; position: absolute; top: 0; left: 0; }
.logo-text { color: var(--white); font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; line-height: 44px; }
.logo-text span { color: var(--teal-light); }

/* On scroll — swap to dark logo */
.site-header.scrolled .logo-wrap .logo-light { opacity: 0; }
.site-header.scrolled .logo-wrap .logo-dark  { opacity: 1; }
.site-header.scrolled .logo-text { color: var(--slate-dark); }
.site-header.scrolled .logo-text span { color: var(--teal); }

/* Nav links — white on hero, slate on scroll */
.main-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a { display: block; padding: 0.4rem 0.85rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.85); transition: color var(--transition); position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0.85rem; right: 0.85rem; height: 2px; background: var(--teal-light); transform: scaleX(0); transition: transform var(--transition); }
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--white); }
.main-nav a:hover::after, .main-nav .current-menu-item > a::after { transform: scaleX(1); }
.site-header.scrolled .main-nav a { color: var(--slate); }
.site-header.scrolled .main-nav a::after { background: var(--teal); }
.site-header.scrolled .main-nav a:hover, .site-header.scrolled .main-nav .current-menu-item > a { color: var(--teal); }
.nav-cta { margin-left: 0.75rem; }
.hamburger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 300; position: relative; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all var(--transition); }
.site-header.scrolled .hamburger span { background: var(--slate-dark); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero { background: var(--slate-dark); padding: 150px 0 72px; position: relative; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(29,42,44,0.72); }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1; }
/* arch removed — clean rectangular bottom edge */
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 560px; margin-top: 1rem; font-size: 1.08rem; }

/* ===========================
   FLEXIBLE CONTENT BLOCKS
=========================== */

/* --- BLOCK: Hero --- */
.block-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 90px; position: relative; overflow: hidden;
  background-color: var(--slate-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.block-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,30,25,0.75) 0%, rgba(20,30,25,0.45) 60%, rgba(20,30,25,0.2) 100%);
  z-index: 1;
}
.block-hero .hero-grid {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(61,79,82,0.04) 80px),
                    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(61,79,82,0.04) 80px);
}
.block-hero .hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.block-hero .hero-visual { display: none; }
.block-hero .hero-eyebrow { display: flex; align-items: center; gap: 0.8rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.block-hero .hero-eyebrow::before { display: none; }
.block-hero h1 { margin-bottom: 1.4rem; font-weight: 400; color: var(--white); }
.block-hero h1 strong { font-weight: 700; display: block; }
.block-hero .hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.85); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8; }
.block-hero .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.block-hero .hero-stats { display: flex; gap: 0; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.block-hero .hero-stat { padding-right: 2.5rem; margin-right: 2.5rem; border-right: 1px solid rgba(255,255,255,0.15); }
.block-hero .hero-stat:last-child { border-right: none; }
.block-hero .hero-stat .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.block-hero .hero-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }
.block-hero .hero-visual { position: relative; }
.block-hero .hero-img { aspect-ratio: 4/5; overflow: hidden; background: var(--gray-100); position: relative; }
.block-hero .hero-img img { width: 100%; height: 100%; object-fit: cover; }
.block-hero .hero-img::after { content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px; border: 2px solid var(--teal); z-index: -1; }
.block-hero .hero-img-placeholder { width: 100%; min-height: 460px; background: linear-gradient(160deg, var(--slate) 0%, var(--slate-dark) 100%); display: flex; align-items: center; justify-content: center; }

/* --- BLOCK: Text + Image Split --- */
.block-split { padding: var(--section-pad) 0; }
.block-split .split-inner { display: grid; gap: 5rem; align-items: center; }
.block-split .split-inner.cols-2 { grid-template-columns: 1fr 1fr; }
.block-split .split-inner.image-right .split-image { order: 2; }
.block-split .split-inner.image-right .split-content { order: 1; }
.block-split .split-image { position: relative; }
.block-split .split-image-overlay { position: absolute; inset: 0; pointer-events: none; }
.block-split .split-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.block-split .split-image::after { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 2px solid var(--teal); z-index: -1; }
.block-split .split-image-plain img { aspect-ratio: 4/3; }
.block-split .split-image-plain::after { display: none; }
.block-split .split-content h2 { margin-bottom: 1.1rem; }
.block-split .split-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.block-split .split-badge { padding: 1.2rem 1.4rem; background: var(--gray-50); border-left: 3px solid var(--teal); }
.block-split .split-badge h4 { font-size: 0.92rem; margin-bottom: 0.3rem; font-family: var(--font-body); font-weight: 700; }
.block-split .split-badge p  { font-size: 0.85rem; margin: 0; }

/* --- BLOCK: Cards Grid --- */
.block-cards { padding: var(--section-pad) 0; }
.block-cards .cards-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.block-cards .cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.block-cards .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.block-cards .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.block-cards .card { background: var(--white); border: 1px solid var(--gray-100); padding: 2.5rem 2rem; position: relative; transition: transform var(--transition), box-shadow var(--transition); overflow: hidden; }
.block-cards .card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.block-cards .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.block-cards .card:hover::before { transform: scaleX(1); }
.block-cards .card-img { margin: -2rem -2rem 1.5rem; overflow: hidden; border-radius: 12px 12px 0 0; aspect-ratio: 16/9; position: relative; }
.block-cards .card-img-overlay { position: absolute; inset: 0; pointer-events: none; border-radius: 12px 12px 0 0; }
.block-cards .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.block-cards .card:hover .card-img img { transform: scale(1.04); }
.block-cards .card-icon { width: 48px; height: 48px; background: var(--teal-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--teal); margin-bottom: 1.5rem; }
.block-cards .card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.block-cards .card p  { font-size: 0.93rem; }
.block-cards .card-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.4rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--teal); transition: gap var(--transition); }
.block-cards .card-link:hover { gap: 0.85rem; }

/* Dark variant cards */
.block-cards .card--dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.block-cards .card--dark h3 { color: var(--white); }
.block-cards .card--dark p  { color: rgba(255,255,255,0.6); }
.block-cards .card--dark .card-icon { background: rgba(74,140,140,0.2); }

/* Industry card variant */
.block-cards .card--industry { border-bottom: 3px solid transparent; border-top: none; }
.block-cards .card--industry::before { display: none; }
.block-cards .card--industry:hover { border-bottom-color: var(--teal); }
.block-cards .card--industry h3 { color: var(--teal); }

/* --- BLOCK: 2x2 Image + Text Grid --- */
.block-grid2x2 { padding: var(--section-pad) 0; }
.grid2x2-rows { display: flex; flex-direction: column; margin-top: 3rem; }
.grid2x2-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  border-top: 1px solid var(--gray-200);
  min-height: 196px;
}
.grid2x2-row:last-child { border-bottom: 1px solid var(--gray-200); }
.grid2x2-row.row-reverse { flex-direction: row-reverse !important; }
.grid2x2-image {
  flex: 0 0 48%;
  width: 48%;
  overflow: hidden;
  min-height: 196px;
  max-height: 280px;
  position: relative;
}
.grid2x2-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.grid2x2-row:hover .grid2x2-image img { transform: scale(1.03); }
.grid2x2-img-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  background: linear-gradient(135deg, var(--slate), var(--slate-dark));
}
.grid2x2-content {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.grid2x2-content h3 { font-size: 1.05rem; color: var(--slate-dark); margin: 0; line-height: 1.3; }
.grid2x2-content p  { color: var(--gray-600); line-height: 1.75; margin: 0; font-size: 0.88rem; }
.grid2x2-content .card-link { margin-top: 0.5rem; }
@media (max-width: 768px) {
  .grid2x2-row,
  .grid2x2-row.row-reverse { flex-direction: column !important; }
  .grid2x2-image { flex: none; width: 100%; min-height: 220px; }
  .grid2x2-content { padding: 2rem 1.5rem; }
}

/* --- BLOCK: Stats Bar --- */
.block-stats { padding: 3.5rem 0; }
.block-stats .stats-inner { display: grid; text-align: center; }
.block-stats .stat-item { padding: 1rem 2rem; border-right: 1px solid rgba(255,255,255,0.15); }
.block-stats .stat-item:last-child { border-right: none; }
.block-stats .stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.block-stats .stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }

/* --- BLOCK: Testimonial --- */
.block-testimonial { padding: var(--section-pad) 0; }
.block-testimonial .testimonial-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.block-testimonial blockquote { font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-style: italic; line-height: 1.65; margin-bottom: 1.5rem; }
.block-testimonial blockquote--dark { color: var(--white); }
.block-testimonial cite { font-size: 0.8rem; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.block-testimonial .teal-bar { background: var(--teal-pale); border-left: 4px solid var(--teal); padding: 2.5rem 3rem; text-align: left; position: relative; }
.block-testimonial .teal-bar::before { content: '\201C'; position: absolute; top: 1rem; left: 2rem; font-family: var(--font-display); font-size: 5rem; color: var(--teal); opacity: 0.15; line-height: 1; }
.block-testimonial .teal-bar blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--slate-dark); line-height: 1.7; margin-bottom: 1.2rem; }
.block-testimonial .teal-bar cite { color: var(--teal); }

/* --- BLOCK: CTA Banner --- */
.block-cta { padding: 72px 0; text-align: center; }
.block-cta h2 { margin-bottom: 1.2rem; }
.block-cta p  { max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.block-cta .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- BLOCK: Process Steps --- */
.block-process { padding: var(--section-pad) 0; }
.block-process .steps { display: grid; gap: 0; margin-top: 3rem; position: relative; }
.block-process .steps::before { content: ''; position: absolute; top: 24px; left: 12%; right: 12%; height: 1px; background: var(--gray-200); }
.block-process .step { padding: 0 1.5rem; text-align: center; position: relative; }
.block-process .step-num { width: 48px; height: 48px; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin: 0 auto 1.5rem; border-radius: 50%; position: relative; z-index: 1; }
.block-process .step h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.block-process .step p  { font-size: 0.88rem; }

/* --- BLOCK: Two Column Text --- */
.block-twocol { padding: var(--section-pad) 0; }
.block-twocol .twocol-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.block-twocol .twocol-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 2rem; }
.block-twocol .twocol-col { display: flex; flex-direction: column; gap: 0.75rem; }
.block-twocol h3 { margin-bottom: 1rem; }

/* --- BLOCK: Accordion / FAQ --- */
.block-accordion { padding: var(--section-pad) 0; }
.block-accordion .accordion-item { border-bottom: 1px solid var(--gray-200); }
.block-accordion .accordion-trigger { width: 100%; background: none; border: none; text-align: left; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--slate-dark); cursor: pointer; transition: color var(--transition); }
.block-accordion .accordion-trigger:hover { color: var(--teal); }
.block-accordion .accordion-trigger .icon { width: 24px; height: 24px; border: 2px solid var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--teal); flex-shrink: 0; transition: transform var(--transition); }
.block-accordion .accordion-trigger.open .icon { transform: rotate(45deg); }
.block-accordion .accordion-body { display: none; padding: 0 0 1.4rem; max-width: 720px; }
.block-accordion .accordion-body p { font-size: 0.95rem; }
.block-accordion .accordion-body.open { display: block; }

/* --- BLOCK: Icon List --- */
.block-iconlist { padding: var(--section-pad) 0; }
.block-iconlist .list-items { margin-top: 2.5rem; }
.block-iconlist .list-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--gray-100); }
.block-iconlist .list-item:last-child { border-bottom: none; }
.block-iconlist .list-dot { width: 10px; height: 10px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 0.4rem; }
.block-iconlist .list-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.block-iconlist .list-item p  { font-size: 0.92rem; margin: 0; }

/* ===========================
   FOOTER
=========================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .site-logo { color: var(--white); display: block; margin-bottom: 1.2rem; }
.footer-brand .footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.72); }
.footer-col h5 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 1.4rem; }
.footer-col li { margin-bottom: 0.65rem; font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.footer-col a  { font-size: 0.88rem; color: rgba(255,255,255,0.72); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; font-size: 0.8rem; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0 2rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-disclaimer p { margin-bottom: 0.4rem; color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.footer-disclaimer strong { color: rgba(255,255,255,0.6); letter-spacing: 0.08em; font-size: 0.7rem; }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.in { opacity: 1; transform: none; }

/* ===========================
   SINGLE POST
=========================== */
.single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.entry-content p  { font-size: 1.02rem; line-height: 1.88; color: var(--gray-600); }
.entry-content h2, .entry-content h3 { margin: 2rem 0 0.9rem; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .block-hero .hero-inner { grid-template-columns: 1fr; }
  .block-hero .hero-visual { display: none; }
  .block-split .split-inner.cols-2 { grid-template-columns: 1fr; }
  .block-cards .cards-grid.cols-3, .block-cards .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .block-twocol .twocol-inner { grid-template-columns: 1fr; gap: 3rem; }
  .block-twocol .twocol-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .main-nav { display: none; position: fixed; inset: 0; background: var(--white); flex-direction: column; align-items: center; justify-content: center; z-index: 250; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav a { font-size: 1.1rem; padding: 0.7rem 1rem; }
  .hamburger { display: flex; }
  .block-cards .cards-grid.cols-2, .block-cards .cards-grid.cols-3, .block-cards .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .block-process .steps { grid-template-columns: 1fr 1fr !important; }
  .block-process .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .single-layout { grid-template-columns: 1fr; }
  .block-split .split-badges { grid-template-columns: 1fr; }
}
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.aligncenter { display: block; margin: 1.5rem auto; }
.alignleft { float: left; margin: 0 2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 2rem; }
