/*
Theme Name: VKG Consultoria Jurídica
Theme URI: https://vkgconsultoria.com.br
Author: VKG Consultoria
Author URI: https://vkgconsultoria.com.br
Description: Tema profissional para VKG Consultoria Jurídica. Identidade Azul Marinho + Prata. Bilíngue PT/EN, WhatsApp integrado, acesso ao Webmail.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: vkg-consultoria
Tags: law, legal, bilingual, professional, one-page
*/

/* ── DESIGN TOKENS ── */
:root {
  --navy:      #1B2D4F;
  --navy-mid:  #2C4270;
  --navy-lt:   #3C5080;
  --silver:    #8A9BB8;
  --silver-lt: #C5CFDF;
  --bg:        #EEF1F6;
  --white:     #FFFFFF;
  --text:      #1a1a2e;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(27,45,79,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138,155,184,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-box {
  width: 36px; height: 36px; background: var(--silver);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-box span { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 1px; }
.nav-logo-text strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--white); letter-spacing: 4px; }
.nav-logo-text small { font-size: 8px; letter-spacing: 3px; color: var(--silver); text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav ul a { font-size: 11px; letter-spacing: 2px; color: var(--silver-lt); text-transform: uppercase; transition: color .2s; }
nav ul a:hover { color: var(--white); }
.nav-cta {
  background: transparent !important; border: 1px solid var(--silver) !important;
  color: var(--silver) !important; padding: .5rem 1.2rem; letter-spacing: 2px;
  transition: all .2s !important;
}
.nav-cta:hover { background: var(--silver) !important; color: var(--navy) !important; }

/* ── LANG SWITCHER ── */
.lang-switch {
  display: flex; align-items: center; gap: 0; margin-left: 1.5rem;
  border: 1px solid rgba(138,155,184,0.25); overflow: hidden; flex-shrink: 0;
}
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: .42rem .75rem; cursor: pointer; border: none; background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 2px;
  color: var(--silver-lt); text-transform: uppercase; transition: all .2s; white-space: nowrap;
}
.lang-btn .flag { font-size: 14px; line-height: 1; }
.lang-btn.active { background: var(--silver); color: var(--navy); }
.lang-btn:not(.active):hover { background: rgba(138,155,184,0.1); color: var(--white); }
.lang-divider { width: 1px; background: rgba(138,155,184,0.25); align-self: stretch; }

/* ── LANDING ── */
#landing {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
#landing.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.land-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(60,80,128,0.35) 0%, transparent 65%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(138,155,184,0.04) 79px, rgba(138,155,184,0.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(138,155,184,0.04) 79px, rgba(138,155,184,0.04) 80px);
  pointer-events: none;
}
.land-edge-l { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--silver); opacity: .6; }
.land-corner-tl { position: absolute; top: 2rem; left: 2rem; width: 30px; height: 30px; border-top: 1px solid rgba(138,155,184,0.2); border-left: 1px solid rgba(138,155,184,0.2); }
.land-corner-tr { position: absolute; top: 2rem; right: 2rem; width: 30px; height: 30px; border-top: 1px solid rgba(138,155,184,0.2); border-right: 1px solid rgba(138,155,184,0.2); }
.land-corner-bl { position: absolute; bottom: 2rem; left: 2rem; width: 30px; height: 30px; border-bottom: 1px solid rgba(138,155,184,0.2); border-left: 1px solid rgba(138,155,184,0.2); }
.land-corner-br { position: absolute; bottom: 2rem; right: 2rem; width: 30px; height: 30px; border-bottom: 1px solid rgba(138,155,184,0.2); border-right: 1px solid rgba(138,155,184,0.2); }
.land-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 0; text-align: center;
  animation: landReveal 1.2s ease forwards;
}
@keyframes landReveal { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.land-pre { font-size: 9px; letter-spacing: 7px; color: var(--silver); text-transform: uppercase; margin-bottom: 2.5rem; display: flex; align-items: center; gap: 14px; }
.land-pre::before, .land-pre::after { content: ''; width: 40px; height: 1px; background: rgba(138,155,184,0.35); }
.land-logo-box { width: 72px; height: 72px; background: var(--silver); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.8rem; }
.land-logo-box span { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); letter-spacing: 2px; }
.land-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(64px, 9vw, 120px); font-weight: 300; color: var(--white); letter-spacing: 16px; line-height: 1; margin-bottom: .6rem; }
.land-sub { font-size: 10px; letter-spacing: 7px; color: var(--silver); text-transform: uppercase; margin-bottom: .8rem; }
.land-rule { width: 80px; height: 1px; background: rgba(138,155,184,0.3); margin: 1.8rem auto; }
.land-tag { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; font-style: italic; color: var(--silver-lt); letter-spacing: 2px; margin-bottom: 3.5rem; }
.land-enter {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--silver); cursor: pointer;
  border: 1px solid rgba(138,155,184,0.25); padding: .9rem 2.6rem;
  background: transparent; font-family: 'DM Sans', sans-serif; font-weight: 400; transition: all .3s;
}
.land-enter:hover { background: var(--silver); color: var(--navy); border-color: var(--silver); }
.land-enter svg { width: 14px; height: 14px; transition: transform .3s; }
.land-enter:hover svg { transform: translateX(4px); }
.land-year { position: absolute; bottom: 2.5rem; font-size: 9px; letter-spacing: 3px; color: rgba(138,155,184,0.25); }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(60,80,128,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-lines {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(138,155,184,0.06) 79px, rgba(138,155,184,0.06) 80px);
}
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 8rem 3.5rem 4rem 4rem; position: relative; z-index: 2; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; opacity: 0; animation: fadeUp .6s .2s ease forwards; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--silver); }
.hero-eyebrow span { font-size: 10px; letter-spacing: 4px; color: var(--silver); text-transform: uppercase; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 5.5vw, 82px); font-weight: 300; line-height: 1.05; color: var(--white); opacity: 0; animation: fadeUp .7s .3s ease forwards; }
.hero h1 em { font-style: italic; color: var(--silver); }
.hero-sub { margin-top: 1.8rem; font-size: 17px; font-weight: 300; line-height: 1.9; color: var(--silver-lt); max-width: 400px; opacity: 0; animation: fadeUp .7s .4s ease forwards; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.8rem; opacity: 0; animation: fadeUp .7s .5s ease forwards; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: .85rem 2rem; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; border: none; transition: all .25s; }
.btn-primary { background: var(--silver); color: var(--navy); }
.btn-primary:hover { background: var(--silver-lt); transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1px solid rgba(138,155,184,0.4); color: var(--silver); }
.btn-ghost:hover { border-color: var(--silver); background: rgba(138,155,184,0.1); }
.hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 8rem 3rem 4rem; }
.hero-card { width: 100%; max-width: 380px; background: rgba(44,66,112,0.5); border: 1px solid rgba(138,155,184,0.2); backdrop-filter: blur(12px); padding: 2.5rem; opacity: 0; animation: fadeRight .8s .4s ease forwards; }
.hero-card-label { font-size: 9px; letter-spacing: 4px; color: var(--silver); text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-stat { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .6rem; }
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--white); line-height: 1; }
.hero-stat .unit { font-size: 12px; color: var(--silver); letter-spacing: 2px; }
.hero-stat-text { font-size: 14px; color: var(--silver-lt); font-weight: 300; margin-bottom: 2rem; }
.hero-divider { height: 1px; background: rgba(138,155,184,0.2); margin: 1.5rem 0; }
.hero-areas { display: flex; flex-wrap: wrap; gap: .5rem; }
.hero-tag { font-size: 9px; letter-spacing: 1px; padding: .35rem .8rem; border: 1px solid rgba(138,155,184,0.25); color: var(--silver); text-transform: uppercase; }

/* ── SECTIONS ── */
section { padding: 6rem 4rem; }
.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: .8rem; }
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--navy-lt); }
.section-label span { font-size: 10px; letter-spacing: 4px; color: var(--navy-lt); text-transform: uppercase; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--navy-mid); }

/* ── ABOUT ── */
.about { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }
.about-visual { background: var(--navy); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(60,80,128,0.6) 0%, transparent 60%); }
.about-monogram { position: relative; z-index: 1; text-align: center; }
.about-monogram .big { font-family: 'Cormorant Garamond', serif; font-size: 140px; font-weight: 300; color: rgba(138,155,184,0.15); line-height: 1; letter-spacing: 8px; }
.about-monogram .label { font-size: 9px; letter-spacing: 6px; color: var(--silver); text-transform: uppercase; margin-top: -1rem; }
.about-content { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.about-text { font-size: 17px; font-weight: 300; line-height: 1.9; color: #445; margin-bottom: 1.5rem; }
.about-highlight { border-left: 3px solid var(--navy); padding-left: 1.5rem; margin-top: 1.5rem; }
.about-highlight p { font-size: 16px; font-weight: 400; line-height: 1.8; color: var(--navy); }
.mvv { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.mvv-card { padding: 1.8rem; background: var(--bg); border-top: 3px solid var(--navy); }
.mvv-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: .8rem; }
.mvv-card p { font-size: 15px; font-weight: 300; line-height: 1.8; color: #556; }

/* ── AREAS ── */
.areas { background: var(--bg); }
.areas-header { max-width: 600px; margin-bottom: 3.5rem; }
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--silver-lt); }
.area-card { background: var(--white); padding: 2.2rem 1.8rem; transition: all .25s; cursor: default; position: relative; overflow: hidden; }
.area-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--navy); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.area-card:hover::before { transform: scaleX(1); }
.area-card:hover { background: var(--navy); transform: translateY(-4px); }
.area-card:hover .area-title { color: var(--white); }
.area-card:hover .area-list li { color: var(--silver-lt); }
.area-card:hover .area-icon { color: var(--silver); }
.area-icon { font-size: 24px; margin-bottom: 1rem; color: var(--navy); }
.area-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.area-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.area-list li { font-size: 14px; font-weight: 300; color: #667; padding-left: .8rem; position: relative; line-height: 1.7; }
.area-list li::before { content: '—'; position: absolute; left: 0; color: var(--silver); font-size: 10px; }

/* ── LOCALIZAÇÃO ── */
.locations { background: var(--white); }
.locations-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.locations-grid { display: grid; grid-template-columns: 1fr; max-width: 420px; gap: 2rem; }
.loc-card { padding: 2.5rem; border: 1px solid var(--silver-lt); position: relative; transition: all .25s; }
.loc-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,45,79,0.1); }
.loc-flag { font-size: 2.5rem; margin-bottom: 1.2rem; }
.loc-country { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.loc-addr { font-size: 15px; font-weight: 300; line-height: 1.8; color: #667; }
.loc-badge { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 8px; letter-spacing: 2px; padding: .25rem .6rem; background: var(--navy); color: var(--silver); text-transform: uppercase; }

/* ── CONTACT ── */
.contact { background: var(--navy); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3vw, 52px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.contact-sub { font-size: 17px; font-weight: 300; line-height: 1.9; color: var(--silver-lt); margin-bottom: 2.5rem; }
.contact-links { display: flex; flex-direction: column; gap: .8rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; font-size: 16px; font-weight: 300; color: var(--silver-lt); text-decoration: none; padding: .8rem 0; border-bottom: 1px solid rgba(138,155,184,0.1); transition: color .2s; }
.contact-link:hover { color: var(--white); }
.contact-link-icon { width: 32px; height: 32px; background: rgba(138,155,184,0.1); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.contact-form { background: rgba(44,66,112,0.4); border: 1px solid rgba(138,155,184,0.15); padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 10px; letter-spacing: 3px; color: var(--silver); text-transform: uppercase; margin-bottom: .5rem; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; background: rgba(27,45,79,0.6); border: 1px solid rgba(138,155,184,0.2); padding: .85rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--white); outline: none; transition: border-color .2s; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--silver); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--navy); }
.form-submit { width: 100%; background: var(--silver); color: var(--navy); padding: 1rem; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: all .25s; }
.form-submit:hover { background: var(--silver-lt); transform: translateY(-2px); }

/* ── WEBMAIL ── */
.webmail-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(138,155,184,0.12); border: 1px solid rgba(138,155,184,0.25); color: var(--silver); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: .55rem 1.1rem; text-decoration: none; font-family: 'DM Sans', sans-serif; transition: all .25s; cursor: pointer; white-space: nowrap; }
.webmail-btn:hover { background: var(--silver); color: var(--navy); }
.webmail-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── WHATSAPP FAB ── */
.wa-fab { position: fixed; bottom: 2rem; right: 2rem; z-index: 8000; filter: drop-shadow(0 4px 16px rgba(37,211,102,0.35)); animation: waPop .6s cubic-bezier(0.34,1.56,0.64,1) 1.5s both; }
@keyframes waPop { from { opacity: 0; transform: scale(0.5) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.wa-fab a { width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform .25s, box-shadow .25s; position: relative; }
.wa-fab a:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-fab a svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.82); color: #fff; font-size: 12px; white-space: nowrap; padding: .45rem 1rem; border-radius: 4px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.wa-tooltip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: rgba(0,0,0,0.82); }
.wa-fab a:hover .wa-tooltip { opacity: 1; }
.wa-fab a::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: waPulse 2.5s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .6; } 70% { transform: scale(1.35); opacity: 0; } 100% { opacity: 0; } }

/* ── FOOTER ── */
footer { background: #0d1826; padding: 2.5rem 4rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(138,155,184,0.1); flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: var(--silver); letter-spacing: 5px; }
.footer-copy { font-size: 11px; color: rgba(138,155,184,0.4); letter-spacing: 1px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 10px; letter-spacing: 2px; color: rgba(138,155,184,0.5); text-decoration: none; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--silver); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BLOG ── */
.blog-header { background: var(--navy); padding: 8rem 4rem 4rem; }
.blog-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 72px); font-weight: 300; color: var(--white); }
.blog-header p { font-size: 16px; color: var(--silver-lt); margin-top: 1rem; font-weight: 300; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; padding: 4rem; background: var(--bg); }
.blog-card { background: var(--white); border: 1px solid var(--silver-lt); transition: all .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,45,79,0.1); border-color: var(--navy); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--navy); }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat { font-size: 9px; letter-spacing: 3px; color: var(--silver); text-transform: uppercase; margin-bottom: .5rem; }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: .8rem; }
.blog-card-excerpt { font-size: 14px; font-weight: 300; line-height: 1.8; color: #667; margin-bottom: 1rem; }
.blog-card-meta { font-size: 11px; color: var(--silver); display: flex; gap: 1rem; }

/* ── SINGLE POST ── */
.post-header { background: var(--navy); padding: 8rem 4rem 4rem; }
.post-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 60px); font-weight: 300; color: var(--white); max-width: 800px; }
.post-content { max-width: 780px; margin: 0 auto; padding: 4rem; }
.post-content p { font-size: 17px; font-weight: 300; line-height: 2; color: #334; margin-bottom: 1.5rem; }
.post-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--navy); margin: 2.5rem 0 1rem; }
.post-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--navy); margin: 2rem 0 .8rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-content li { font-size: 17px; font-weight: 300; line-height: 2; color: #334; }
.post-content blockquote { border-left: 3px solid var(--navy); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--bg); }
.post-content blockquote p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--navy); }

/* ── WPCF7 FORM OVERRIDE ── */
.wpcf7 { color: var(--white); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 select { width: 100%; background: rgba(27,45,79,0.6); border: 1px solid rgba(138,155,184,0.2); padding: .85rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--white); outline: none; margin-bottom: 1rem; }
.wpcf7 input[type="submit"] { width: 100%; background: var(--silver); color: var(--navy); padding: 1rem; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: all .25s; }
.wpcf7 input[type="submit"]:hover { background: var(--silver-lt); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .hero, .about, .contact { grid-template-columns: 1fr; }
  .hero-right, .about-visual { display: none; }
  .hero-left, .about-content { padding: 6rem 1.5rem 3rem; }
  section { padding: 4rem 1.5rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .mvv { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}
