/*
Theme Name: Letícia Marques
Author: Letícia Marques Psicologia
Description: Site institucional da psicóloga Letícia Marques — estética editorial de outono.
Version: 4.1.0
*/

/* ========================================
   TOKENS
   ======================================== */
:root {
  /* Palette — autumn editorial */
  --ink: #2B1A10;
  --ink-soft: #43301F;
  --coffee: #6B3E1F;
  --caramel: #A9794E;
  --clay: #B87249;
  --rust: #C2562C;
  --honey: #D4A667;
  --cream: #F5ECE0;
  --cream-deep: #E8DDC9;
  --cream-soft: #FAF5ED;
  --paper: #FBF6EE;
  --moss: #7A7A4C;
  --sage: #9AA07A;
  --white: #FFFFFF;
  --line: rgba(43, 26, 16, 0.14);
  --line-soft: rgba(43, 26, 16, 0.08);
  --shadow-soft: 0 30px 60px -30px rgba(43, 26, 16, 0.25);
  --shadow-strong: 0 40px 80px -20px rgba(43, 26, 16, 0.35);

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --wrap-narrow: 920px;
  --wrap-wide: 1440px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "ss01", "ss02", "ss03";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease), opacity .3s var(--ease); }
a:hover { color: var(--rust); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); line-height: 1.02; letter-spacing: -0.03em; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.15; }
h4 { font-size: 1.15rem; line-height: 1.3; }

/* Heading inline markers — <i> = italic rust, <u> = underline swoosh */
h1 i, h1 em, h2 i, h2 em, h3 i, h3 em,
.hero h1 .serif-italic,
h2 em[style] /* override inline styles from legacy */ {
  font-style: italic;
  color: var(--rust);
  font-weight: 300;
  font-variation-settings: "SOFT" 100;
  text-decoration: none;
}
.pillars h2 i, .pillars h2 em,
.cta-band h2 i, .cta-band h2 em {
  color: var(--honey);
}
.contact-card h3 i, .contact-card h3 em {
  color: var(--honey);
}

h1 u, h2 u, h3 u {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
h1 u::after, h2 u::after, h3 u::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 6%;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'><path d='M2 9 C 50 2, 120 12, 180 5 S 280 2, 298 8' stroke='%23C2562C' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  z-index: -1;
  opacity: 0.6;
}

p { margin: 0 0 1.2em; }

::selection { background: var(--rust); color: var(--cream-soft); }

/* Paper grain overlay — site-wide */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.168 0 0 0 0 0.102 0 0 0 0 0.063 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 32px; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand .brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  transition: transform .4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-6deg); }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-top: 6px;
  font-weight: 500;
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text > span:first-child { line-height: 1; }
.brand-text em { font-style: italic; color: var(--rust); }

.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.98rem;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink);
  font-weight: 400;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--rust);
  transition: width .4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream-soft);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .3s var(--ease);
}
.nav-cta:hover {
  background: var(--rust);
  color: var(--cream-soft);
  transform: translateY(-1px);
}
.nav-cta svg { width: 16px; height: 16px; }

.mobile-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 8px; }
.mobile-toggle svg { width: 26px; height: 26px; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream-soft);
}
.btn-primary:hover {
  background: var(--rust);
  color: var(--cream-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(194, 86, 44, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream-soft);
}
.btn-whatsapp {
  background: var(--rust);
  color: var(--cream-soft);
}
.btn-whatsapp:hover {
  background: var(--coffee);
  color: var(--cream-soft);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rust);
  font-family: var(--font-body);
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rust);
  display: inline-block;
}

/* ========================================
   HERO — HOME
   ======================================== */
.hero {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -150px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at center, var(--honey) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  min-height: 620px;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 .serif-italic {
  font-style: italic;
  color: var(--rust);
  font-weight: 300;
}
.hero h1 .underline-swoosh {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-swoosh::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 6%;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'><path d='M2 9 C 50 2, 120 12, 180 5 S 280 2, 298 8' stroke='%23C2562C' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  z-index: -1;
  opacity: 0.6;
}
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta > div { flex: 1; min-width: 140px; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta span {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
}

/* Portrait card */
.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 580px;
  margin-left: auto;
  align-self: stretch;
}
.hero-portrait-frame {
  position: absolute;
  inset: 0;
  border-radius: 240px 240px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--cream-deep);
  transform: rotate(-1.5deg);
  z-index: 1;
}
.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Rich illustrated placeholder — autumn composition */
.hero-portrait-frame.placeholder {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(244, 187, 107, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 85%, rgba(194, 86, 44, 0.35) 0%, transparent 55%),
    linear-gradient(165deg, var(--caramel) 0%, var(--clay) 40%, var(--coffee) 80%, var(--ink) 100%);
}
.hero-portrait-frame.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 200' opacity='0.14'><path d='M60 10 Q 20 30, 25 80 Q 30 130, 60 160 Q 90 130, 95 80 Q 100 30, 60 10 Z' fill='%23FAF5ED'/><path d='M60 10 L 60 160' stroke='%23FAF5ED' stroke-width='1'/><path d='M60 50 Q 45 55, 40 70' stroke='%23FAF5ED' stroke-width='1' fill='none'/><path d='M60 70 Q 75 75, 80 90' stroke='%23FAF5ED' stroke-width='1' fill='none'/><path d='M60 100 Q 45 105, 40 120' stroke='%23FAF5ED' stroke-width='1' fill='none'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160' opacity='0.1'><g transform='rotate(-30 80 80)'><path d='M80 20 Q 40 60, 50 100 Q 70 130, 80 140 Q 90 130, 110 100 Q 120 60, 80 20 Z' fill='%23FAF5ED'/></g></svg>");
  background-repeat: no-repeat, no-repeat;
  background-position: 70% 75%, 15% 25%;
  background-size: 140px auto, 180px auto;
  mix-blend-mode: screen;
}
.hero-portrait-frame.placeholder::after {
  content: "LM";
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 7.5rem;
  letter-spacing: -0.04em;
  line-height: 0.8;
  font-weight: 300;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.hero-portrait-frame.placeholder .sig {
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  text-align: center;
  color: var(--cream-soft);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-portrait-frame.placeholder .sig-sub {
  position: absolute;
  left: 0;
  right: 0;
  top: 66%;
  text-align: center;
  color: var(--honey);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
}
.hero-portrait-frame.placeholder .crp-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  color: var(--cream-soft);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Floating decorative leaves around the portrait */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}
.leaf-deco.leaf-1 { top: -20px; right: -40px; width: 140px; transform: rotate(25deg); z-index: 3; }
.leaf-deco.leaf-2 { bottom: 60px; right: -50px; width: 110px; transform: rotate(-20deg); z-index: 3; }
.leaf-deco.leaf-3 { top: 40%; left: -70px; width: 95px; transform: rotate(45deg); z-index: 0; }
.leaf-deco.leaf-4 { top: -40px; left: 50px; width: 80px; transform: rotate(-40deg); z-index: 0; }

@keyframes sway {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50% { transform: rotate(calc(var(--rot, 0deg) + 4deg)) translateY(-6px); }
}
.leaf-deco.leaf-1 { --rot: 25deg; animation: sway 7s ease-in-out infinite; }
.leaf-deco.leaf-2 { --rot: -20deg; animation: sway 9s ease-in-out infinite; animation-delay: -2s; }
.leaf-deco.leaf-3 { --rot: 45deg; animation: sway 8s ease-in-out infinite; animation-delay: -4s; }
.leaf-deco.leaf-4 { --rot: -40deg; animation: sway 10s ease-in-out infinite; animation-delay: -1s; }
.portrait-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.2;
  padding: 20px;
  z-index: 4;
  box-shadow: var(--shadow-soft);
}
.portrait-badge::before {
  content: "✦";
  position: absolute;
  color: var(--honey);
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1;
}
.portrait-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spinBadge 30s linear infinite;
  transform-origin: center;
}
@keyframes spinBadge {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.portrait-tag {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  transform: rotate(3deg);
  z-index: 4;
}
.portrait-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1;
  margin-bottom: 4px;
}
.portrait-tag span { color: var(--caramel); font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* Ticker */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream-soft);
  padding: 22px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker-track {
  display: flex;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track span::before {
  content: "✦";
  color: var(--honey);
  font-style: normal;
  font-size: 1rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   SECTION HEADINGS
   ======================================== */
section { padding: 110px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .col-label .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 0; }
.section-head .col-copy p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 0;
}

/* ========================================
   SOBRE SECTION
   ======================================== */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--honey) 0%, transparent 65%);
  opacity: 0.25;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}
.about-image.placeholder {
  background: linear-gradient(150deg, var(--clay), var(--coffee));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
}
.about-image.placeholder::after { content: "LM"; }
.about-image .stamp {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 20px 24px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.3;
  box-shadow: var(--shadow-soft);
  max-width: 230px;
  transform: rotate(-2deg);
}
.about-image .stamp span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}

.about-text .eyebrow { margin-bottom: 24px; }
.about-text h2 { margin-bottom: 28px; }
.about-text .lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-weight: 300;
}
.about-text .lead em { color: var(--rust); font-style: italic; }
.about-text p { font-size: 1rem; }

.formation-list {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
}
.formation-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.96rem;
}
.formation-list li:last-child { border-bottom: 0; }
.formation-list .year {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rust);
  font-size: 1.1rem;
}
.formation-list strong { color: var(--ink); display: block; font-weight: 500; }
.formation-list span { color: var(--caramel); font-size: 0.84rem; }

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--paper);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-soft);
}
.service-card {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:last-child { border-right: 0; }
.service-card:hover {
  background: var(--cream);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.service-card:hover .service-icon {
  transform: rotate(-8deg);
  background: var(--rust);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 {
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.92rem;
}
.service-card li {
  padding: 6px 0;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
}
.service-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  margin-top: 10px;
  flex-shrink: 0;
}
.service-card .num {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--caramel);
  letter-spacing: 0.1em;
}

/* ========================================
   PILLARS (neurodivergências quotes)
   ======================================== */
.pillars {
  background: var(--ink);
  color: var(--cream-soft);
  overflow: hidden;
  position: relative;
}
.pillars::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--rust) 0%, transparent 65%);
  opacity: 0.25;
}
.pillars h2 { color: var(--cream-soft); }
.pillars .eyebrow { color: var(--honey); }
.pillars .eyebrow::before { background: var(--honey); }
.pillars .section-head .col-copy p { color: rgba(245, 236, 224, 0.8); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 20px;
  border: 1px solid rgba(245, 236, 224, 0.12);
  background: rgba(245, 236, 224, 0.12);
}
.pillar {
  background: var(--ink);
  padding: 44px 32px;
  position: relative;
  transition: background .4s var(--ease);
}
.pillar:hover { background: rgba(194, 86, 44, 0.1); }
.pillar .label {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-style: italic;
  color: var(--honey);
  line-height: 1;
  margin-bottom: 32px;
  font-weight: 300;
}
.pillar h4 {
  color: var(--cream-soft);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.pillar p {
  font-size: 0.95rem;
  color: rgba(245, 236, 224, 0.72);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   APPROACH — method section
   ======================================== */
.approach { background: var(--cream-soft); }
.approach-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.approach-quote {
  position: sticky;
  top: 120px;
  padding: 50px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--line);
  position: relative;
}
.approach-quote::before {
  content: "“";
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--rust);
  line-height: 1;
}
.approach-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 300;
}
.approach-quote footer {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
}
.approach-steps { display: flex; flex-direction: column; gap: 4px; }
.step {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.step:first-child { padding-top: 0; }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--rust);
  line-height: 1;
}
.step h4 { margin-bottom: 8px; font-size: 1.2rem; }
.step p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-band {
  background: var(--clay);
  color: var(--cream-soft);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='%23FAF5ED' opacity='0.12'/></svg>");
}
.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: var(--cream-soft);
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  max-width: 18ch;
  letter-spacing: -0.02em;
}
.cta-band h2 em,
.cta-band h2 i { color: var(--honey); font-style: italic; font-weight: 300; }
.cta-band p {
  color: rgba(245, 236, 224, 0.88);
  margin: 18px 0 0;
  font-size: 1.02rem;
  max-width: 480px;
  line-height: 1.6;
}

/* Actions — primary button stands out, secondary reads as a link */
.cta-band .actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.cta-band .actions .btn-primary {
  background: var(--cream-soft);
  color: var(--ink);
  padding: 20px 34px;
  font-size: 1.02rem;
  font-weight: 500;
  box-shadow: 0 18px 40px -18px rgba(43, 26, 16, 0.55);
  white-space: nowrap;
}
.cta-band .actions .btn-primary:hover {
  background: var(--ink);
  color: var(--cream-soft);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px -16px rgba(43, 26, 16, 0.7);
}
/* Secondary reads as an inline link with arrow, not a button */
.cta-band .actions .btn-ghost {
  background: transparent;
  border: 0;
  color: var(--cream-soft);
  padding: 4px 0;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
  border-radius: 0;
  border-bottom: 1px solid rgba(245, 236, 224, 0.35);
  gap: 6px;
}
.cta-band .actions .btn-ghost::after {
  content: "→";
  transition: transform .3s var(--ease);
  display: inline-block;
}
.cta-band .actions .btn-ghost:hover {
  background: transparent;
  color: var(--honey);
  border-color: var(--honey);
  opacity: 1;
  transform: none;
}
.cta-band .actions .btn-ghost:hover::after { transform: translateX(4px); }

/* ========================================
   BLOG LATEST (home preview)
   ======================================== */
.latest { background: var(--paper); }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.post-card {
  background: var(--cream-soft);
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.post-cover {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--caramel), var(--coffee));
  position: relative;
  overflow: hidden;
}
.post-cover.cover-a { background: linear-gradient(135deg, var(--honey), var(--rust)); }
.post-cover.cover-b { background: linear-gradient(135deg, var(--sage), var(--moss)); }
.post-cover.cover-c { background: linear-gradient(135deg, var(--clay), var(--ink)); }
.post-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 20 Q 10 10, 20 20 T 40 20' stroke='%23FAF5ED' stroke-width='1' fill='none' opacity='0.3'/></svg>");
}
.post-cover .cat {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: var(--cream-soft);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
}
.post-content { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.post-date {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
}
.post-card h3 { margin: 0; font-size: 1.4rem; line-height: 1.2; }
.post-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.post-card .read-more {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rust);
  font-size: 1.05rem;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}
.post-card .read-more::after {
  content: "→";
  transition: transform .3s var(--ease);
}
.post-card:hover .read-more::after { transform: translateX(4px); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.testimonial {
  background: var(--cream-soft);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--rust);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 30px;
  opacity: 0.3;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 300;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel), var(--coffee));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial footer strong { display: block; color: var(--ink); font-weight: 500; }
.testimonial footer span { color: var(--caramel); font-size: 0.82rem; }

/* ========================================
   PAGE HEAD (non-home pages)
   ======================================== */
.page-head {
  padding: 90px 0 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--honey) 0%, transparent 70%);
  opacity: 0.3;
}
.page-head .eyebrow { margin-bottom: 20px; }
.page-head h1 { margin: 0 0 20px; max-width: 16ch; }
.page-head h1 em { font-style: italic; color: var(--rust); font-weight: 300; }
.page-head p {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ========================================
   CONTATO
   ======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-card {
  background: var(--ink);
  color: var(--cream-soft);
  padding: 48px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--rust) 0%, transparent 65%);
  opacity: 0.35;
}
.contact-card h3 {
  color: var(--cream-soft);
  font-size: 1.8rem;
  margin-bottom: 12px;
  position: relative;
}
.contact-card p {
  color: rgba(245, 236, 224, 0.8);
  position: relative;
  margin-bottom: 32px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 236, 224, 0.15);
}
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 236, 224, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s var(--ease);
}
.contact-list li:hover .ico { background: var(--rust); }
.contact-list .ico svg { width: 18px; height: 18px; color: var(--cream-soft); }
.contact-list small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 2px;
}
.contact-list a, .contact-list span.txt {
  color: var(--cream-soft);
  font-size: 1.02rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.social-row { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 236, 224, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-soft);
  transition: all .3s var(--ease);
}
.social-row a:hover {
  background: var(--rust);
  transform: translateY(-2px);
  color: var(--cream-soft);
}
.social-row svg { width: 18px; height: 18px; }

.contact-form-wrap {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 44px;
  border-radius: 16px;
}
.contact-form-wrap h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}
.contact-form-wrap > p {
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; font-family: var(--font-body); }
.form-footnote {
  font-size: 0.82rem;
  color: var(--caramel);
  margin-top: 12px;
}

/* FAQ */
.faq-list {
  max-width: 840px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  list-style: none;
  transition: color .3s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--rust);
  transition: transform .3s var(--ease);
  line-height: 0.8;
  flex-shrink: 0;
}
.faq-item[open] .faq-q { color: var(--rust); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  color: var(--ink-soft);
  padding: 16px 50px 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

/* ========================================
   BLOG LISTING
   ======================================== */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--cream);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 80px;
}
.featured-cover {
  aspect-ratio: 5/4;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--honey), var(--rust));
  position: relative;
  overflow: hidden;
}
.featured-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 20 Q 140 60, 180 100 Q 140 140, 100 180 Q 60 140, 20 100 Q 60 60, 100 20' stroke='%23FAF5ED' stroke-width='1' fill='none' opacity='0.4'/><circle cx='100' cy='100' r='40' stroke='%23FAF5ED' stroke-width='1' fill='none' opacity='0.3'/></svg>") center / 80% no-repeat;
}
.featured-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 20px;
}
.featured-meta .tag {
  padding: 4px 12px;
  background: var(--rust);
  color: var(--cream-soft);
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.featured-post h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 20px; }
.featured-post p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 28px; }

.blog-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.blog-filter button, .blog-filter a {
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .3s var(--ease);
}
.blog-filter .active, .blog-filter button:hover, .blog-filter a:hover {
  background: var(--ink);
  color: var(--cream-soft);
  border-color: var(--ink);
}

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

/* ========================================
   SINGLE POST
   ======================================== */
.article-head {
  padding: 90px 0 40px;
  background: var(--cream);
  text-align: center;
  position: relative;
}
.article-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='300' viewBox='0 0 600 300'><path d='M50 150 Q 150 50, 300 150 T 550 150' stroke='%23C2562C' stroke-width='1' fill='none' opacity='0.1'/></svg>") center / contain no-repeat;
}
.article-head .meta {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 16px;
}
.article-head .meta .tag {
  padding: 4px 12px;
  background: var(--rust);
  color: var(--cream-soft);
  border-radius: 999px;
  letter-spacing: 0.1em;
  margin-right: 10px;
}
.article-head h1 { max-width: 900px; margin: 0 auto 20px; }
.article-head h1 em { color: var(--rust); font-style: italic; font-weight: 300; }
.article-head .author {
  margin-top: 32px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.92rem;
}
.article-head .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel), var(--coffee));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-style: italic;
}

.article-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 40px;
}
.article-hero-img {
  aspect-ratio: 16/8;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--honey), var(--clay), var(--coffee));
  position: relative;
  overflow: hidden;
}
.article-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'><path d='M 0 300 Q 200 200, 400 250 T 800 200' stroke='%23FAF5ED' stroke-width='1.5' fill='none' opacity='0.35'/><path d='M 0 320 Q 200 220, 400 270 T 800 220' stroke='%23FAF5ED' stroke-width='1' fill='none' opacity='0.25'/></svg>") center / cover no-repeat;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 100px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--rust);
  font-weight: 400;
}
.article-body p { margin: 0 0 1.6em; }
.article-body h2 {
  font-size: 2rem;
  margin: 2em 0 0.6em;
  color: var(--ink);
}
.article-body h3 {
  font-size: 1.4rem;
  margin: 1.6em 0 0.6em;
  color: var(--ink);
}
.article-body blockquote {
  margin: 2.2em -40px;
  padding: 30px 40px;
  border-left: 4px solid var(--rust);
  background: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
  border-radius: 0 12px 12px 0;
}
.article-body ul, .article-body ol {
  padding-left: 1.2em;
  margin: 0 0 1.6em;
}
.article-body li { margin-bottom: 0.5em; }
.article-body a { color: var(--rust); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.article-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.article-share { display: flex; gap: 10px; align-items: center; font-size: 0.84rem; color: var(--caramel); letter-spacing: 0.18em; text-transform: uppercase; }
.article-share-btns { display: flex; gap: 8px; }
.article-share-btns a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.article-share-btns a:hover { background: var(--ink); color: var(--cream-soft); }
.article-share-btns svg { width: 16px; height: 16px; }

.next-article {
  background: var(--cream);
  padding: 60px 0 100px;
  border-top: 1px solid var(--line);
}
.next-article-inner {
  text-align: center;
}
.next-article small {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  display: block;
  margin-bottom: 14px;
}
.next-article h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 700px;
  margin: 0 auto 20px;
}

/* ========================================
   PRIVACIDADE
   ======================================== */
.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.policy-toc {
  position: sticky;
  top: 110px;
  font-size: 0.94rem;
}
.policy-toc h4 {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 500;
}
.policy-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.policy-toc a {
  display: block;
  padding: 6px 0;
  color: var(--ink-soft);
  border-left: 2px solid var(--line);
  padding-left: 14px;
  transition: all .3s var(--ease);
}
.policy-toc a:hover { color: var(--ink); border-color: var(--rust); }

.policy-body { font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); }
.policy-body h2 {
  font-size: 1.6rem;
  color: var(--ink);
  margin: 2em 0 0.6em;
  padding-top: 24px;
}
.policy-body h2:first-of-type { margin-top: 0; padding-top: 0; }
.policy-body h3 { font-size: 1.2rem; margin: 1.4em 0 0.4em; color: var(--ink); }
.policy-body ul { padding-left: 1.2em; margin: 0 0 1.4em; }
.policy-body .last-update {
  padding: 14px 20px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 40px;
  color: var(--caramel);
  letter-spacing: 0.06em;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--ink);
  color: var(--cream-soft);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='%23FAF5ED' opacity='0.08'/></svg>");
  pointer-events: none;
}
.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245, 236, 224, 0.12);
}
.footer-brand h3 {
  color: var(--cream-soft);
  font-size: 2.2rem;
  margin: 0 0 8px;
}
.footer-brand h3 em { color: var(--honey); font-style: italic; font-weight: 300; }
.footer-brand small {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.94rem;
  color: rgba(245, 236, 224, 0.7);
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(245, 236, 224, 0.78);
  font-size: 0.96rem;
}
.footer-col a:hover { color: var(--honey); }
.footer-col address {
  font-style: normal;
  color: rgba(245, 236, 224, 0.78);
  font-size: 0.96rem;
  line-height: 1.8;
}
.footer-col .whats-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--rust);
  color: var(--cream-soft);
  border-radius: 999px;
  font-size: 0.88rem;
  margin-top: 14px;
  transition: all .3s var(--ease);
}
.footer-col .whats-footer:hover { background: var(--cream-soft); color: var(--ink); }
.footer-col .whats-footer svg { width: 16px; height: 16px; }

.footer-bottom {
  position: relative;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(245, 236, 224, 0.55);
}
.footer-bottom a { color: rgba(245, 236, 224, 0.78); }
.footer-bottom a:hover { color: var(--honey); }
.footer-signature { font-family: var(--font-display); font-style: italic; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 236, 224, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.footer-socials a:hover { background: var(--rust); }
.footer-socials svg { width: 14px; height: 14px; }

/* Floating WhatsApp */
.whats-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform .3s var(--ease);
}
.whats-float:hover { transform: scale(1.08); color: #fff; }
.whats-float svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ========================================
   REVEAL ON SCROLL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; min-height: auto; }
  .hero-portrait { max-width: 440px; margin: 0 auto; min-height: 540px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-wrap { grid-template-columns: 1fr; }
  .approach-quote { position: static; }
  .posts-grid, .blog-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; padding: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band .actions { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .policy-layout { grid-template-columns: 1fr; gap: 40px; }
  .policy-toc { position: static; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 22px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--paper); padding: 24px 22px; border-bottom: 1px solid var(--line); gap: 16px; }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .hero { padding: 50px 0 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-meta { gap: 20px; }
  .hero-meta strong { font-size: 1.5rem; }
  .hero-portrait { min-height: 440px; max-width: 340px; }
  .hero-portrait-frame.placeholder::after { font-size: 5rem; }
  .leaf-deco.leaf-1 { width: 90px; right: -20px; top: -10px; }
  .leaf-deco.leaf-2 { width: 70px; right: -20px; bottom: 40px; }
  .leaf-deco.leaf-3 { width: 60px; left: -20px; }
  .leaf-deco.leaf-4 { display: none; }
  .portrait-badge { width: 100px; height: 100px; left: -16px; bottom: -16px; font-size: 0.85rem; }
  .form-row { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .posts-grid, .blog-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 0; }
  .cta-band .actions .btn-primary { width: 100%; justify-content: center; padding: 18px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .article-body blockquote { margin: 2em 0; padding: 24px 26px; font-size: 1.25rem; }
  .whats-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .contact-card, .contact-form-wrap { padding: 30px; }
}
