/* Generated by tools/build-theme-css.py. Do not edit directly. */
:root {
  --cb-navy: #1b2655;
  --cb-navy-deep: #0e1632;
  --cb-navy-mid: #243070;
  --cb-navy-light: #2e3d80;
  --cb-red: #b8292d;
  --cb-red-dark: #9d1f24;
  --cb-red-bright: #d43438;
  --cb-red-glow: rgba(184, 41, 45, 0.12);
  --cb-cream: #f8f5f0;
  --cb-cream-dark: #ede8df;
  --cb-stone: #8a8475;
  --cb-white: #ffffff;
  --cb-charcoal: #2d2d2d;
  --cb-radius-xl: 20px;
  --cb-radius-lg: 14px;
  --cb-radius-md: 8px;
  --cb-shadow-soft: 0 2px 16px rgba(27, 38, 85, 0.06);
  --cb-shadow-med: 0 8px 32px rgba(27, 38, 85, 0.1);
  --cb-shadow-strong: 0 20px 60px rgba(27, 38, 85, 0.16);
  --cb-ease: cubic-bezier(.4, 0, .2, 1);
  --cb-ease-out: cubic-bezier(0, 0, .2, 1);
  --cb-ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --cb-font-serif: 'Cormorant Garamond', Georgia, serif;
  --cb-font-body: 'DM Sans', sans-serif;
  --cb-font-mono: 'DM Mono', monospace;
  --cb-content-width: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--cb-charcoal);
  background: var(--cb-white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.cb-container {
  width: min(calc(100% - 40px), var(--cb-content-width));
  margin: 0 auto;
}

.cb-centered {
  text-align: center;
}

.cb-site-main {
  min-height: 60vh;
}

.cb-section {
  padding: 88px 0;
}

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

.cb-section-white {
  background: var(--cb-white);
}

.cb-sub-hero {
  background: var(--cb-navy-deep);
  color: var(--cb-white);
  padding: 88px 0 64px;
}

.cb-page-title,
.cb-section-title,
.cb-hero-title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
}

.cb-page-title {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.cb-section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--cb-navy);
}

.cb-page-subtitle,
.cb-section-copy,
.cb-hero-description {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.cb-section-copy {
  margin: 0;
  color: var(--cb-stone);
}

.cb-eyebrow,
.cb-card-kicker,
.cb-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cb-red);
}

.cb-grid {
  display: grid;
  gap: 24px;
}

.cb-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cb-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cb-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cb-stack {
  display: grid;
  gap: 20px;
}

.cb-card {
  background: var(--cb-white);
  border-radius: var(--cb-radius-xl);
  padding: 28px;
  box-shadow: var(--cb-shadow-soft);
  border: 1px solid rgba(27, 38, 85, 0.06);
}

.cb-card-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--cb-navy);
}

.cb-card p,
.cb-entry {
  color: var(--cb-stone);
  line-height: 1.7;
}

.cb-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cb-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 38, 85, 0.06);
  color: var(--cb-navy);
  font-size: 0.82rem;
}

.cb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.cb-button:hover {
  transform: translateY(-2px);
}

.cb-button-primary {
  background: var(--cb-red);
  color: var(--cb-white);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(184, 41, 45, 0.22);
}

.cb-button-primary:hover {
  background: var(--red-dark, #a62328);
  box-shadow: 0 16px 34px rgba(184, 41, 45, 0.28);
}

.cb-button-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: inherit;
}

.cb-button-whatsapp,
.cb-button-light {
  background: var(--cb-white);
  color: var(--cb-navy);
}

.cb-form {
  display: grid;
  gap: 14px;
}

.cb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cb-field {
  display: grid;
  gap: 8px;
}

.cb-field span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cb-navy);
}

.cb-form input,
.cb-form select,
.cb-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27, 38, 85, 0.12);
  border-radius: var(--cb-radius-md);
  background: var(--cb-white);
}

.cb-form-status {
  min-height: 20px;
  font-size: 0.92rem;
  color: var(--cb-navy);
}

.cb-skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cb-red);
  color: var(--cb-white);
}

.cb-skip-link:focus {
  top: 16px;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 41, 45, .06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* Shooting stars */
.shooting-star {
  position: absolute;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .15), transparent);
  border-radius: 1px;
  pointer-events: none;
  animation: shoot ease-out forwards;
  opacity: 0;
  transform-origin: left center;
}

@keyframes shoot {
  0%   { opacity: 0; width: 0;    transform: rotate(35deg) translateX(0); }
  8%   { opacity: .9; width: 60px; }
  30%  { opacity: .7; width: 120px; transform: rotate(35deg) translateX(100px); }
  70%  { opacity: .3; width: 70px;  transform: rotate(35deg) translateX(300px); }
  100% { opacity: 0;  width: 15px;  transform: rotate(35deg) translateX(450px); }
}

@media (max-width: 1024px) {
  .cb-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cb-form-grid,
  .cb-grid-3,
  .cb-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cb-section,
  .cb-sub-hero {
    padding: 64px 0;
  }

  .cb-grid-4 {
    grid-template-columns: 1fr;
  }
}
