:root {
  --verde: #2C3E2D;
  --verde-medio: #3D5C3E;
  --verde-claro: #6B8F6C;
  --crema: #F5F0E8;
  --crema-oscura: #E8DFC9;
  --dorado: #C4973A;
  --tierra: #8B6B47;
  --blanco: #FDFAF5;
  --negro-suave: #1A1F1A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--blanco); color: var(--negro-suave); overflow-x: hidden; }

/* TOPBAR */
.topbar { background: var(--negro-suave); color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar a { color: rgba(255,255,255,0.65); text-decoration: none; }

/* NAV */
nav { position: sticky; top: 0; z-index: 200; background: rgba(253,250,245,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--crema-oscura); padding: 0 40px; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--serif); font-size: 22px; font-weight: 300; letter-spacing: 0.05em; color: var(--verde); text-decoration: none; flex-shrink: 0; }
.logo span { color: var(--dorado); }
.logo-img { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img img { height: 48px; width: auto; display: block; transition: opacity 0.2s; }
.logo-img img:hover { opacity: 0.8; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--verde); text-decoration: none; font-weight: 500; transition: color 0.2s; padding-bottom: 2px; border-bottom: 1px solid transparent; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--dorado); border-bottom-color: var(--dorado); }
.nav-cta { background: var(--verde); color: var(--crema) !important; padding: 10px 18px; font-size: 10px !important; letter-spacing: 0.12em !important; text-transform: uppercase; text-decoration: none; transition: background 0.2s; white-space: nowrap; border-bottom: none !important; flex-shrink: 0; }
.nav-cta:hover { background: var(--dorado) !important; }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--verde); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--negro-suave);
  z-index: 300;
  flex-direction: column;
  padding: 32px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mobile-menu-logo { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--crema); }
.mobile-menu-logo span { color: var(--dorado); }
.mobile-menu-close { background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-menu-close svg { display: block; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-menu-links a { font-family: var(--serif); font-size: 32px; font-weight: 300; color: rgba(245,240,232,0.75); text-decoration: none; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.mobile-menu-links a:hover { color: var(--dorado); }
.mobile-menu-links a:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu-cta { margin-top: 36px; background: var(--dorado); color: white; padding: 18px 28px; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; font-weight: 600; text-align: center; display: block; }

/* PAGE HERO */
.page-hero { position: relative; height: 60vh; min-height: 440px; display: flex; align-items: flex-end; overflow: hidden; background: var(--verde); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,31,26,0.45) 0%, rgba(26,31,26,0.05) 55%, transparent 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 40px 60px; width: 100%; }
.breadcrumb { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(245,240,232,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--dorado); }
.page-title { font-family: var(--serif); font-size: clamp(42px, 7vw, 80px); font-weight: 300; color: var(--blanco); line-height: 1.05; }
.page-title em { font-style: italic; color: var(--crema-oscura); }
.page-subtitle { font-size: 14px; color: rgba(245,240,232,0.7); margin-top: 14px; max-width: 480px; line-height: 1.8; font-weight: 300; }

/* SECTIONS */
section { padding: 90px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dorado); font-weight: 600; margin-bottom: 14px; }
.section-title { font-family: var(--serif); font-size: clamp(32px, 5vw, 52px); font-weight: 300; color: var(--verde); line-height: 1.1; margin-bottom: 18px; }
.section-title em { font-style: italic; }
.section-body { font-size: 14px; color: #5a5a5a; line-height: 1.9; font-weight: 300; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* FULL IMAGE */
.full-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-tall { height: 540px; overflow: hidden; }
.img-tall img { width: 100%; height: 100%; object-fit: cover; }

/* FEATURES LIST */
.features { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.features li { display: flex; gap: 14px; align-items: flex-start; font-size: 13px; color: #555; line-height: 1.6; font-weight: 300; }
.features li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--dorado); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

/* CARDS GRID */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.card { background: var(--crema); padding: 36px 32px; }
.card-icon { font-size: 28px; margin-bottom: 16px; }
.card-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--verde); margin-bottom: 10px; }
.card-body { font-size: 13px; color: #666; line-height: 1.8; font-weight: 300; }

/* QUOTE BLOCK */
.quote-block { background: var(--verde); padding: 80px 40px; text-align: center; }
.quote-text { font-family: var(--serif); font-size: clamp(22px, 4vw, 38px); font-style: italic; font-weight: 300; color: var(--crema); max-width: 700px; margin: 0 auto 20px; line-height: 1.4; }
.quote-author { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dorado); font-weight: 600; }

/* LEVELS TABLE */
.levels { margin-top: 50px; display: flex; flex-direction: column; gap: 2px; }
.level-row { display: grid; grid-template-columns: 200px 1fr 120px; gap: 24px; background: var(--crema); padding: 24px 28px; align-items: center; transition: background 0.2s; }
.level-row:hover { background: var(--crema-oscura); }
.level-name { font-family: var(--serif); font-size: 20px; color: var(--verde); font-weight: 400; }
.level-desc { font-size: 13px; color: #666; line-height: 1.6; font-weight: 300; }
.level-tag { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dorado); font-weight: 700; text-align: right; }

/* BUTTONS */
.btn-primary { background: var(--verde); color: white; padding: 16px 36px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; font-family: var(--sans); font-weight: 600; display: inline-block; transition: background 0.2s, transform 0.2s; margin: 0 8px; }
.btn-primary:hover { background: #1a2d1a; transform: translateY(-1px); }
.btn-white { background: white; color: var(--dorado); padding: 16px 36px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; font-family: var(--sans); font-weight: 700; display: inline-block; transition: opacity 0.2s, transform 0.2s; margin: 0 8px; }
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }
.link-arrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--verde-claro); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow::after { content: '→'; transition: transform 0.2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* CTA BANNER */
.cta-banner { background: var(--dorado); padding: 80px 40px; text-align: center; }
.cta-banner .section-label { color: rgba(255,255,255,0.7); }
.cta-banner .section-title { color: white; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 14px; margin-bottom: 32px; font-weight: 300; }

/* CONTACT STRIP */
.contact-strip { background: var(--crema); padding: 70px 40px; }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.contact-item-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dorado); font-weight: 700; margin-bottom: 8px; }
.contact-item-value { font-family: var(--serif); font-size: 18px; color: var(--verde); font-weight: 400; line-height: 1.4; }
.contact-item-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--dorado); }

/* FOOTER */
footer { background: var(--negro-suave); padding: 60px 40px 32px; color: rgba(255,255,255,0.4); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-logo { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--crema); }
.footer-logo span { color: var(--dorado); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-social a:hover { color: var(--dorado); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 11px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* ALT BG */
.bg-crema { background: var(--crema); }
.bg-verde { background: var(--verde); }
.bg-blanco { background: var(--blanco); }

/* RESPONSIVE */
@media (max-width: 1050px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 9px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 60px 24px; }
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .level-row { grid-template-columns: 1fr; gap: 8px; }
  .level-tag { text-align: left; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-hero-content { padding: 0 24px 48px; }
  .footer-top { flex-direction: column; gap: 20px; }
  .contact-strip { padding: 60px 24px; }
  .img-tall { height: 300px; }
  .quote-block { padding: 60px 24px; }
  .cta-banner { padding: 60px 24px; }
  .btn-primary, .btn-white { margin: 6px 0; display: block; text-align: center; }
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
}
