﻿
    /* ===== RESET & VARIABLES ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0a0a0a;
      --white: #f8f6f1;
      --gold: #b8955a;
      --gold-light: #d4af7a;
      --gold-pale: #f0e6d3;
      --charcoal: #1c1c1c;
      --gray: #888;
      --gray-light: #ccc;
      --section-pad: 120px 0;
      --nav-h: 72px;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

.overflow-hidden { overflow: hidden; }

body.modal-open { overflow: hidden; }

.note-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.note-modal.open {
  opacity: 1;
  visibility: visible;
}
.note-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
}
.note-modal-dialog {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 6vh auto;
  background: var(--white);
  color: var(--black);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.35);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  max-height: 88vh;
  overflow-y: auto;
}
.note-modal.open .note-modal-dialog {
  transform: translateY(0);
  opacity: 1;
}
.note-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 22px;
  cursor: pointer;
}
.note-modal-content img { max-width: 100%; height: auto; }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      letter-spacing: 0.02em;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--white); }
    ::-webkit-scrollbar-thumb { background: var(--gold); }

    /* ===== NAV ===== */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(184,149,90,0.2);
      transition: all 0.3s ease;
    }

    #nav.scrolled {
      height: 60px;
      background: rgba(10,10,10,0.99);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 14px;
    }

    .nav-logo-img {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }

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

    .nav-logo-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px; color: var(--black); font-weight: 600;
    }

    .nav-wordmark {
      color: var(--white);
      font-family: 'Cormorant Garamond', serif;
      font-size: var(--header-brand-size-1, 15px);
      line-height: 1.2; letter-spacing: 0.08em;
      --header-brand-accent: var(--gold);
    }

    .nav-wordmark span { display: block; }
    .nav-wordmark-line1 { letter-spacing: 0.08em; }
    .nav-wordmark-line2 {
      font-size: var(--header-brand-size-2, 11px);
      color: var(--header-brand-accent);
      letter-spacing: 0.18em;
      font-family: 'Jost', sans-serif;
      font-weight: 300;
    }

    .nav-links {
      display: flex; align-items: center; gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(248,246,241,0.7);
      font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 500;
      transition: color 0.25s;
      position: relative;
    }

    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
      background: var(--gold); transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s ease;
    }

    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      background: var(--gold);
      color: var(--black) !important;
      padding: 9px 22px;
      font-size: 10px !important;
      letter-spacing: 0.16em;
      transition: background 0.25s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold-light) !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }

    /* Mobile nav */
    #mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: var(--black); padding-top: var(--nav-h);
      flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    }
    #mobile-nav.open { display: flex; }
    #mobile-nav a {
      color: var(--white); font-family: 'Cormorant Garamond', serif;
      font-size: 32px; font-weight: 300; letter-spacing: 0.06em;
      transition: color 0.2s;
    }
    #mobile-nav a:hover { color: var(--gold); }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      background: var(--black);
      position: relative; overflow: hidden;
      padding-top: var(--nav-h);
    }

    .hero-bg {
      position: absolute; inset: 0;
      background: 
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(184,149,90,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(184,149,90,0.05) 0%, transparent 50%);
    }

    .hero-lines {
      position: absolute; inset: 0; opacity: 0.04;
      background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(184,149,90,1) 80px);
    }

    .hero-inner {
      position: relative; z-index: 2;
      text-align: center; max-width: 860px; padding: 0 32px;
    }

    .hero-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 28px;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 8vw, 96px);
      font-weight: 300; color: var(--white); line-height: 1.05;
      margin-bottom: 16px;
      opacity: 0; transform: translateY(24px);
      animation: fadeUp 0.9s 0.4s forwards;
    }

    .hero-title em { color: var(--gold); font-family: 'Jost', sans-serif; font-style: normal; font-size: 117px;}

    .hero-sub {
      font-size: 13px; letter-spacing: 0.08em; color: rgba(248,246,241,0.45);
      margin-bottom: 52px; font-weight: 300;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.8s 0.6s forwards;
    }

    .hero-actions {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.8s 0.8s forwards;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 32px; font-size: 11px; letter-spacing: 0.14em;
      text-transform: uppercase; font-weight: 500; cursor: pointer;
      transition: all 0.25s; border: none; font-family: 'Jost', sans-serif;
    }

    .btn-gold {
      background: var(--gold); color: var(--black);
    }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

    .btn-outline {
      background: transparent; color: var(--white);
      border: 1px solid rgba(248,246,241,0.25);
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(248,246,241,0.3); font-size: 9px; letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    /* ===== MAINTENANCE ===== */
    body.maintenance #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    body.maintenance .hero-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    body.maintenance .hero-title em { font-size: inherit; }
    body.maintenance .maintenance-brand { margin-bottom: 28px; }
    body.maintenance .maintenance-brand .nav-logo-img {
      width: 80px;
      height: 80px;
    }
    body.maintenance .maintenance-brand .nav-wordmark {
      font-size: calc(var(--header-brand-size-1, 15px) * 2);
    }
    body.maintenance .maintenance-brand .nav-wordmark-line2 {
      font-size: calc(var(--header-brand-size-2, 11px) * 2);
    }
    body.maintenance .maintenance-sub { max-width: 720px; margin: 0 auto; }
    body.maintenance .hero-glow {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse 55% 70% at 20% 45%, rgba(212,175,122,0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 80% 35%, rgba(184,149,90,0.12) 0%, transparent 60%);
      background-size: 140% 140%, 140% 140%;
      background-position: 15% 50%, 85% 35%;
      mix-blend-mode: screen;
      opacity: 0.65;
      animation: maintenanceGlow 22s ease-in-out infinite alternate;
      filter: blur(0.5px);
      pointer-events: none;
    }
    body.maintenance .hero-particles {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }
    body.maintenance .hero-particles .particle {
      position: absolute;
      bottom: -10vh;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(212,175,122,0.6);
      box-shadow: 0 0 10px rgba(212,175,122,0.45);
      animation: maintenanceFloat 16s linear infinite;
      opacity: 0.55;
    }
    body.maintenance .hero-particles .p1 { left: 8%; animation-duration: 18s; animation-delay: -2s; }
    body.maintenance .hero-particles .p2 { left: 16%; animation-duration: 22s; animation-delay: -9s; }
    body.maintenance .hero-particles .p3 { left: 24%; animation-duration: 20s; animation-delay: -4s; }
    body.maintenance .hero-particles .p4 { left: 32%; animation-duration: 24s; animation-delay: -12s; }
    body.maintenance .hero-particles .p5 { left: 41%; animation-duration: 19s; animation-delay: -7s; }
    body.maintenance .hero-particles .p6 { left: 50%; animation-duration: 21s; animation-delay: -3s; }
    body.maintenance .hero-particles .p7 { left: 58%; animation-duration: 23s; animation-delay: -10s; }
    body.maintenance .hero-particles .p8 { left: 66%; animation-duration: 17s; animation-delay: -5s; }
    body.maintenance .hero-particles .p9 { left: 74%; animation-duration: 25s; animation-delay: -14s; }
    body.maintenance .hero-particles .p10 { left: 82%; animation-duration: 20s; animation-delay: -6s; }
    body.maintenance .hero-particles .p11 { left: 90%; animation-duration: 26s; animation-delay: -15s; }
    body.maintenance .hero-particles .p12 { left: 95%; animation-duration: 19s; animation-delay: -8s; }
    body.maintenance .hero-lines { display: none; }
    body.maintenance .hero-inner,
    body.maintenance .maintenance-brand,
    body.maintenance .hero-title,
    body.maintenance .maintenance-sub,
    body.maintenance .maintenance-note {
      position: relative;
      z-index: 2;
    }
    body.maintenance .maintenance-note {
      margin-top: 22px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(248,246,241,0.35);
    }
    body.maintenance .hero-actions { margin-top: 28px; }

    /* ===== SECTION COMMON ===== */
    section { padding: var(--section-pad); }

    .section-label {
      font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--gold); font-weight: 500; margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.1;
      margin-bottom: 24px;
    }

    .section-body {
      font-size: 15px; line-height: 1.85; color: #444; font-weight: 300;
      max-width: 640px;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    .container-wide { max-width: 1400px; margin: 0 auto; padding: 0 48px; }

    /* ===== DIVIDER ===== */
    .divider {
      width: 1px; height: 64px; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      margin: 0 auto;
    }

    .divider-h {
      height: 1px; background: linear-gradient(to right, transparent, var(--gold-light), transparent);
      margin: 64px 0;
    }

    /* ===== INICIO / BIENVENIDA ===== */
    #inicio {
      background: var(--white);
    }

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

    .inicio-img {
      position: relative;
    }

    .inicio-img-frame {
      aspect-ratio: 4/5;
      background: #e8e0d0;
      overflow: hidden;
      position: relative;
    }

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

    .img-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: var(--gray);
    }
    .img-placeholder svg { opacity: 0.3; }
    .img-placeholder span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; }

    .inicio-img::before {
      content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
      border: 1px solid rgba(184,149,90,0.3); z-index: -1;
    }

    .inicio-text .section-body { max-width: 100%; }

    .stat-row {
      display: flex; gap: 40px; margin-top: 48px; padding-top: 40px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .stat-item { }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px; font-weight: 300; color: var(--gold); line-height: 1;
    }
    .stat-label { font-size: 11px; letter-spacing: 0.1em; color: var(--gray); margin-top: 6px; }

    /* ===== MASONERIA ===== */
    #masoneria {
      background: var(--black); color: var(--white);
    }

    .masoneria-intro {
      max-width: 720px; margin: 0 auto; text-align: center; margin-bottom: 80px;
    }

    .masoneria-intro .section-title { color: var(--white); }
    .masoneria-intro .section-body { color: rgba(248,246,241,0.6); max-width: 100%; }

    .pillars {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
      background: rgba(184,149,90,0.15); margin-bottom: 80px;
    }

    .pillar {
      background: var(--charcoal); padding: 48px 36px;
      transition: background 0.3s;
    }
    .pillar:hover { background: #222; }

    .pillar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px; color: rgba(184,149,90,0.15); font-weight: 300;
      line-height: 1; margin-bottom: 16px;
    }

    .pillar-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px; font-weight: 300; color: var(--gold);
      margin-bottom: 16px;
    }

    .pillar-text { font-size: 14px; line-height: 1.8; color: rgba(248,246,241,0.55); font-weight: 300; }

    /* QA blocks */
    .mas-qa { margin-top: 80px; }
    .mas-qa-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px,4vw,52px); color: var(--white); font-weight: 300;
      margin-bottom: 48px; text-align: center;
    }

    .qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

    .qa-item {
      background: var(--charcoal); padding: 40px;
    }

    .qa-q {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; color: var(--gold); margin-bottom: 16px; font-weight: 400;
    }

    .qa-a { font-size: 14px; line-height: 1.85; color: rgba(248,246,241,0.55); font-weight: 300; }

    .secreta-block {
      background: var(--gold); color: var(--black);
      padding: 48px; text-align: center; margin-top: 2px;
    }

    .secreta-block h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px,3vw,40px); margin-bottom: 16px;
    }

    .secreta-block p { font-size: 14px; line-height: 1.8; max-width: 700px; margin: 0 auto; }

    /* ===== LA PLATA 80 ===== */
    #laplata80 {
      background: var(--white);
    }

    .lp80-articles { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

    .lp80-article { }

    .lp80-img {
      aspect-ratio: 16/10; background: #e0d8c8; overflow: hidden; margin-bottom: 28px;
    }
    .lp80-img img { width: 100%; height: 100%; object-fit: cover; }

    .lp80-date {
      font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px;
    }

    .lp80-article h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px; font-weight: 400; margin-bottom: 14px; line-height: 1.25;
    }

    .lp80-article p { font-size: 14px; line-height: 1.8; color: #555; font-weight: 300; margin-bottom: 20px; }

    .link-arrow {
      font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
      font-weight: 500; transition: gap 0.25s;
    }
    .link-arrow:hover { gap: 14px; }

    /* ===== ACTIVIDADES ===== */
    #actividades {
      background: #f0ece4;
    }

    .act-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }

    .act-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .act-card {
      background: var(--white); overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .act-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }

    .act-card-img {
      aspect-ratio: 16/10; background: #ddd; overflow: hidden;
    }
    .act-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .act-card:hover .act-card-img img { transform: scale(1.04); }

    .act-card-body { padding: 28px; }

    .act-card-date {
      font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px;
    }

    .act-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px; font-weight: 400; margin-bottom: 12px; line-height: 1.3;
    }

    .act-card p { font-size: 13px; line-height: 1.75; color: #666; font-weight: 300; margin-bottom: 20px; }

    /* ===== BLOG ===== */
    #blog { background: var(--white); }

    .blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }

    .blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }

    .blog-featured {
      background: var(--black); color: var(--white); overflow: hidden;
    }

    .blog-featured-img {
      aspect-ratio: 16/9; background: #333; overflow: hidden;
    }
    .blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }

    .blog-featured-body { padding: 40px; }

    .blog-tag {
      display: inline-block; background: var(--gold); color: var(--black);
      font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
      padding: 4px 12px; margin-bottom: 16px; font-weight: 600;
    }

    .blog-featured h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px; font-weight: 300; margin-bottom: 14px; color: var(--white);
    }

    .blog-featured p { font-size: 14px; line-height: 1.8; color: rgba(248,246,241,0.55); margin-bottom: 24px; font-weight: 300; }

    .blog-list { display: flex; flex-direction: column; gap: 0; }

    .blog-item {
      padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
      transition: padding-left 0.25s;
    }
    .blog-item:first-child { padding-top: 0; }
    .blog-item:hover { padding-left: 8px; }

    .blog-item-date {
      font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }

    .blog-item h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px; font-weight: 400; margin-bottom: 8px; line-height: 1.3;
    }

    .blog-item p { font-size: 13px; color: #777; line-height: 1.65; font-weight: 300; }

    /* ===== NOTES SLIDER ===== */
    .notes-slider {
      position: relative;
      overflow: hidden;
    }
    .notes-track {
      display: flex;
      width: 100%;
      will-change: transform;
      transition: transform 0.6s ease;
    }
    .notes-slide {
      flex: 0 0 100%;
      width: 100%;
    }
    .notes-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }
    .notes-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(10,10,10,0.25);
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      padding: 0;
    }
    .notes-dot.active {
      background: var(--gold);
      transform: scale(1.35);
    }
    .notes-slider.is-single .notes-dots { display: none; }
    .act-slider .notes-dots { margin-top: 32px; }
    .blog-slider .notes-dots { margin-top: 20px; }

    /* ===== CONTACTO / FORMULARIOS ===== */
    #contacto {
      background: var(--charcoal); color: var(--white);
    }

    .contacto-header { text-align: center; margin-bottom: 64px; }
    .contacto-header .section-title { color: var(--white); }

    .form-tabs {
      display: flex; justify-content: center; margin-bottom: 48px; gap: 0;
      border: 1px solid rgba(184,149,90,0.3);
      max-width: 400px; margin-left: auto; margin-right: auto; margin-bottom: 48px;
    }

    .form-tab {
      flex: 1; padding: 14px 24px; text-align: center;
      font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 500; cursor: pointer;
      background: transparent; color: rgba(248,246,241,0.45);
      border: none; font-family: 'Jost', sans-serif;
      transition: all 0.25s;
    }

    .form-tab.active {
      background: var(--gold); color: var(--black);
    }

    .form-panel { display: none; max-width: 900px; margin: 0 auto; }
    .form-panel.active { display: block; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-grid.full { grid-template-columns: 1fr; }

    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.span2 { grid-column: 1 / -1; }

    .form-group label {
      font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(248,246,241,0.5); font-weight: 500;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(184,149,90,0.2);
      color: var(--white); padding: 12px 16px;
      font-size: 14px; font-family: 'Jost', sans-serif; font-weight: 300;
      outline: none; transition: border-color 0.25s; width: 100%;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(248,246,241,0.2); }

    .form-group select option { background: var(--charcoal); }

    .form-group textarea { min-height: 110px; resize: vertical; }

    .radio-group {
      display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
    }

    .radio-label {
      display: flex; align-items: center; gap: 8px; cursor: pointer;
      font-size: 13px; color: rgba(248,246,241,0.6); font-weight: 300;
    }

    .radio-label input[type="radio"] { accent-color: var(--gold); }

    .form-submit { margin-top: 24px; }

    .btn-submit {
      background: var(--gold); color: var(--black);
      padding: 16px 48px; font-size: 11px; letter-spacing: 0.16em;
      text-transform: uppercase; font-weight: 600; cursor: pointer;
      border: none; font-family: 'Jost', sans-serif;
      transition: background 0.25s, transform 0.2s;
      width: 100%;
    }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

    .recaptcha-box {
      margin-top: 18px;
      display: flex;
      justify-content: center;
    }

    /* ===== FOOTER ===== */
    #footer {
      background: var(--black); color: rgba(248,246,241,0.4);
      padding: 64px 0 32px;
    }

    .footer-inner {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      margin-bottom: 56px;
    }

    .footer-brand { }

    .footer-brand-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .footer-brand-logo {
      width: 40px;
      height: 40px;
      object-fit: contain;
      border-radius: 50%;
    }

    .footer-logo-placeholder {
      width: 48px; height: 48px; background: var(--gold); display: flex;
      align-items: center; justify-content: center; margin-bottom: 20px;
      font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--black);
      font-weight: 600;
      /* Replace with actual logo img */
    }

    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px; color: var(--white); margin-bottom: 8px; font-weight: 300;
      display: flex; flex-direction: column; gap: 4px;
      --footer-brand-accent: var(--gold);
    }
    .footer-brand-top .footer-brand-name { margin-bottom: 0; line-height: 1.2; }
    .footer-brand-line2 { color: var(--footer-brand-accent); font-family: 'Jost', sans-serif; font-weight: 300; font-size: 15px; line-height: 1; letter-spacing: 0.18em;}

    .footer-brand-sub {
      font-size: 11px; letter-spacing: 0.1em; color: rgba(248,246,241,0.3);
      line-height: 1.6; max-width: 260px;
    }

    .footer-col h5 {
      font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px; font-family: 'Jost', sans-serif; font-weight: 500;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 13px; color: rgba(248,246,241,0.45); transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }

    .footer-social { display: flex; gap: 16px; margin-top: 24px; }
    .footer-social a {
      width: 36px; height: 36px; border: 1px solid rgba(184,149,90,0.25);
      display: flex; align-items: center; justify-content: center;
      color: rgba(248,246,241,0.4); font-size: 14px;
      transition: all 0.25s;
    }
    .footer-social a:hover { border-color: var(--gold); color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(184,149,90,0.1);
      padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }

    .footer-bottom-text { font-size: 11px; letter-spacing: 0.06em; }
    .footer-bottom-text a { color: var(--gold); }
    .footer-bottom-text a:hover { color: var(--gold-light); }

    .footer-gran-logia {
      display: flex; align-items: center; gap: 12px;
    }

    .gran-logia-logo {
      width: 110px; height: auto;
      overflow: hidden;
    }
    .gran-logia-logo img { width: 100%; height: 100%; object-fit: contain; }

    .gran-logia-text { font-size: 11px; letter-spacing: 0.06em; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }
    @keyframes maintenanceGlow {
      0% { background-position: 15% 50%, 85% 35%; opacity: 0.55; }
      50% { background-position: 30% 45%, 70% 40%; opacity: 0.7; }
      100% { background-position: 10% 55%, 90% 30%; opacity: 0.6; }
    }
    @keyframes maintenanceFloat {
      0% { transform: translateY(0) scale(1); opacity: 0; }
      10% { opacity: 0.5; }
      50% { opacity: 0.8; }
      100% { transform: translateY(-120vh) scale(1.25); opacity: 0; }
    }

    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ===== ACTIVE NAV ===== */
    .nav-links a.active { color: var(--gold); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .inicio-grid { grid-template-columns: 1fr; gap: 48px; }
      .inicio-img { max-width: 480px; }
      .act-cards { grid-template-columns: 1fr 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .blog-featured { grid-column: 1; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
      .qa-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      :root { --section-pad: 80px 0; }
      .container, .container-wide { padding: 0 24px; }
      #nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .pillars { grid-template-columns: 1fr; }
      .act-cards { grid-template-columns: 1fr; }
      .lp80-articles { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; text-align: center; }
      .footer-brand-top { justify-content: center; }
      .footer-brand-sub { margin-left: auto; margin-right: auto; font-size: 12px; }
      .footer-brand-name { font-size: 19px; }
      .footer-brand-line2 { font-size: 16px; }
      .footer-col h5 { font-size: 11px; }
      .footer-links { align-items: center; }
      .footer-links a { font-size: 14px; }
      .footer-social { justify-content: center; }
      .footer-gran-logia { justify-content: center; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
      .footer-bottom-text { font-size: 12px; }
      .act-header, .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .stat-row { flex-wrap: wrap; gap: 28px; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 42px; }
      .hero-actions { flex-direction: column; align-items: center; }
	  .hero-title em { color: var(--gold); font-family: 'Jost', sans-serif; font-style: normal; font-size:50px;}
      .btn { width: 100%; justify-content: center; }
    }


