@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --cream:       #FFF8F0;
  --cream-mid:   #FFF0E4;
  --cream-dark:  #F5E6D0;
  --brown-dark:  #3A2A1A;
  --brown-mid:   #7B5030;
  --brown-light: #C4956A;
  --brown-text:  #5A3A20;
  --rust:        #C4602A;
  --rust-light:  #E8845A;
  --pink:        #D4537E;
  --pink-light:  #F4C0D0;
  --green-dark:  #1A3A1A;
  --green-mid:   #1D9E75;
  --green-light: #5DCAA5;
  --green-pale:  #9FE1CB;
  --border:      #E8D0B0;
  --shadow:      rgba(58,42,26,0.08);
  --font-display:'Nunito', sans-serif;
  --font-body:   'Lora', Georgia, serif;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--brown-dark); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  background: var(--brown-dark);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid #5A3A20;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #FBE8D0;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--brown-light); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-light);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--brown-light);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: #FBE8D0; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #FBE8D0; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-lang { display: flex; gap: 4px; }
.lang-btn {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #5A3A20;
  background: transparent;
  color: #9B7A60;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover { background: var(--brown-light); color: var(--brown-dark); border-color: var(--brown-light); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--brown-light); border-radius: 2px; transition: all 0.3s; }

/* ── HERO: SPLIT LAYOUT matching mockup ── */
.hero {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-left {
  background: var(--brown-dark);
  padding: 64px 48px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--brown-dark);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--brown-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-light);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  color: #FBE8D0;
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--brown-light); display: block; }
.hero-tagline {
  font-family: var(--font-body);
  font-size: 17px;
  color: #9B7A60;
  font-style: italic;
  margin-bottom: 36px;
  max-width: 380px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right {
  background: var(--cream);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 24px 0;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,149,106,0.12) 0%, transparent 70%);
}
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.hero-logo-img {
  width: min(480px, 100%);
  filter: drop-shadow(0 8px 32px rgba(58,42,26,0.15));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-group-img {
  width: min(520px, 100%);
  margin-bottom: -8px;
  filter: drop-shadow(0 4px 20px rgba(58,42,26,0.1));
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream-dark);
  padding: 14px 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--rust); color: white; }
.btn-secondary { background: transparent; color: var(--brown-mid); border: 2px solid var(--brown-light); }
.btn-secondary:hover { background: var(--cream-mid); }
.btn-heart     { background: var(--pink); color: white; }
.btn-green     { background: var(--green-mid); color: white; }
.btn-green-ghost { background: transparent; color: var(--green-mid); border: 2px solid var(--green-mid); }
.btn-sm { font-size: 12px; padding: 9px 18px; }
.btn-outline-brown { background: transparent; color: var(--brown-mid); border: 1.5px solid var(--border); }
.btn-outline-brown:hover { border-color: var(--brown-light); }

/* ── SECTION WRAPPER ── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 72px 40px; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--brown-light);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '♥';
  font-size: 8px;
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--brown-dark);
  line-height: 1.15;
  margin-bottom: 8px;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brown-light);
  font-style: italic;
  margin-bottom: 40px;
}

/* ── CHARACTER CARDS (Meet the Gang) ── */
.chars-section { background: var(--cream); }
.chars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.char-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}
.char-card:hover {
  transform: translateY(-6px);
  border-color: var(--brown-light);
  box-shadow: 0 12px 32px var(--shadow);
}
.char-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--cream);
}
.char-card-body { padding: 16px 14px 18px; }
.char-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--brown-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.char-card-emoji { font-size: 13px; }
.char-card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--brown-mid);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 14px;
  min-height: 54px;
}
.char-card-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.char-card:hover .char-card-link { gap: 8px; }
.char-card-coming {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--cream-dark);
  color: var(--brown-mid);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.chars-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-top: 24px;
  overflow: hidden;
}
.chars-value-item {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--border);
}
.chars-value-item:last-child { border-right: none; }
.chars-value-icon { font-size: 18px; }
.chars-value-text { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--brown-mid); }
.chars-value-text span { display: block; font-size: 9px; font-weight: 400; color: var(--brown-light); margin-top: 1px; }
.chars-brand-badge {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-dark);
}
.chars-brand-badge span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: #FBE8D0;
}
.chars-brand-badge small { color: var(--brown-light); font-size: 10px; display: block; }

/* ── BENTO GRID (3-col features) ── */
.bento-section { background: var(--cream-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.bento-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: transform 0.25s;
  cursor: pointer;
}
.bento-card:hover { transform: translateY(-4px); }
.bento-card-story { background: var(--brown-dark); }
.bento-card-shop  { background: var(--cream); border: 1.5px solid var(--border); }
.bento-card-comics { background: #E8F4EC; border: 1.5px solid #C0DCC0; }
.bento-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
}
.bento-card-content { position: relative; z-index: 1; }
.bento-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bento-card-story .bento-eyebrow { color: var(--brown-light); }
.bento-card-shop  .bento-eyebrow { color: var(--rust); }
.bento-card-comics .bento-eyebrow { color: var(--green-mid); }
.bento-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}
.bento-card-story .bento-title { color: #FBE8D0; }
.bento-card-shop  .bento-title { color: var(--brown-dark); }
.bento-card-comics .bento-title { color: #1A3A1A; }
.bento-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}
.bento-card-story .bento-desc { color: #9B7A60; }
.bento-card-shop  .bento-desc { color: var(--brown-mid); }
.bento-card-comics .bento-desc { color: #3A5A3A; }
.bento-plush-img {
  position: absolute;
  right: -10px;
  top: 20px;
  width: 52%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(58,42,26,0.15));
  animation: bentoFloat 5s ease-in-out infinite;
}
@keyframes bentoFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}
.bento-comics-imgs {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 45%;
}
.bento-comics-imgs img {
  border-radius: 8px;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  aspect-ratio: 1;
  object-fit: cover;
}

/* ── LA VIGILE STRIP ── */
.vigile-strip {
  background: var(--brown-dark);
  padding: 56px 40px;
}
.vigile-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1px 1fr 1px 1fr 1px 1fr;
  gap: 0 48px;
  align-items: center;
}
.vigile-pct-big {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}
.vigile-strip-divider { background: #5A3A20; align-self: stretch; }
.vigile-strip-item { padding: 0 0 0 0; }
.vigile-strip-item-icon {
  width: 44px;
  height: 44px;
  background: #2A1A10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  border: 1px solid #5A3A20;
}
.vigile-strip-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #FBE8D0;
  margin-bottom: 4px;
}
.vigile-strip-item p {
  font-family: var(--font-body);
  font-size: 12px;
  color: #9B7A60;
  line-height: 1.5;
}
.vigile-strip-cta {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #3A2010;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.vigile-honest {
  font-family: var(--font-display);
  font-size: 12px;
  color: #7B5040;
  max-width: 640px;
  line-height: 1.6;
}
.vigile-honest strong { color: var(--green-light); }
.vigile-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--cream-mid);
  padding: 56px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.newsletter-section h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.newsletter-section p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brown-light);
  font-style: italic;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  font-family: var(--font-display);
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  flex: 1;
  min-width: 220px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--brown-light); }

/* ── FOOTER ── */
footer {
  background: #1A0A00;
  padding: 56px 40px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2A1A08;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #FBE8D0;
  margin-bottom: 8px;
}
.footer-brand span { color: var(--brown-light); }
.footer-desc { font-size: 13px; color: #5A3A20; line-height: 1.7; margin-bottom: 16px; }
.footer-email a {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--brown-light);
  transition: color 0.2s;
}
.footer-email a:hover { color: #FBE8D0; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--brown-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: #7B5040;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brown-light); }
.footer-crisis-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--green-light);
  display: block;
  margin-bottom: 6px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-family: var(--font-display); font-size: 11px; color: #3A2010; }
.footer-made { font-family: var(--font-display); font-size: 11px; color: #5A3A20; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px;
  height: 34px;
  background: #2A1A08;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #7B5040;
  border: 1px solid #3A2010;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--brown-light); color: var(--brown-dark); }

/* ── CHARACTERS PAGE ── */
.chars-page-hero {
  background: var(--brown-dark);
  padding: 72px 40px 56px;
  text-align: center;
  border-bottom: 2px solid #5A3A20;
}
.chars-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #FBE8D0;
  margin-bottom: 12px;
}
.chars-page-hero p {
  font-family: var(--font-body);
  font-size: 17px;
  color: #9B7A60;
  font-style: italic;
}
.char-profile {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}
.char-profile:nth-child(even) { direction: rtl; }
.char-profile:nth-child(even) > * { direction: ltr; }
.char-profile-portrait {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow);
}
.char-profile-portrait img { width: 100%; display: block; }
.char-profile-content {}
.char-profile-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--brown-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.char-profile-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brown-light);
  font-style: italic;
  margin-bottom: 20px;
}
.char-traits { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.char-trait {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  color: var(--brown-mid);
}
.char-profile-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brown-text);
  line-height: 1.8;
  margin-bottom: 24px;
}
.char-sheet-img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  margin-top: 16px;
}
.char-coming-section {
  background: var(--cream-mid);
  padding: 64px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.coming-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; margin: 32px auto 0; }
.coming-card {
  background: white;
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  opacity: 0.7;
}
.coming-card-icon { font-size: 40px; margin-bottom: 12px; }
.coming-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.coming-card-desc { font-size: 13px; color: var(--brown-mid); font-style: italic; margin-bottom: 12px; }
.coming-pill {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--brown-light);
  background: var(--cream-dark);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── FADE-IN ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .chars-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 340px; padding-top: 24px; }
  .vigile-strip-inner { grid-template-columns: 1fr 1fr; }
  .vigile-strip-divider { display: none; }
  .vigile-pct-big { font-size: 64px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .char-profile { grid-template-columns: 1fr; }
  .char-profile:nth-child(even) { direction: ltr; }
  .bento-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--brown-dark);
    padding: 24px; gap: 20px;
    border-bottom: 2px solid var(--brown-light);
    z-index: 199;
  }
  .section-wrap { padding: 48px 20px; }
  .chars-grid { grid-template-columns: repeat(2, 1fr); }
  .chars-values { grid-template-columns: repeat(2, 1fr); }
  .chars-brand-badge { grid-column: 1 / -1; }
  .hero-left { padding: 48px 24px; }
  .trust-bar { gap: 16px; padding: 12px 20px; }
  .vigile-strip { padding: 40px 20px; }
  .vigile-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .chars-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero h1 { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .coming-grid { grid-template-columns: 1fr; }
}
