/* ============================================================
   RESGATA BRASIL — Editorial Financial Education Portal
   Design System & Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ---- Variables ---- */
:root {
  --ink:       #1a1a2e;
  --ink-soft:  #2e2e4a;
  --ink-muted: #5a5a78;
  --paper:     #f5f3ee;
  --paper-warm:#ede9e0;
  --paper-mid: #e4dfd5;
  --accent:    #1d6a4a;
  --accent-lt: #2a8b60;
  --accent-xlt:#e8f4ef;
  --gold:      #b8860b;
  --gold-lt:   #f5e6a3;
  --rust:      #8b3a2a;
  --warn-bg:   #fef9ec;
  --warn-border:#d4a017;
  --info-bg:   #eef6f2;
  --info-border:#1d6a4a;
  --rule:      #d4cec4;
  --shadow:    0 2px 16px rgba(26,26,46,.08);
  --shadow-lg: 0 8px 40px rgba(26,26,46,.14);
  --radius:    6px;
  --radius-lg: 12px;
  --serif:     'Playfair Display', Georgia, serif;
  --body-serif:'Source Serif 4', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --max-w:     1160px;
  --content-w: 760px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body-serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent-lt); }
ul, ol { padding-left: 1.5rem; }

/* ---- Skip link ---- */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: #fff; padding: .5rem 1rem; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.logo-main span { color: #7ec8a4; }
.logo-tagline {
  font-family: var(--sans);
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  font-family: var(--sans);
  font-size: .83rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: .4rem .75rem;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: var(--radius);
  padding: .4rem .65rem;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ============================================================
   EDITORIAL STRIPE (top ribbon)
   ============================================================ */
.editorial-stripe {
  background: var(--accent);
  color: rgba(255,255,255,.9);
  font-family: var(--sans);
  font-size: .73rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-align: center;
  padding: .4rem 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(29,106,74,.35) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(184,134,11,.15) 0%, transparent 50%);
  padding: 5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-kicker {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7ec8a4;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: #c8e6d8; }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--sans);
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.hero-meta-item { display: flex; align-items: center; gap: .4rem; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,106,74,.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-img-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #1a3a2a 0%, #0d2a1f 50%, #1a1a2e 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-img-placeholder .icon-shield {
  font-size: 4rem;
  opacity: .4;
}
.hero-img-placeholder p {
  color: rgba(255,255,255,.3);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .05em;
}

/* ============================================================
   DISCLAIMER BOX (mandatory warning)
   ============================================================ */
.disclaimer-box {
  background: var(--warn-bg);
  border: 1.5px solid var(--warn-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.disclaimer-box .disc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--gold);
}
.disclaimer-box .disc-content { flex: 1; }
.disclaimer-box strong {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  display: block;
  margin-bottom: .35rem;
}
.disclaimer-box p {
  font-family: var(--sans);
  font-size: .88rem;
  color: #4a3a10;
  line-height: 1.6;
  margin: 0;
}

.info-box {
  background: var(--info-bg);
  border-left: 4px solid var(--info-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.info-box strong { color: var(--accent); }

/* ============================================================
   MAIN CONTENT LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  padding: 3.5rem 0;
}
.main-content { min-width: 0; }
.sidebar { min-width: 0; }

/* ============================================================
   ARTICLE TYPOGRAPHY
   ============================================================ */
.article-section { margin-bottom: 3rem; }
.article-section h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: .85rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--rule);
}
.article-section h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 1.75rem 0 .65rem;
}
.article-section p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}
.article-section p:last-child { margin-bottom: 0; }

.pull-quote {
  border-left: 3px solid var(--accent);
  padding: .75rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  background: var(--paper-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

/* ============================================================
   ILLUSTRATION BLOCKS (image placeholders with context)
   ============================================================ */
.article-img {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.article-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  border-radius: var(--radius-lg);
  font-family: var(--sans);
}
.img-placeholder.security   { background: linear-gradient(135deg, #0d2a1f 0%, #1a3a4a 100%); }
.img-placeholder.finance    { background: linear-gradient(135deg, #1a2a3a 0%, #2a3a1a 100%); }
.img-placeholder.people     { background: linear-gradient(135deg, #2a1a3a 0%, #1a2a3a 100%); }
.img-placeholder .ph-icon   { font-size: 2.5rem; opacity: .5; }
.img-placeholder .ph-label  { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .4; color: #fff; }
.img-caption {
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--ink-muted);
  margin-top: .5rem;
  font-style: italic;
  padding: 0 .25rem;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.sidebar-widget h3 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--rule);
}
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.sidebar-widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-widget ul li a { color: var(--accent); text-decoration: none; }
.sidebar-widget ul li a:hover { text-decoration: underline; }

.widget-disclaimer {
  background: #fff;
  border: 1.5px solid var(--warn-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
}
.widget-disclaimer h3 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.widget-disclaimer p {
  font-family: var(--sans);
  font-size: .83rem;
  color: #5a4a10;
  line-height: 1.6;
}
.widget-disclaimer ul { padding-left: 1.25rem; margin-top: .5rem; }
.widget-disclaimer ul li {
  font-family: var(--sans);
  font-size: .82rem;
  color: #5a4a10;
  line-height: 1.55;
  margin-bottom: .3rem;
}

/* ============================================================
   CARDS GRID (section previews)
   ============================================================ */
.cards-section { padding: 3rem 0; }
.section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.section-header .see-all {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.section-header .see-all:hover { border-color: var(--accent); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card-img {
  height: 160px;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.card-img-placeholder.green { background: linear-gradient(135deg, #0d2a1f 0%, #1a4a3a 100%); }
.card-img-placeholder.blue  { background: linear-gradient(135deg, #0d1a2a 0%, #1a2a4a 100%); }
.card-img-placeholder.warm  { background: linear-gradient(135deg, #2a1a0d 0%, #4a2a1a 100%); }
.card-body {
  padding: 1.25rem 1.3rem 1.4rem;
}
.card-tag {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: .6rem;
}
.card-title a { text-decoration: none; color: inherit; }
.card-title a:hover { color: var(--accent); }
.card-excerpt {
  font-family: var(--sans);
  font-size: .83rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ============================================================
   FEATURED STRIP
   ============================================================ */
.featured-strip {
  background: var(--accent);
  padding: 2.5rem 1.5rem;
  margin: 0;
}
.featured-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  opacity: .85;
}
.feature-text h4 {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .3rem;
}
.feature-text p {
  font-family: var(--sans);
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

/* ============================================================
   PAGE HERO (internal pages)
   ============================================================ */
.page-hero {
  background: var(--ink);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(29,106,74,.25) 0%, transparent 60%);
  padding: 3.5rem 1.5rem;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero .breadcrumb {
  font-family: var(--sans);
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #7ec8a4; }
.page-hero .breadcrumb span { margin: 0 .4rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 640px;
  font-weight: 300;
}

/* ============================================================
   INNER PAGE LAYOUT
   ============================================================ */
.inner-content {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.inner-content h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 .75rem;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: .5rem;
}
.inner-content h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.75rem 0 .5rem;
  color: var(--ink-soft);
}
.inner-content p { margin-bottom: 1.2rem; color: var(--ink-soft); }
.inner-content ul, .inner-content ol {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
}
.inner-content li { margin-bottom: .4rem; }
.inner-content a { color: var(--accent); }
.last-updated {
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  display: block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact-info p { font-family: var(--sans); font-size: .92rem; color: var(--ink-soft); margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .cd-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail .cd-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-muted);
  margin-bottom: .2rem;
}
.contact-detail .cd-value {
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.editorial-note {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.editorial-note h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: .75rem;
}
.editorial-note p {
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: .9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f0f1e;
  color: rgba(255,255,255,.65);
  padding: 4rem 1.5rem 0;
  margin-top: 4rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-main { font-size: 1.25rem; display: block; margin-bottom: .5rem; }
.footer-brand p {
  font-family: var(--sans);
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-top: .75rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-family: var(--sans);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #7ec8a4; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-disclaimer p {
  font-family: var(--sans);
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  line-height: 1.65;
  margin-bottom: .5rem;
}
.footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 1rem 1.5rem;
  margin-top: 0;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: var(--sans);
  font-size: .73rem;
  color: rgba(255,255,255,.25);
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  font-size: .73rem;
  font-family: var(--sans);
}
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  gap: 1rem;
  align-items: flex-start;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p {
  font-family: var(--sans);
  font-size: .83rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.cookie-banner p a { color: #7ec8a4; }
.btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .6rem 1.1rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.btn-accept:hover { background: var(--accent-lt); }

/* ============================================================
   ABOUT PAGE SPECIAL
   ============================================================ */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.value-card {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--rule);
}
.value-card .vc-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.value-card h4 {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.value-card p {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}
.team-note {
  background: var(--accent-xlt);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--accent);
}
.team-note p {
  font-family: var(--body-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-img-wrap { display: none; }
  .featured-strip-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sidebar { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--ink);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    gap: .25rem;
    z-index: 99;
  }
  .site-nav.open a { padding: .7rem .75rem; }
}
@media (max-width: 480px) {
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .content-grid { padding: 2rem 0; }
  .inner-content { padding: 2rem 1rem 3rem; }
}
