@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage: #5b7c6a;
  --sage-light: #86a392;
  --sage-pale: #d4e2da;
  --cream: #FAF7F0;
  --cream-dark: #f0ebe0;
  --clay: #c1735a;
  --clay-dark: #b45f4d;
  --ink: #2c2c2c;
  --ink-soft: #4a4a4a;
  --ink-muted: #6e6e6e;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(91,124,106,0.10);
  --shadow-md: 0 4px 18px rgba(91,124,106,0.14);
  --shadow-lg: 0 8px 32px rgba(91,124,106,0.18);
  --transition: 200ms ease;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clay);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--sage-light);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-clay {
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-clay:hover {
  background: var(--clay-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 40px;
}

.tip-strip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--sage-pale);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-block: 20px;
}

.tip-strip svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sage);
}

.tip-strip p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sage);
  line-height: 1;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--ink-muted);
  font-weight: 400;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--sage-pale);
  color: var(--sage);
}

.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--sage-pale);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--cream-dark);
  background: var(--white);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--sage-pale);
  color: var(--sage);
}

.mobile-nav .btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.breadcrumb-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(91,124,106,0.15);
  padding-block: 10px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--ink-muted);
}

.breadcrumb-list a {
  color: var(--sage);
  font-weight: 500;
}

.breadcrumb-list a:hover {
  color: var(--clay);
}

.breadcrumb-sep {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.breadcrumb-current {
  color: var(--ink-soft);
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-desk-finansial.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,75,60,0.82) 0%, rgba(91,124,106,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 80px 72px;
  max-width: 660px;
}

.hero-tag {
  display: inline-block;
  background: rgba(250,247,240,0.2);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(250,247,240,0.3);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(250,247,240,0.92);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn-primary {
  background: var(--clay);
  box-shadow: 0 4px 16px rgba(193,115,90,0.35);
}

.hero-actions .btn-primary:hover {
  background: var(--clay-dark);
}

.hero-actions .btn-secondary {
  color: var(--white);
  border-color: rgba(250,247,240,0.6);
}

.hero-actions .btn-secondary:hover {
  background: rgba(250,247,240,0.15);
  color: var(--white);
  border-color: var(--white);
}

.section {
  padding-block: 72px;
}

.section-alt {
  background: var(--cream-dark);
}

.section-sage {
  background: var(--sage-pale);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--sage-pale);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-block: 24px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}

.check-item p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.check-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}

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

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition), transform var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.mission-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 18px;
}

.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--sage-pale);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.article-card:hover .card-img img {
  transform: scale(1.04);
}

.card-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.card-date {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.card-excerpt {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  margin-top: 6px;
  transition: gap var(--transition), color var(--transition);
}

.card-cta:hover {
  gap: 10px;
  color: var(--clay);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}

.advantage-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.advantage-text p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.risk-section {
  background: var(--cream-dark);
}

.risk-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--clay);
}

.risk-icon {
  color: var(--clay);
  flex-shrink: 0;
  margin-top: 2px;
}

.risk-text h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.risk-text p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.newsletter-section {
  background: var(--sage);
  color: var(--white);
}

.newsletter-inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.newsletter-inner .section-title {
  color: var(--white);
}

.newsletter-inner .section-lead {
  color: rgba(250,247,240,0.88);
  margin-inline: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-top: 32px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(250,247,240,0.92);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(250,247,240,0.3);
  border-radius: var(--radius-md);
  background: rgba(250,247,240,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  min-height: 48px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(250,247,240,0.5);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(250,247,240,0.7);
  background: rgba(250,247,240,0.18);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(250,247,240,0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(250,247,240,0.25);
}

.consent-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--clay);
  cursor: pointer;
}

.consent-row label {
  font-size: 0.83rem;
  color: rgba(250,247,240,0.85);
  line-height: 1.5;
}

.consent-row a {
  color: var(--cream);
  text-decoration: underline;
}

.newsletter-section .btn-submit {
  background: var(--clay);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 48px;
  transition: background var(--transition), transform var(--transition);
}

.newsletter-section .btn-submit:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
}

.closing-cta {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
}

.closing-cta-inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.closing-cta .section-title {
  color: var(--white);
}

.closing-cta .section-lead {
  color: rgba(250,247,240,0.88);
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

.cta-actions .btn-primary {
  background: var(--clay);
  box-shadow: 0 4px 16px rgba(193,115,90,0.35);
}

.cta-actions .btn-secondary {
  color: var(--white);
  border-color: rgba(250,247,240,0.6);
}

.cta-actions .btn-secondary:hover {
  background: rgba(250,247,240,0.18);
  color: var(--white);
  border-color: var(--white);
}

.site-footer {
  background: var(--ink);
  color: rgba(250,247,240,0.8);
  padding-top: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(250,247,240,0.1);
}

.footer-brand .logo-name {
  color: var(--sage-light);
  font-size: 1.3rem;
}

.footer-brand .logo-sub {
  color: rgba(250,247,240,0.5);
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.6;
  margin-top: 12px;
  color: rgba(250,247,240,0.65);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.87rem;
  margin-top: 20px;
}

.footer-contact a {
  color: rgba(250,247,240,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact a:hover {
  color: var(--sage-light);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--sage-light);
}

.footer-newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nl-form input {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(250,247,240,0.18);
  background: rgba(250,247,240,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-height: 44px;
  transition: border-color var(--transition);
}

.footer-nl-form input::placeholder {
  color: rgba(250,247,240,0.4);
}

.footer-nl-form input:focus {
  outline: none;
  border-color: var(--sage-light);
}

.footer-nl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(250,247,240,0.6);
  line-height: 1.5;
}

.footer-nl-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clay);
  cursor: pointer;
}

.footer-nl-consent a {
  color: var(--sage-light);
  text-decoration: underline;
}

.footer-nl-form button {
  padding: 11px 18px;
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 44px;
  transition: background var(--transition);
}

.footer-nl-form button:hover {
  background: var(--sage-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 20px;
  font-size: 0.8rem;
  color: rgba(250,247,240,0.45);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.footer-links a {
  color: rgba(250,247,240,0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--sage-light);
}

.footer-cookie-btn {
  color: rgba(250,247,240,0.55);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
}

.footer-cookie-btn:hover {
  color: var(--sage-light);
}

.page-main {
  min-height: 60vh;
  padding-block: 60px;
}

.page-header {
  background: var(--sage-pale);
  padding-block: 48px;
  text-align: center;
  border-bottom: 1px solid rgba(91,124,106,0.2);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-inline: auto;
}

.prose {
  max-width: 740px;
  margin-inline: auto;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 16px;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 12px;
}

.prose p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}

.prose ul, .prose ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 8px;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose a {
  color: var(--sage);
  text-decoration: underline;
}

.prose a:hover {
  color: var(--clay);
}

.list-page .article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.list-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition), transform var(--transition);
}

.list-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.list-card-img {
  width: 220px;
  flex-shrink: 0;
  background: var(--sage-pale);
  overflow: hidden;
}

.list-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-card-body {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.list-card-body .card-excerpt {
  font-size: 0.92rem;
}

.article-page {
  max-width: 780px;
  margin-inline: auto;
  padding-top: 48px;
  padding-bottom: 72px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  font-size: 0.83rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.article-meta strong {
  color: var(--sage);
  font-weight: 600;
}

.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  background: var(--sage-pale);
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sage-pale);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sage);
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-body p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 18px;
}

.article-body ul, .article-body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--ink);
  font-weight: 600;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 2px solid var(--sage-pale);
}

.article-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: var(--sage-pale);
  transition: background var(--transition), color var(--transition);
  max-width: 46%;
  flex-wrap: wrap;
}

.article-nav a:hover {
  background: var(--sage);
  color: var(--white);
}

.article-nav a.back-list {
  margin-inline: auto;
  max-width: 100%;
}

.contact-page .faq-section {
  margin-bottom: 52px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}

.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  gap: 12px;
  min-height: 56px;
  transition: background var(--transition);
}

.faq-btn:hover {
  background: var(--sage-pale);
}

.faq-chevron {
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.faq-btn[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  display: none;
}

.faq-answer.open {
  display: block;
}

.contact-form-section {
  margin-bottom: 52px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  max-width: 640px;
}

.contact-form .form-field label {
  color: var(--ink-soft);
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  border-color: var(--cream-dark);
  background: var(--cream);
  color: var(--ink);
  border: 1.5px solid rgba(91,124,106,0.25);
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
  color: var(--ink-muted);
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}

.contact-form .consent-row {
  background: var(--sage-pale);
  border-color: rgba(91,124,106,0.2);
}

.contact-form .consent-row label {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.contact-form .consent-row a {
  color: var(--sage);
}

.contact-form .btn-submit {
  min-height: 48px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--sage);
  text-decoration: underline;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
  background: var(--sage-pale);
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--sage);
  margin-top: 12px;
  text-decoration: underline;
}

.map-link:hover {
  color: var(--clay);
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 14px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
  display: none;
}

.cookie-bar.visible {
  display: block;
}

.cookie-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1120px;
  margin-inline: auto;
}

.cookie-bar-text {
  font-size: 0.87rem;
  line-height: 1.5;
  color: rgba(250,247,240,0.85);
  flex: 1;
  min-width: 200px;
}

.cookie-bar-text a {
  color: var(--sage-light);
  text-decoration: underline;
}

.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 9px 18px;
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 44px;
  transition: background var(--transition);
}

.cookie-btn-accept:hover {
  background: var(--sage-light);
}

.cookie-btn-reject {
  padding: 9px 18px;
  background: transparent;
  color: rgba(250,247,240,0.75);
  border: 1px solid rgba(250,247,240,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 44px;
  transition: background var(--transition), color var(--transition);
}

.cookie-btn-reject:hover {
  background: rgba(250,247,240,0.1);
  color: var(--white);
}

.cookie-btn-manage {
  padding: 9px 18px;
  background: transparent;
  color: rgba(250,247,240,0.6);
  border: 1px solid rgba(250,247,240,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 44px;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.cookie-btn-manage:hover {
  background: rgba(250,247,240,0.08);
  color: var(--white);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.cookie-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-md) var(--radius-md);
  padding: 32px 28px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  max-height: 85vh;
  overflow-y: auto;
}

.cookie-modal-panel h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.cookie-modal-panel p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--cream-dark);
}

.cookie-category-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.cookie-category-info p {
  font-size: 0.83rem;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 99px;
  cursor: pointer;
  transition: background 200ms;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 200ms;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.cookie-toggle input:checked + .toggle-slider {
  background: var(--sage);
}

.cookie-toggle input:checked + .toggle-slider::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-always-on {
  font-size: 0.78rem;
  color: var(--sage);
  font-weight: 600;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.cookie-modal-actions button {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 48px;
  transition: background var(--transition), color var(--transition);
}

.btn-save-prefs {
  background: var(--sage);
  color: var(--white);
}

.btn-save-prefs:hover {
  background: var(--sage-light);
}

.btn-accept-all {
  background: var(--clay);
  color: var(--white);
}

.btn-accept-all:hover {
  background: var(--clay-dark);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,0.4);
}

.modal-overlay[hidden] {
  display: none;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.modal-box h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 16px;
  color: var(--sage);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  text-align: center;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 14px;
  color: var(--sage);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.about-team {
  margin-top: 52px;
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
  .main-nav {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img {
    order: -1;
    max-height: 260px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero {
    min-height: 420px;
  }
  .hero-content {
    padding-block: 56px;
  }
  .cookie-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-bar-actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-bar-actions button {
    width: 100%;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .list-card {
    flex-direction: column;
  }
  .list-card-img {
    width: 100%;
    height: 180px;
  }
  .list-card-body {
    padding: 20px;
  }
  .contact-form {
    padding: 22px 18px;
  }
  .article-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .article-nav a {
    max-width: 100%;
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}
