/*
CREADOR DEL CÓDIGO FUENTE: MAXIMILIANO MUÑIZ
© 2026 Maximiliano Muñiz. Todos los derechos reservados.
Queda terminantemente prohibida la copia parcial o total del código fuente.
Contacto: maxmunarg@gmail.com
*/
:root {
  --gg610-bg: #090908;
  --gg610-panel: #141311;
  --gg610-panel-2: #1b1916;
  --gg610-ivory: #f4f0e8;
  --gg610-muted: #b8b0a5;
  --gg610-bronze: #a77b45;
  --gg610-bronze-light: #d0ae79;
  --gg610-burgundy: #663238;
  --gg610-burgundy-light: #875057;
  --gg610-border: rgba(208, 174, 121, .24);
  --gg610-shadow: 0 32px 90px rgba(0, 0, 0, .58);
}

.gg610-fullscreen-page,
.gg610-fullscreen-page * { box-sizing: border-box; }
.gg610-fullscreen-page { margin: 0; background: var(--gg610-bg); color: var(--gg610-ivory); }
.gg610-fullscreen-page button,
.gg610-fullscreen-page input,
.gg610-fullscreen-page textarea,
.gg610-fullscreen-page select { font: inherit; }
body.gg610-modal-open { overflow: hidden; }
[hidden] { display: none !important; }

/* INGRESO */
.gg610-gateway {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  font-family: Georgia, 'Times New Roman', serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(167, 123, 69, .16), transparent 28%),
    radial-gradient(circle at 50% 115%, rgba(102, 50, 56, .15), transparent 40%),
    linear-gradient(145deg, #070706, #12110f 52%, #070706);
}
.gg610-temple-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(208,174,121,.10), transparent 18%),
    radial-gradient(ellipse at 82% 42%, rgba(208,174,121,.10), transparent 18%);
}
.gg610-temple-glow::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%; bottom: -7%; height: 30%;
  background: radial-gradient(ellipse, rgba(208,174,121,.09), transparent 68%);
  filter: blur(12px);
}
.gg610-temple-columns { position: absolute; inset: 0; pointer-events: none; }
.gg610-temple-columns span {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(55px, 9vw, 145px);
  opacity: .46;
  border-inline: 1px solid rgba(208,174,121,.12);
  background:
    repeating-linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.025) 12% 17%, transparent 17% 29%),
    linear-gradient(90deg, #080807, #211e19 48%, #080807);
  box-shadow: inset 0 0 40px #000;
}
.gg610-temple-columns span::before,
.gg610-temple-columns span::after {
  content: '';
  position: absolute;
  left: -18%; width: 136%; height: 52px;
  border: 1px solid rgba(208,174,121,.15);
  background: linear-gradient(#211e19, #0b0a09);
}
.gg610-temple-columns span::before { top: 0; }
.gg610-temple-columns span::after { bottom: 0; }
.gg610-temple-columns span:first-child { left: 3%; }
.gg610-temple-columns span:last-child { right: 3%; }

.gg610-intro-panel,
.gg610-login-stage {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  animation: gg610-rise .8s ease both;
}
.gg610-intro-panel {
  max-width: 760px;
  text-align: center;
  padding: clamp(28px, 5vw, 62px);
}
.gg610-intro-logo { width: clamp(160px, 25vw, 260px); height: auto; filter: drop-shadow(0 18px 28px rgba(0,0,0,.45)); }
.gg610-kicker {
  margin: 14px 0 10px;
  color: var(--gg610-bronze-light);
  text-transform: uppercase;
  letter-spacing: .17em;
  font: 700 .74rem/1.5 Arial, sans-serif;
}
.gg610-intro-panel h1 { margin: 0; font-size: clamp(2.1rem, 5.5vw, 4.8rem); font-weight: 500; letter-spacing: .025em; }
.gg610-motto { color: var(--gg610-ivory); text-transform: uppercase; letter-spacing: .2em; font: .84rem/1.7 Arial, sans-serif; }
.gg610-motto span { color: var(--gg610-burgundy-light); }
.gg610-lead,
.gg610-threshold-text { max-width: 630px; margin: 14px auto; color: var(--gg610-muted); line-height: 1.75; }
.gg610-threshold-text { color: #d2cbc0; font-style: italic; }
.gg610-approach-button,
.gg610-knock-button,
.gg610-request-button,
.gg610-form-submit,
.gg610-primary-link,
.gg610-submission-form button,
.gg610-hero-actions button,
.gg610-book-card button,
.gg610-book-card .gg610-book-link,
.gg610-note-card button {
  border: 1px solid rgba(208,174,121,.62);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--gg610-burgundy-light), var(--gg610-burgundy));
  color: var(--gg610-ivory);
  padding: 14px 20px;
  font-weight: 700;
  letter-spacing: .07em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 10px 28px rgba(0,0,0,.26);
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.gg610-approach-button { margin-top: 20px; min-width: 240px; text-transform: uppercase; font-family: Arial, sans-serif; }
.gg610-approach-button:hover,
.gg610-knock-button:hover,
.gg610-request-button:hover,
.gg610-form-submit:hover,
.gg610-primary-link:hover,
.gg610-submission-form button:hover,
.gg610-hero-actions button:hover,
.gg610-book-card button:hover,
.gg610-book-card .gg610-book-link:hover,
.gg610-note-card button:hover { transform: translateY(-2px); filter: brightness(1.08); border-color: var(--gg610-bronze-light); }
.gg610-gateway.is-approaching .gg610-intro-panel { animation: gg610-approach .72s ease forwards; }
@keyframes gg610-approach { to { opacity: 0; transform: scale(1.08); filter: blur(4px); } }
@keyframes gg610-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.gg610-login-stage {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
  padding: clamp(20px, 3.5vw, 44px);
  border: 1px solid var(--gg610-border);
  background: linear-gradient(145deg, rgba(21,20,18,.96), rgba(8,8,7,.97));
  box-shadow: var(--gg610-shadow);
}
.gg610-login-stage.is-visible { opacity: 1; transform: none; }
.gg610-login-identity { display: flex; align-items: center; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--gg610-border); }
.gg610-login-identity img { width: 98px; height: 98px; object-fit: contain; }
.gg610-login-identity h1 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 500; }
.gg610-login-identity p:last-child { margin: 8px 0 0; color: var(--gg610-muted); line-height: 1.6; font-family: Arial, sans-serif; }
.gg610-login-layout { display: grid; grid-template-columns: minmax(310px, .85fr) minmax(410px, 1.15fr); gap: clamp(28px, 5vw, 76px); align-items: center; padding-top: 34px; }
.gg610-login-card { padding: clamp(6px, 2vw, 20px); }
.gg610-login-form { display: grid; gap: 14px; text-align: left; }
.gg610-login-form label > span,
.gg610-submission-form label > span,
.gg610-application-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #ddd4c8;
  font: 700 .82rem/1.4 Arial, sans-serif;
}
.gg610-login-form input,
.gg610-submission-form input,
.gg610-submission-form textarea,
.gg610-application-form input,
.gg610-application-form textarea,
.gg610-application-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 6px;
  background: #0d0d0c;
  color: var(--gg610-ivory);
  padding: 14px 15px;
  outline: none;
}
.gg610-login-form input:focus,
.gg610-submission-form input:focus,
.gg610-submission-form textarea:focus,
.gg610-application-form input:focus,
.gg610-application-form textarea:focus,
.gg610-application-form select:focus { border-color: var(--gg610-bronze-light); box-shadow: 0 0 0 3px rgba(167,123,69,.14); }
.gg610-application-form option { background: #151412; color: var(--gg610-ivory); }
.gg610-remember { display: flex !important; align-items: center; gap: 8px; color: var(--gg610-muted); font: .82rem Arial, sans-serif; }
.gg610-remember input { width: auto; }
.gg610-remember span { margin: 0 !important; color: inherit !important; font-weight: 400 !important; }
.gg610-knock-button { width: 100%; }
.gg610-knock-button:disabled { opacity: .65; cursor: progress; }
.gg610-request-button { width: 100%; background: transparent; border-color: rgba(208,174,121,.45); color: var(--gg610-bronze-light); }
.gg610-sound-toggle,
.gg610-back-button { border: 0; background: transparent; color: var(--gg610-muted); cursor: pointer; }
.gg610-sound-toggle { text-align: center; font-size: .79rem; }
.gg610-back-button { display: block; margin: 26px auto 0; text-decoration: underline; text-underline-offset: 4px; }
.gg610-access-note { color: #827c74; font: .76rem/1.5 Arial, sans-serif; margin: 16px 0 0; }
.gg610-alert,
.gg610-success { border: 1px solid rgba(208,174,121,.35); background: rgba(167,123,69,.10); color: #e2d6c3; padding: 12px 14px; border-radius: 6px; margin: 0 0 16px; font: .85rem/1.5 Arial, sans-serif; }
.gg610-success { border-color: rgba(125,161,120,.42); background: rgba(80,125,75,.13); color: #d6e6d2; }

.gg610-ceremonial-door { position: relative; max-width: 500px; margin: 0 auto; padding: 64px 38px 0; text-align: center; }
.gg610-door-pediment {
  position: absolute; top: 0; left: 7%; right: 7%; height: 78px;
  display: grid; place-items: center;
  color: var(--gg610-bronze-light); font-size: 1.6rem;
  clip-path: polygon(50% 0,100% 72%,94% 100%,6% 100%,0 72%);
  background: linear-gradient(#2a261f,#12110f);
  border-bottom: 1px solid var(--gg610-bronze);
}
.gg610-door-frame {
  height: 420px; padding: 26px 28px 0; perspective: 1000px;
  border: 1px solid rgba(208,174,121,.3);
  border-bottom: 7px solid #241f19;
  background:
    linear-gradient(90deg, #0b0a09 0 7%, #2b261f 7% 13%, #0b0a09 13% 87%, #2b261f 87% 93%, #0b0a09 93%),
    #0d0c0b;
  box-shadow: inset 0 0 55px #000, 0 26px 42px rgba(0,0,0,.38);
}
.gg610-door-panel {
  width: 72%; height: 100%; margin: 0 auto; position: relative; transform-origin: left center;
  border: 1px solid #735c3d;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025), transparent 20% 80%, rgba(255,255,255,.025)),
    repeating-linear-gradient(0deg, transparent 0 24%, rgba(167,123,69,.14) 24% 25%),
    linear-gradient(90deg, #17130f, #2a2119 50%, #14110e);
  box-shadow: inset 0 0 35px #000;
  transition: transform 1s ease, filter .6s ease;
}
.gg610-door-symbol { position: absolute; top: 76px; left: 0; right: 0; color: var(--gg610-bronze-light); font-size: 2rem; }
.gg610-door-knocker { position: absolute; top: 208px; left: 50%; width: 40px; height: 52px; transform: translateX(-50%); border: 5px solid var(--gg610-bronze); border-radius: 50%; }
.gg610-ceremonial-door.is-struck .gg610-door-knocker { animation: gg610-knocker .34s ease; }
.gg610-ceremonial-door.is-opening .gg610-door-panel { transform: rotateY(-68deg); filter: brightness(1.18); }
.gg610-ceremonial-door.is-opening .gg610-door-frame { box-shadow: inset 45px 0 80px rgba(238,211,161,.17), 0 26px 42px rgba(0,0,0,.38); }
@keyframes gg610-knocker { 0%,100% { transform: translateX(-50%) rotate(0); } 50% { transform: translateX(-50%) rotate(-18deg); } }
.gg610-knock-sequence { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
.gg610-knock-sequence span { color: #817a71; font-family: Arial, sans-serif; transition: color .25s, transform .25s; }
.gg610-knock-sequence b { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 8px; border: 1px solid rgba(208,174,121,.3); border-radius: 50%; font: 500 1.25rem Georgia, serif; }
.gg610-knock-sequence small { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .07em; }
.gg610-knock-sequence span.is-active { color: var(--gg610-bronze-light); transform: translateY(-2px); }
.gg610-knock-sequence span.is-active b { border-color: var(--gg610-burgundy-light); box-shadow: 0 0 0 4px rgba(102,50,56,.12); }
.gg610-knock-status { min-height: 24px; margin-top: 14px; color: var(--gg610-bronze-light); font-style: italic; }

/* FORMULARIO PÚBLICO */
.gg610-application-modal {
  position: fixed; inset: 0; z-index: 99999;
  display: grid; place-items: center; padding: 18px;
  background: rgba(0,0,0,.82); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .18s ease;
}
.gg610-application-modal.is-open { opacity: 1; }
.gg610-application-dialog {
  width: min(1080px, 100%); max-height: 92vh; overflow: auto;
  border: 1px solid var(--gg610-border);
  background: linear-gradient(145deg,#171512,#0c0b0a);
  box-shadow: var(--gg610-shadow);
}
.gg610-application-dialog > header { position: sticky; top: 0; z-index: 4; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px clamp(20px,4vw,42px); border-bottom: 1px solid var(--gg610-border); background: rgba(15,14,12,.97); backdrop-filter: blur(8px); }
.gg610-application-dialog h2 { margin: 0; font-size: clamp(1.7rem,4vw,2.8rem); font-weight: 500; }
.gg610-application-dialog header button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: transparent; color: var(--gg610-ivory); font-size: 1.7rem; cursor: pointer; }
.gg610-application-form { padding: clamp(22px,4vw,44px); font-family: Arial, sans-serif; }
.gg610-form-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 17px; }
.gg610-span-2 { grid-column: span 2; }
.gg610-application-form textarea { resize: vertical; min-height: 145px; }
.gg610-application-form fieldset { margin: 0; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; }
.gg610-application-form legend { padding: 0 6px; color: #ddd4c8; font-size: .82rem; font-weight: 700; }
.gg610-application-form fieldset label { display: inline-flex; align-items: center; gap: 7px; margin: 7px 18px 2px 0; color: var(--gg610-muted); font-size: .86rem; }
.gg610-application-form fieldset input { width: auto; }
.gg610-consent { display: flex !important; align-items: flex-start; gap: 10px; margin-top: 22px; color: var(--gg610-muted); font-size: .82rem; line-height: 1.55; }
.gg610-consent input { width: auto; margin-top: 4px; }
.gg610-consent span { margin: 0 !important; color: inherit !important; font-weight: 400 !important; }
.gg610-form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 25px; }
.gg610-form-cancel { border: 1px solid rgba(255,255,255,.18); border-radius: 6px; background: transparent; color: var(--gg610-muted); padding: 13px 18px; cursor: pointer; }
.gg610-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

/* PANEL PRIVADO */
.gg610-app { min-height: 100vh; display: grid; grid-template-columns: 290px minmax(0,1fr); background: var(--gg610-bg); color: var(--gg610-ivory); font-family: Arial, sans-serif; }
.gg610-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 25px 20px; border-right: 1px solid var(--gg610-border); background: linear-gradient(180deg,#171512,#090908); z-index: 10; }
.gg610-brand { display: flex; align-items: center; gap: 12px; }
.gg610-brand-logo { width: 48px; height: 48px; object-fit: contain; }
.gg610-brand strong,.gg610-brand small { display: block; }
.gg610-brand strong { font-family: Georgia,serif; font-size: 1rem; }
.gg610-brand small { margin-top: 4px; color: var(--gg610-muted); font-size: .72rem; }
.gg610-nav { display: grid; gap: 7px; margin-top: 35px; }
.gg610-nav button,.gg610-nav-external { width: 100%; border: 1px solid transparent; border-radius: 6px; background: transparent; color: var(--gg610-muted); padding: 11px 13px; text-align: left; cursor: pointer; text-decoration: none; font-size: .9rem; }
.gg610-nav button:hover,.gg610-nav button.is-active,.gg610-nav-external:hover { color: var(--gg610-bronze-light); background: rgba(167,123,69,.09); border-color: var(--gg610-border); }
.gg610-nav-external { display: flex; justify-content: space-between; align-items: center; }
.gg610-nav-divider { margin-top: 13px; padding: 9px 13px 3px; color: #746e66; text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; }
.gg610-userbox { margin-top: auto; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 7px; background: rgba(255,255,255,.025); }
.gg610-userbox span,.gg610-userbox small,.gg610-userbox a { display: block; }
.gg610-userbox small { color: var(--gg610-muted); margin: 4px 0 12px; }
.gg610-userbox a { color: var(--gg610-bronze-light); text-decoration: none; font-size: .84rem; }
.gg610-content { min-width: 0; padding: clamp(26px,5vw,72px); }
.gg610-mobile-header { display: none; }
.gg610-section { display: none; max-width: 1240px; margin: 0 auto; animation: gg610-fade .5s ease both; }
.gg610-section.is-active { display: block; }
@keyframes gg610-fade { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:none; } }
.gg610-hero { min-height: 420px; display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,6vw,80px); border: 1px solid var(--gg610-border); border-radius: 10px; background: radial-gradient(circle at 82% 26%,rgba(102,50,56,.24),transparent 32%),linear-gradient(135deg,#1a1815,#0b0a09); box-shadow: var(--gg610-shadow); }
.gg610-hero h1,.gg610-section-heading h1 { font-family: Georgia,serif; font-weight: 500; line-height: 1.05; margin: 0; }
.gg610-hero h1 { font-size: clamp(2.5rem,7vw,5.8rem); max-width: 850px; }
.gg610-hero > p:not(.gg610-kicker) { max-width: 720px; color: var(--gg610-muted); font-size: 1.06rem; line-height: 1.7; }
.gg610-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.gg610-hero-actions .gg610-secondary { color: var(--gg610-ivory); background: transparent; border-color: rgba(255,255,255,.18); }
.gg610-card-grid { display: grid; gap: 18px; margin-top: 24px; }
.gg610-card-grid--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.gg610-card-grid--four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.gg610-card-grid--notes { grid-template-columns: repeat(3,minmax(0,1fr)); }
.gg610-info-card,.gg610-symbol-card,.gg610-note-card,.gg610-empty { padding: 25px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: var(--gg610-panel); }
.gg610-info-card span { color: var(--gg610-bronze-light); font-weight: 800; }
.gg610-info-card h2,.gg610-symbol-card strong,.gg610-note-card h2 { font-family: Georgia,serif; }
.gg610-info-card p,.gg610-symbol-card p,.gg610-note-card p,.gg610-empty p { color: var(--gg610-muted); line-height: 1.6; }
.gg610-section-heading { margin-bottom: 34px; }
.gg610-section-heading h1 { font-size: clamp(2.5rem,6vw,5.2rem); }
.gg610-section-heading > p:last-child { color: var(--gg610-muted); max-width: 720px; line-height: 1.7; }
.gg610-prose { font-family: Georgia,serif; font-size: clamp(1.08rem,2vw,1.35rem); line-height: 1.85; color: #d9d4ca; max-width: 950px; }
.gg610-prose blockquote { margin: 30px 0; border-left: 3px solid var(--gg610-bronze); padding: 18px 24px; background: rgba(167,123,69,.07); color: var(--gg610-bronze-light); }
.gg610-symbol-card { min-height: 170px; }
.gg610-symbol-card strong { color: var(--gg610-bronze-light); font-size: 1.5rem; }
.gg610-history-layout { display: grid; grid-template-columns: 210px 1fr; gap: clamp(26px,6vw,80px); align-items: start; }
.gg610-history-mark { position: sticky; top: 50px; border: 1px solid var(--gg610-border); border-radius: 8px; padding: 35px 20px; text-align: center; font: 3.5rem/1 Georgia,serif; color: var(--gg610-bronze-light); background: var(--gg610-panel); }
.gg610-history-mark span { color: var(--gg610-muted); }
.gg610-note-card { display: flex; flex-direction: column; min-height: 290px; }
.gg610-note-card time { color: var(--gg610-bronze-light); font-size: .78rem; }
.gg610-note-card button { margin-top: auto; align-self: flex-start; }
.gg610-library-disclaimer { margin: -18px 0 28px; padding: 13px 16px; border-left: 3px solid var(--gg610-bronze); background: rgba(167,123,69,.07); color: var(--gg610-muted); font-size: .86rem; line-height: 1.55; }
.gg610-library-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.gg610-book-card { display: grid; grid-template-columns: 145px minmax(0,1fr); gap: 22px; min-height: 285px; padding: 20px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: var(--gg610-panel); transition: transform .22s,border-color .22s,box-shadow .22s; }
.gg610-book-card:hover { transform: translateY(-3px); border-color: var(--gg610-border); box-shadow: 0 20px 45px rgba(0,0,0,.25); }
.gg610-book-cover { aspect-ratio: .68; align-self: start; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 16px; border: 1px solid var(--gg610-bronze); border-radius: 3px 8px 8px 3px; background: linear-gradient(145deg,#5b3034,#18110f); box-shadow: 10px 12px 0 rgba(0,0,0,.22); }
.gg610-book-cover.has-image { padding: 0; border-color: rgba(255,255,255,.14); background: #080807; }
.gg610-book-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }
.gg610-book-cover span { font: 1rem/1.25 Georgia,serif; color: var(--gg610-ivory); overflow-wrap: anywhere; }
.gg610-book-cover small { color: var(--gg610-bronze-light); font-size: .68rem; line-height: 1.25; }
.gg610-book-info { min-width: 0; display: flex; flex-direction: column; }
.gg610-book-info > small { color: var(--gg610-bronze-light); text-transform: uppercase; letter-spacing: .04em; font-size: .72rem; }
.gg610-book-info h2 { margin: 9px 0; font: 1.45rem/1.2 Georgia,serif; }
.gg610-book-info p { margin: 0 0 18px; color: var(--gg610-muted); line-height: 1.55; }
.gg610-book-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; }
.gg610-book-link { min-height: 42px; padding: 10px 13px !important; font-size: .78rem; line-height: 1.2; text-align: center; letter-spacing: .02em; }
.gg610-book-link--read { border-color: rgba(255,255,255,.2) !important; background: transparent !important; color: var(--gg610-ivory) !important; }
.gg610-book-link--amazon::before { content: '↗'; font-weight: 400; }
.gg610-book-link--read::before { content: '▤'; font-weight: 400; }
.gg610-book-pending { align-self: center; color: #77716a; font-size: .8rem; }
.gg610-submission-form { display: grid; gap: 18px; max-width: 850px; padding: clamp(22px,5vw,42px); border: 1px solid var(--gg610-border); border-radius: 8px; background: var(--gg610-panel); }
.gg610-submission-form textarea { resize: vertical; min-height: 230px; }
.gg610-submission-form button { justify-self: start; }
.gg610-modal[hidden] { display: none; }
.gg610-modal { position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center; padding: 18px; background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.gg610-modal-dialog { width: min(1100px,100%); height: min(88vh,900px); display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--gg610-border); border-radius: 8px; overflow: hidden; background: #0b0a09; box-shadow: var(--gg610-shadow); }
.gg610-modal-dialog header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.gg610-modal-dialog h2 { margin: 0; font: 1.1rem Georgia,serif; }
.gg610-modal-dialog header button { width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 1.7rem; cursor: pointer; }
.gg610-modal-content { min-height: 0; overflow: auto; }
.gg610-pdf-frame { width: 100%; height: 100%; border: 0; background: #fff; }
.gg610-note-reader { max-width: 850px; margin: 0 auto; padding: clamp(28px,6vw,70px); font: 1.15rem/1.85 Georgia,serif; color: #e7e1d7; }

@media (max-width: 1050px) {
  .gg610-login-layout { grid-template-columns: 1fr; }
  .gg610-ceremonial-door { width: min(480px,100%); }
  .gg610-app { grid-template-columns: 1fr; }
  .gg610-sidebar { position: static; height: auto; padding: 0; border: 0; background: transparent; }
  .gg610-sidebar > .gg610-brand,.gg610-sidebar > .gg610-userbox { display: none; }
  .gg610-nav { display: none; position: fixed; inset: 72px 14px auto 14px; z-index: 100; margin: 0; padding: 14px; max-height: calc(100vh - 90px); overflow: auto; border: 1px solid var(--gg610-border); border-radius: 8px; background: #11100e; box-shadow: var(--gg610-shadow); }
  .gg610-nav.is-open { display: grid; }
  .gg610-mobile-header { display: flex; position: sticky; top: 0; z-index: 90; justify-content: space-between; align-items: center; margin: calc(clamp(26px,5vw,72px) * -1); margin-bottom: 40px; padding: 12px 20px; border-bottom: 1px solid var(--gg610-border); background: rgba(9,9,8,.95); backdrop-filter: blur(12px); }
  .gg610-menu-toggle { border: 1px solid var(--gg610-border); border-radius: 6px; background: transparent; color: var(--gg610-bronze-light); padding: 8px 12px; }
  .gg610-card-grid--four { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gg610-card-grid--notes { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gg610-library-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .gg610-temple-columns { display: none; }
  .gg610-gateway { padding: 12px; }
  .gg610-intro-panel { padding: 24px 10px; }
  .gg610-login-stage { padding: 20px 15px; }
  .gg610-login-identity { align-items: flex-start; }
  .gg610-login-identity img { width: 72px; height: 72px; }
  .gg610-ceremonial-door { padding-inline: 6px; }
  .gg610-door-frame { height: 340px; padding-inline: 20px; }
  .gg610-door-knocker { top: 168px; }
  .gg610-form-grid { grid-template-columns: 1fr; }
  .gg610-span-2 { grid-column: auto; }
  .gg610-application-dialog > header { align-items: flex-start; }
  .gg610-form-actions { flex-direction: column-reverse; }
  .gg610-form-actions button { width: 100%; }
  .gg610-content { padding: 22px 16px 40px; }
  .gg610-mobile-header { margin: -22px -16px 30px; }
  .gg610-card-grid--three,.gg610-card-grid--four,.gg610-card-grid--notes { grid-template-columns: 1fr; }
  .gg610-history-layout { grid-template-columns: 1fr; }
  .gg610-history-mark { position: static; }
  .gg610-book-card { grid-template-columns: 105px minmax(0,1fr); gap: 16px; min-height: 0; padding: 15px; }
  .gg610-book-link { flex: 1 1 140px; }
  .gg610-book-info h2 { font-size: 1.15rem; }
  .gg610-book-info p { font-size: .9rem; }
  .gg610-hero { min-height: 500px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.gg610-door-scene {
  position: relative;
  z-index: 2;
  width: min(620px,100%);
  padding: clamp(28px,5vw,54px);
  text-align: center;
  border: 1px solid var(--gg610-border);
  background: linear-gradient(145deg,rgba(23,21,18,.97),rgba(9,9,8,.98));
  box-shadow: var(--gg610-shadow);
}
.gg610-door-scene h1 { margin: 0; font-size: clamp(2rem,5vw,3.8rem); font-weight: 500; }
.gg610-primary-link { margin-top: 12px; }

/* --- Ajustes v0.3.1 --- */
.gg610-gateway {
  place-items: start center;
  padding-top: clamp(10px, 1.4vw, 22px);
  padding-bottom: clamp(22px, 3vw, 38px);
}
.gg610-intro-panel,
.gg610-login-stage {
  width: min(1220px, 100%);
}
.gg610-intro-panel {
  max-width: 1220px;
  padding: clamp(10px, 1.8vw, 22px) 0 0;
}
.gg610-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.gg610-intro-copy { text-align: left; }
.gg610-intro-copy .gg610-lead,
.gg610-intro-copy .gg610-threshold-text { margin-left: 0; margin-right: 0; }
.gg610-intro-copy .gg610-approach-button { margin-top: 24px; }
.gg610-intro-logo { width: clamp(140px, 18vw, 210px); }
.gg610-temple-columns span { display: flex; align-items: center; justify-content: center; }
.gg610-temple-columns span i {
  font: 700 clamp(2.3rem, 4.6vw, 4rem)/1 Georgia, serif;
  color: rgba(208,174,121,.82);
  text-shadow: 0 0 22px rgba(0,0,0,.55);
  opacity: .9;
}
.gg610-intro-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: end center;
  padding: 20px 22px 0;
  border: 1px solid rgba(208,174,121,.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 12%, rgba(208,174,121,.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 20%),
    linear-gradient(145deg, rgba(24,22,19,.96), rgba(8,8,7,.98));
  box-shadow: var(--gg610-shadow);
  overflow: hidden;
}
.gg610-intro-visual::before {
  content: '';
  position: absolute;
  inset: auto 7% 0;
  height: 28%;
  background: radial-gradient(ellipse at center, rgba(208,174,121,.14), transparent 68%);
  filter: blur(8px);
}
.gg610-mini-temple {
  position: relative;
  width: min(430px, 100%);
  height: 390px;
  padding-top: 76px;
}
.gg610-mini-pediment {
  position: absolute;
  inset: 0 10% auto;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--gg610-bronze-light);
  font: 500 1.9rem/1 Georgia, serif;
  clip-path: polygon(50% 0, 100% 72%, 94% 100%, 6% 100%, 0 72%);
  background: linear-gradient(180deg, #443526, #171411);
  border-bottom: 1px solid rgba(208,174,121,.45);
  box-shadow: 0 18px 32px rgba(0,0,0,.38);
}
.gg610-mini-columns { position: absolute; inset: 62px 10% 0; }
.gg610-mini-columns span {
  position: absolute;
  top: 0; bottom: 0; width: 58px;
  border: 1px solid rgba(208,174,121,.26);
  background: linear-gradient(90deg, #0c0b09, #312820 45%, #0b0a09);
  box-shadow: inset 0 0 32px rgba(0,0,0,.7);
}
.gg610-mini-columns span::before,
.gg610-mini-columns span::after {
  content: '';
  position: absolute;
  left: -16%; width: 132%; height: 18px;
  border: 1px solid rgba(208,174,121,.22);
  background: linear-gradient(180deg, #30261e, #0b0a09);
}
.gg610-mini-columns span::before { top: -16px; }
.gg610-mini-columns span::after { bottom: -16px; }
.gg610-mini-columns span:first-child { left: 0; }
.gg610-mini-columns span:last-child { right: 0; }
.gg610-mini-doors {
  position: absolute;
  left: 21%; right: 21%; bottom: 0; top: 108px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 18px 18px 0;
  border: 1px solid rgba(208,174,121,.3);
  background: linear-gradient(180deg, #12100e, #090908);
  box-shadow: inset 0 0 48px rgba(0,0,0,.86);
}
.gg610-mini-doors span {
  border: 1px solid rgba(208,174,121,.28);
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 12% 88%, rgba(255,255,255,.04)),
    linear-gradient(180deg, #221b15, #100d0a 52%, #1f1812);
  box-shadow: inset 0 0 26px rgba(0,0,0,.76);
}
.gg610-mini-doors span::before,
.gg610-mini-doors span::after {
  content: '';
  position: absolute;
  inset: 16% 17% auto;
  height: 32%;
  border: 1px solid rgba(208,174,121,.16);
}
.gg610-mini-doors span::after { inset: auto 17% 16%; }
.gg610-mini-guard {
  position: absolute;
  bottom: 20px;
  width: 72px;
  height: 210px;
  border-radius: 999px 999px 10px 10px;
  background:
    radial-gradient(circle at 50% 15%, #cfc9bf 0 10px, transparent 11px),
    linear-gradient(180deg, transparent 0 13%, #0d0d0d 13% 65%, #111 65% 100%);
  box-shadow: inset 0 18px 20px rgba(255,255,255,.04), 0 16px 26px rgba(0,0,0,.36);
  opacity: .86;
}
.gg610-mini-guard::before,
.gg610-mini-guard::after,
.gg610-guard::before,
.gg610-guard::after {
  content: '';
  position: absolute;
  background: #0b0b0b;
}
.gg610-mini-guard::before,
.gg610-guard::before { width: 16px; height: 90px; bottom: 58px; }
.gg610-mini-guard::after,
.gg610-guard::after { width: 14px; height: 84px; bottom: 0; border-radius: 8px; }
.gg610-mini-guard--left,
.gg610-guard--left { left: 26px; }
.gg610-mini-guard--right,
.gg610-guard--right { right: 26px; }
.gg610-mini-guard--left::before,
.gg610-mini-guard--left::after,
.gg610-guard--left::before,
.gg610-guard--left::after { left: 4px; transform: rotate(12deg); }
.gg610-mini-guard--right::before,
.gg610-mini-guard--right::after,
.gg610-guard--right::before,
.gg610-guard--right::after { right: 4px; transform: rotate(-12deg); }

.gg610-login-stage { margin-top: 8px; }
.gg610-ceremonial-door {
  max-width: 560px;
  padding: 64px 22px 0;
}
.gg610-guard {
  position: absolute;
  bottom: 110px;
  width: 92px;
  height: 248px;
  border-radius: 999px 999px 12px 12px;
  background:
    radial-gradient(circle at 50% 14%, #d7d0c4 0 13px, transparent 14px),
    linear-gradient(180deg, transparent 0 14%, #0c0c0c 14% 66%, #111 66% 100%);
  opacity: .96;
  box-shadow: 0 22px 32px rgba(0,0,0,.45);
}
.gg610-door-frame {
  position: relative;
  height: 454px;
  padding: 28px 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  perspective: 1200px;
  border: 1px solid rgba(208,174,121,.34);
  border-bottom: 8px solid #241f19;
  background:
    linear-gradient(90deg, #0b0a09 0 6%, #2e261e 6% 11%, #0b0a09 11% 89%, #2e261e 89% 94%, #0b0a09 94%),
    linear-gradient(180deg, #181511, #090908);
}
.gg610-door-light {
  position: absolute;
  inset: 24px 23% 18px;
  background: radial-gradient(ellipse at center, rgba(242,223,183,.28), rgba(242,223,183,.12) 30%, rgba(0,0,0,0) 70%);
  filter: blur(6px);
  opacity: 0;
  transition: opacity .6s ease;
}
.gg610-door-leaf {
  position: relative;
  transform-origin: center;
  border: 1px solid #7b6241;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 10% 90%, rgba(255,255,255,.04)),
    repeating-linear-gradient(0deg, transparent 0 22%, rgba(167,123,69,.09) 22% 23%),
    linear-gradient(180deg, #231c15, #120f0c 46%, #1f1913);
  box-shadow: inset 0 0 42px rgba(0,0,0,.88);
  transition: transform 1.08s ease, filter .58s ease, box-shadow .58s ease;
  overflow: hidden;
}
.gg610-door-leaf::before,
.gg610-door-leaf::after {
  content: '';
  position: absolute;
  left: 15%; right: 15%;
  border: 1px solid rgba(208,174,121,.18);
  height: 30%;
}
.gg610-door-leaf::before { top: 12%; }
.gg610-door-leaf::after { bottom: 12%; }
.gg610-door-leaf--left { transform-origin: left center; }
.gg610-door-leaf--right { transform-origin: right center; }
.gg610-door-symbol {
  position: absolute;
  top: 74px;
  left: 0; right: 0;
  color: rgba(208,174,121,.85);
  font-size: 1.95rem;
  text-shadow: 0 0 16px rgba(0,0,0,.45);
}
.gg610-door-panel-detail {
  position: absolute;
  inset: 50% 28% auto;
  height: 1px;
  background: rgba(208,174,121,.14);
}
.gg610-door-knocker {
  position: absolute;
  top: 222px;
  left: 50%;
  width: 42px;
  height: 56px;
  transform: translateX(-50%);
  border: 5px solid var(--gg610-bronze);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.45);
}
.gg610-door-knocker::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 8px; height: 15px;
  border-radius: 99px;
  background: var(--gg610-bronze);
  transform: translateX(-50%);
}
.gg610-ceremonial-door.is-struck .gg610-door-knocker { animation: gg610-knocker .34s ease; }
.gg610-ceremonial-door.is-opening .gg610-door-light { opacity: 1; }
.gg610-ceremonial-door.is-opening .gg610-door-leaf--left { transform: rotateY(-74deg); filter: brightness(1.18); }
.gg610-ceremonial-door.is-opening .gg610-door-leaf--right { transform: rotateY(74deg); filter: brightness(1.16); }
.gg610-ceremonial-door.is-opening .gg610-door-frame { box-shadow: inset 0 0 0 999px rgba(0,0,0,.08), inset 0 0 90px rgba(241,223,184,.12), 0 26px 42px rgba(0,0,0,.38); }
.gg610-knock-sequence { margin-top: 24px; }
.gg610-knock-sequence span.is-active b { border-color: var(--gg610-bronze-light); box-shadow: 0 0 0 4px rgba(167,123,69,.14); }

.gg610-hero {
  min-height: 460px;
  background:
    radial-gradient(circle at 78% 24%, rgba(167,123,69,.12), transparent 23%),
    radial-gradient(circle at 22% 12%, rgba(102,50,56,.18), transparent 30%),
    linear-gradient(135deg,#1a1815,#0b0a09);
}
.gg610-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .84fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.gg610-hero-visual {
  display: grid;
  gap: 14px;
}
.gg610-visual-card,
.gg610-image-tile {
  position: relative;
  min-height: 120px;
  padding: 18px 20px;
  border: 1px solid rgba(208,174,121,.18);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(23,21,18,.96), rgba(9,9,8,.98));
  box-shadow: 0 16px 30px rgba(0,0,0,.24);
}
.gg610-visual-card::before,
.gg610-image-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(208,174,121,.18), transparent 22%),
    linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,.03) 45% 52%, transparent 52% 100%);
}
.gg610-visual-card::after,
.gg610-image-tile::after {
  content: 'G';
  position: absolute;
  right: 14px;
  bottom: 6px;
  font: 700 3rem/1 Georgia, serif;
  color: rgba(208,174,121,.12);
}
.gg610-visual-card span,
.gg610-image-tile span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--gg610-bronze-light);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
}
.gg610-visual-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  font: 500 1.2rem/1.35 Georgia, serif;
  color: var(--gg610-ivory);
}
.gg610-visual-card--temple { min-height: 160px; }
.gg610-visual-card--library::before { background: radial-gradient(circle at 80% 18%, rgba(102,50,56,.22), transparent 24%), linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,.03) 45% 52%, transparent 52% 100%); }
.gg610-visual-card--fraternity::before { background: radial-gradient(circle at 80% 18%, rgba(208,174,121,.22), transparent 24%), linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,.03) 45% 52%, transparent 52% 100%); }
.gg610-image-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 22px;
}
.gg610-image-tile { min-height: 168px; display: flex; align-items: end; }
.gg610-image-tile--oriente::before { background: radial-gradient(circle at 20% 18%, rgba(208,174,121,.18), transparent 24%), linear-gradient(180deg, rgba(255,255,255,.02), transparent 18%), linear-gradient(145deg, transparent 0 38%, rgba(255,255,255,.03) 38% 46%, transparent 46% 100%); }
.gg610-image-tile--archivo::before { background: radial-gradient(circle at 75% 22%, rgba(102,50,56,.22), transparent 24%), linear-gradient(145deg, transparent 0 38%, rgba(255,255,255,.03) 38% 46%, transparent 46% 100%); }
.gg610-image-tile--biblioteca::before { background: radial-gradient(circle at 75% 22%, rgba(208,174,121,.15), transparent 24%), linear-gradient(145deg, transparent 0 38%, rgba(255,255,255,.03) 38% 46%, transparent 46% 100%); }

.gg610-book-card { grid-template-columns: 158px minmax(0,1fr); }
.gg610-book-cover { min-height: 216px; }
.gg610-book-actions { gap: 8px; }
.gg610-book-link--review {
  background: rgba(208,174,121,.08) !important;
  border-color: rgba(208,174,121,.35) !important;
  color: var(--gg610-bronze-light) !important;
}
.gg610-book-link--review::before { content: '≣'; font-weight: 400; }

@media (max-width: 1050px) {
  .gg610-intro-layout,
  .gg610-hero-layout { grid-template-columns: 1fr; }
  .gg610-intro-copy { text-align: center; }
  .gg610-intro-copy .gg610-lead,
  .gg610-intro-copy .gg610-threshold-text { margin-left: auto; margin-right: auto; }
  .gg610-approach-button { margin-left: auto; margin-right: auto; }
  .gg610-intro-visual { min-height: 360px; }
  .gg610-mini-temple { height: 310px; }
  .gg610-mini-guard { height: 180px; }
  .gg610-guard { display: none; }
  .gg610-image-band { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .gg610-gateway { padding-top: 8px; }
  .gg610-intro-panel { padding-top: 0; }
  .gg610-intro-logo { width: 120px; }
  .gg610-intro-visual { min-height: 280px; padding: 10px 10px 0; }
  .gg610-mini-temple { height: 250px; padding-top: 54px; }
  .gg610-mini-pediment { height: 64px; font-size: 1.4rem; }
  .gg610-mini-columns span { width: 42px; }
  .gg610-mini-doors { top: 78px; left: 18%; right: 18%; }
  .gg610-ceremonial-door { padding-inline: 0; }
  .gg610-door-frame { height: 360px; padding: 18px 16px 0; }
  .gg610-door-knocker { top: 172px; }
  .gg610-book-card { grid-template-columns: 105px minmax(0,1fr); }
}

/* --- Ajustes v0.3.2 --- */
.gg610-door-side-info {
  position: absolute;
  top: 136px;
  left: -8px;
  z-index: 3;
  max-width: 160px;
}
.gg610-info-button {
  border: 1px solid rgba(208,174,121,.4);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(167,123,69,.18), rgba(13,13,12,.9));
  color: var(--gg610-ivory);
  padding: 12px 16px;
  font: 700 .77rem/1.4 Arial, sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.gg610-info-button:hover { transform: translateY(-2px); filter: brightness(1.05); border-color: var(--gg610-bronze-light); }

.gg610-info-modal {
  position: fixed; inset: 0; z-index: 99998;
  display: grid; place-items: center; padding: 18px;
  background: rgba(0,0,0,.82); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .18s ease;
}
.gg610-info-modal.is-open { opacity: 1; }
.gg610-info-dialog {
  width: min(1120px, 100%);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid var(--gg610-border);
  background: linear-gradient(145deg,#171512,#0c0b0a);
  box-shadow: var(--gg610-shadow);
}
.gg610-info-dialog > header {
  position: sticky; top: 0; z-index: 4;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px clamp(20px,4vw,42px);
  border-bottom: 1px solid var(--gg610-border);
  background: rgba(15,14,12,.97); backdrop-filter: blur(8px);
}
.gg610-info-dialog h2 { margin: 0; font-size: clamp(1.7rem,4vw,2.6rem); font-weight: 500; }
.gg610-info-dialog header button {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%;
  background: transparent; color: var(--gg610-ivory); font-size: 1.7rem; cursor: pointer;
}
.gg610-info-content { padding: clamp(24px,4vw,44px); }
.gg610-info-hero {
  padding: clamp(20px,4vw,34px);
  border: 1px solid rgba(208,174,121,.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 20%, rgba(167,123,69,.16), transparent 24%),
    linear-gradient(135deg, rgba(28,24,20,.96), rgba(10,10,9,.98));
}
.gg610-info-hero h3 { margin: 8px 0 10px; font: 500 clamp(1.8rem,4vw,3rem)/1.1 Georgia, serif; }
.gg610-info-hero p { margin: 0; color: #ded6c9; line-height: 1.8; }
.gg610-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 22px;
}
.gg610-info-grid article {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: var(--gg610-panel);
}
.gg610-info-grid h4 { margin: 0 0 10px; font: 500 1.32rem/1.2 Georgia, serif; color: var(--gg610-bronze-light); }
.gg610-info-grid p,
.gg610-info-grid li { color: var(--gg610-muted); line-height: 1.7; }
.gg610-info-grid ul { margin: 0; padding-left: 20px; }
.gg610-info-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--gg610-bronze);
  background: rgba(167,123,69,.07);
}
.gg610-info-note p { margin: 0 0 10px; color: #d8d0c3; line-height: 1.7; }
.gg610-info-note a { color: var(--gg610-bronze-light); text-decoration: none; }
.gg610-info-actions {
  display: flex; justify-content: flex-end; gap: 12px; margin-top: 22px;
}

.gg610-hero--temple {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 14%, rgba(208,174,121,.09), transparent 16%),
    linear-gradient(180deg, #15120f 0%, #0b0a09 68%, #090908 100%);
}
.gg610-hero--temple::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.02), transparent 10% 90%, rgba(255,255,255,.02)),
    radial-gradient(circle at 50% 74%, rgba(208,174,121,.12), transparent 18%);
  z-index: -2;
}
.gg610-hero-layout,
.gg610-card-grid,
.gg610-image-band { position: relative; z-index: 2; }
.gg610-hero-temple-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.gg610-hero-column {
  position: absolute;
  top: 0; bottom: 16%; width: 72px;
  border: 1px solid rgba(208,174,121,.14);
  background:
    repeating-linear-gradient(90deg, transparent 0 14%, rgba(255,255,255,.02) 14% 18%, transparent 18% 30%),
    linear-gradient(90deg, #0b0a09, #27211a 46%, #0a0908);
  box-shadow: inset 0 0 32px rgba(0,0,0,.72);
}
.gg610-hero-column::before,
.gg610-hero-column::after {
  content: '';
  position: absolute;
  left: -14%; width: 128%; height: 20px;
  border: 1px solid rgba(208,174,121,.14);
  background: linear-gradient(180deg, #31271f, #0b0a09);
}
.gg610-hero-column::before { top: 0; }
.gg610-hero-column::after { bottom: 0; }
.gg610-hero-column--left { left: 5%; }
.gg610-hero-column--right { right: 5%; }
.gg610-hero-altar {
  position: absolute;
  left: 50%; top: 26%; width: 180px; height: 120px;
  transform: translateX(-50%);
  border: 1px solid rgba(208,174,121,.18);
  background: linear-gradient(180deg, rgba(24,21,18,.94), rgba(10,10,9,.98));
  box-shadow: inset 0 0 34px rgba(0,0,0,.78), 0 14px 26px rgba(0,0,0,.22);
}
.gg610-hero-altar::before {
  content: 'G';
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: rgba(208,174,121,.18);
  font: 700 3rem/1 Georgia, serif;
}
.gg610-hero-floor {
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 34%;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.22)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 18px, rgba(0,0,0,.04) 18px 36px),
    linear-gradient(180deg, #130f0d, #0a0908);
}

@media (max-width: 1050px) {
  .gg610-info-grid { grid-template-columns: 1fr; }
  .gg610-door-side-info { position: static; max-width: none; margin-bottom: 14px; }
  .gg610-hero-column, .gg610-hero-altar { display: none; }
}

@media (max-width: 760px) {
  .gg610-info-actions { flex-direction: column-reverse; }
  .gg610-info-actions button { width: 100%; }
  .gg610-info-content { padding: 20px 16px 24px; }
}

/* --- Ajustes v0.3.3: ingreso limpio, templo y animación --- */
.gg610-gateway {
  min-height: 100svh;
  place-items: center;
  padding: clamp(12px, 2vw, 28px);
}
.gg610-intro-panel {
  width: min(820px, calc(100% - 150px));
  max-width: 820px;
  padding: clamp(18px, 3vw, 34px);
  text-align: center;
  border: 1px solid rgba(208,174,121,.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 8%, rgba(208,174,121,.09), transparent 30%),
    linear-gradient(145deg, rgba(20,18,16,.72), rgba(8,8,7,.76));
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
}
.gg610-intro-logo { width: clamp(125px, 18vw, 190px); }
.gg610-intro-panel h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); }
.gg610-intro-panel .gg610-lead,
.gg610-intro-panel .gg610-threshold-text { margin-left: auto; margin-right: auto; }

.gg610-temple-columns {
  inset: 0;
  overflow: hidden;
}
.gg610-temple-columns .gg610-column {
  top: 0;
  bottom: 0;
  width: clamp(72px, 10vw, 148px);
  opacity: .9;
  border-inline: 1px solid rgba(208,174,121,.24);
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), transparent 18% 82%, rgba(0,0,0,.78)),
    repeating-linear-gradient(90deg,
      #0b0a09 0 7%,
      #28231d 7% 12%,
      #12100d 12% 19%,
      #3b3127 19% 24%,
      #0d0c0a 24% 31%),
    linear-gradient(180deg,#211c16,#0a0908);
  box-shadow:
    inset 18px 0 28px rgba(0,0,0,.72),
    inset -18px 0 28px rgba(0,0,0,.72),
    0 0 38px rgba(0,0,0,.72);
}
.gg610-temple-columns .gg610-column::before,
.gg610-temple-columns .gg610-column::after {
  left: -22%;
  width: 144%;
  height: clamp(54px, 8vh, 86px);
  border: 1px solid rgba(208,174,121,.25);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 18%),
    linear-gradient(180deg,#3b3025,#17130f 46%,#080807);
  box-shadow: inset 0 0 22px rgba(0,0,0,.72);
}
.gg610-temple-columns .gg610-column::before {
  top: 0;
  clip-path: polygon(8% 0,92% 0,100% 42%,88% 100%,12% 100%,0 42%);
}
.gg610-temple-columns .gg610-column::after {
  bottom: 0;
  clip-path: polygon(12% 0,88% 0,100% 58%,92% 100%,8% 100%,0 58%);
}
.gg610-temple-columns .gg610-column--j { left: clamp(10px, 3vw, 52px); }
.gg610-temple-columns .gg610-column--b { right: clamp(10px, 3vw, 52px); }
.gg610-temple-columns .gg610-column i {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(52px, 6vw, 78px);
  height: clamp(52px, 6vw, 78px);
  border: 1px solid rgba(208,174,121,.46);
  border-radius: 50%;
  background: radial-gradient(circle,#2d251d,#0d0b09 72%);
  color: #d6b67f;
  font: 700 clamp(2rem, 3.8vw, 3.2rem)/1 Georgia,serif;
  text-shadow: 0 2px 10px rgba(0,0,0,.9);
  box-shadow: 0 0 0 5px rgba(167,123,69,.08), 0 16px 34px rgba(0,0,0,.45);
}

.gg610-login-stage {
  width: min(1180px, 100%);
  max-height: calc(100svh - 24px);
  overflow: auto;
  padding: clamp(18px, 2.4vw, 34px);
  border-radius: 12px;
}
.gg610-login-layout {
  grid-template-columns: minmax(290px,.78fr) minmax(510px,1.22fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding-top: 24px;
}
.gg610-ceremonial-door {
  max-width: 610px;
  min-height: 575px;
  padding: 78px 30px 0;
}
.gg610-door-pediment {
  left: 10%;
  right: 10%;
  height: 92px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.035),transparent 16%),
    linear-gradient(180deg,#403329,#17130f 68%,#0b0a09);
  box-shadow: 0 16px 28px rgba(0,0,0,.46), inset 0 0 28px rgba(0,0,0,.5);
}
.gg610-door-pediment span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(208,174,121,.42);
  border-radius: 50%;
  background: #13100d;
  color: #d6b67f;
}
.gg610-door-frame {
  height: 450px;
  margin-left: 96px;
  padding: 30px 24px 0;
  gap: 7px;
  border: 1px solid rgba(208,174,121,.42);
  border-bottom: 10px solid #241e18;
  background:
    linear-gradient(90deg,#080807 0 5%,#3b3026 5% 9%,#100d0b 9% 91%,#3b3026 91% 95%,#080807 95%),
    linear-gradient(180deg,#1b1713,#090908);
  box-shadow: inset 0 0 68px rgba(0,0,0,.88), 0 32px 52px rgba(0,0,0,.42);
  transform: translateZ(0);
}
.gg610-door-frame::before,
.gg610-door-frame::after {
  content: '';
  position: absolute;
  top: 8px;
  bottom: -10px;
  width: 22px;
  border: 1px solid rgba(208,174,121,.22);
  background: linear-gradient(90deg,#0b0908,#362b22 48%,#090807);
  box-shadow: inset 0 0 18px rgba(0,0,0,.72);
}
.gg610-door-frame::before { left: -26px; }
.gg610-door-frame::after { right: -26px; }
.gg610-door-leaf {
  border: 1px solid #806642;
  background:
    linear-gradient(90deg,rgba(255,255,255,.045),transparent 10% 90%,rgba(255,255,255,.03)),
    repeating-linear-gradient(0deg,transparent 0 21%,rgba(167,123,69,.11) 21% 22%),
    linear-gradient(180deg,#2b2018,#120e0b 50%,#231a14);
  box-shadow: inset 0 0 48px rgba(0,0,0,.9), inset 0 0 0 4px rgba(167,123,69,.04);
}
.gg610-door-leaf::before,
.gg610-door-leaf::after {
  left: 13%;
  right: 13%;
  border: 1px solid rgba(208,174,121,.22);
  box-shadow: inset 0 0 16px rgba(0,0,0,.55);
}
.gg610-door-symbol { top: 68px; font-size: 2.2rem; }
.gg610-door-knocker {
  top: 216px;
  width: 40px;
  height: 52px;
  border-color: #b28a52;
  box-shadow: inset 0 0 0 2px #302215, 0 5px 12px rgba(0,0,0,.5);
}
.gg610-door-light {
  inset: 20px 16% 10px;
  background: radial-gradient(ellipse at center, rgba(255,225,165,.62), rgba(224,183,110,.22) 28%, rgba(0,0,0,0) 72%);
  filter: blur(10px);
}

.gg610-guard {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  bottom: 108px;
  width: 112px;
  height: 330px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  opacity: 1;
  transform-origin: 50% 100%;
  transition: transform .55s ease, filter .55s ease;
}
.gg610-guard::before,
.gg610-guard::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 122px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(90deg,#070707,#1a1a1a 44%,#050505);
  box-shadow: 0 12px 18px rgba(0,0,0,.42);
}
.gg610-guard::before { left: 23px; transform: rotate(2deg); }
.gg610-guard::after { right: 23px; transform: rotate(-2deg); }
.gg610-guard-head {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 52px;
  height: 62px;
  transform: translateX(-50%);
  border-radius: 48% 48% 46% 46%;
  background:
    radial-gradient(circle at 35% 42%,#6d5544 0 2px,transparent 3px),
    radial-gradient(circle at 65% 42%,#6d5544 0 2px,transparent 3px),
    linear-gradient(180deg,#d7c2ad,#aa8a70 72%,#8b6d59);
  box-shadow: inset 0 -9px 12px rgba(70,42,25,.2), 0 8px 16px rgba(0,0,0,.42);
}
.gg610-guard-head::before {
  content: '';
  position: absolute;
  left: 3px;
  right: 3px;
  top: -8px;
  height: 24px;
  border-radius: 50% 50% 26% 26%;
  background: linear-gradient(180deg,#1b1715,#4a3a31);
}
.gg610-guard-head::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 18px;
  height: 5px;
  transform: translateX(-50%);
  border-bottom: 2px solid rgba(82,49,35,.55);
  border-radius: 50%;
}
.gg610-guard-body {
  position: absolute;
  top: 62px;
  left: 50%;
  width: 92px;
  height: 185px;
  transform: translateX(-50%);
  clip-path: polygon(22% 0,78% 0,100% 100%,0 100%);
  background:
    linear-gradient(90deg,transparent 48%,rgba(200,200,200,.15) 49% 51%,transparent 52%),
    linear-gradient(135deg,#080808,#202020 52%,#070707);
  box-shadow: inset 0 0 24px rgba(0,0,0,.65);
}
.gg610-guard-body::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 96px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0,100% 14%,63% 100%,37% 100%,0 14%);
  background: linear-gradient(180deg,#dedede,#7c7c7c 35%,#161616 38%);
}
.gg610-guard-arm {
  position: absolute;
  left: 76px;
  top: 92px;
  width: 24px;
  height: 138px;
  border-radius: 16px;
  background: linear-gradient(90deg,#080808,#242424 50%,#070707);
  transform: rotate(-12deg);
  transform-origin: top center;
  box-shadow: 0 8px 14px rgba(0,0,0,.32);
}
.gg610-guard-arm::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 24px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 45%;
  background: #b49378;
}
.gg610-door-side-info {
  top: 100px;
  left: -8px;
  max-width: 190px;
  z-index: 5;
}
.gg610-info-button {
  text-align: left;
  line-height: 1.35;
  background: linear-gradient(180deg,rgba(167,123,69,.22),rgba(12,11,10,.96));
}
.gg610-info-button strong { color: #d8ba86; }
.gg610-ceremonial-door.is-struck .gg610-guard { animation: gg610-guard-attend .42s ease; }
.gg610-ceremonial-door.is-opening .gg610-guard {
  transform: translateX(-16px) rotate(-2deg);
  filter: brightness(.82);
}
.gg610-ceremonial-door.is-opening .gg610-door-leaf--left { transform: rotateY(-82deg); }
.gg610-ceremonial-door.is-opening .gg610-door-leaf--right { transform: rotateY(82deg); }
.gg610-ceremonial-door.is-opening .gg610-door-frame { animation: gg610-door-glow 1.1s ease forwards; }
@keyframes gg610-guard-attend {
  0%,100% { transform: translateX(0) rotate(0); }
  45% { transform: translateX(4px) rotate(1.5deg); }
}
@keyframes gg610-door-glow {
  0% { box-shadow: inset 0 0 68px rgba(0,0,0,.88),0 32px 52px rgba(0,0,0,.42); }
  100% { box-shadow: inset 0 0 80px rgba(255,220,155,.18),0 32px 52px rgba(0,0,0,.42),0 0 54px rgba(208,174,121,.15); }
}

.gg610-app { overflow-x: hidden; }
.gg610-hero--temple {
  min-height: 520px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.gg610-hero--temple .gg610-hero-layout { position: relative; z-index: 3; }
.gg610-hero-temple-scene { z-index: 1; opacity: .72; }
.gg610-hero-floor {
  background:
    linear-gradient(180deg,transparent,rgba(0,0,0,.25)),
    repeating-conic-gradient(from 45deg,rgba(238,232,216,.06) 0 25%,rgba(0,0,0,.14) 0 50%) 0 0/58px 58px,
    linear-gradient(180deg,#18130f,#090807);
  transform: perspective(500px) rotateX(54deg);
  transform-origin: bottom center;
  height: 54%;
  bottom: -20%;
}
.gg610-hero-altar {
  top: 17%;
  width: 220px;
  height: 142px;
  border: 1px solid rgba(208,174,121,.25);
  background:
    linear-gradient(180deg,rgba(255,255,255,.025),transparent 18%),
    linear-gradient(145deg,#231d17,#0d0b09);
}

@media (max-width: 1050px) {
  .gg610-intro-panel { width: min(760px, calc(100% - 120px)); }
  .gg610-login-layout { grid-template-columns: 1fr; }
  .gg610-ceremonial-door { width: min(600px,100%); }
  .gg610-door-frame { margin-left: 86px; }
}
@media (max-width: 760px) {
  .gg610-intro-panel { width: 100%; padding: 22px 14px; }
  .gg610-temple-columns { opacity: .38; }
  .gg610-temple-columns .gg610-column { width: 58px; }
  .gg610-temple-columns .gg610-column i { width: 42px; height: 42px; font-size: 1.6rem; }
  .gg610-login-stage { max-height: none; }
  .gg610-ceremonial-door { min-height: 510px; padding: 74px 0 0; }
  .gg610-door-frame { margin-left: 64px; margin-right: 8px; height: 360px; padding: 20px 16px 0; }
  .gg610-guard { transform: scale(.78); transform-origin: left bottom; bottom: 92px; left: 0; }
  .gg610-door-side-info { position: relative; top: auto; left: auto; margin: 0 0 12px 64px; max-width: none; }
  .gg610-info-button { width: calc(100% - 72px); text-align: center; }
  .gg610-door-knocker { top: 170px; }
}
@media (max-width: 760px) {
  .gg610-temple-columns { display: block; }
}

/* --- Experiencia fotorealista v0.4.0 --- */
body.gg610-login-active {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #050606 !important;
}

.gg610-gateway[data-gg610-view="login"] {
  isolation: isolate;
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147482000 !important;
  display: grid;
  width: 100vw !important;
  max-width: none !important;
  height: 100vh !important;
  height: 100svh !important;
  min-height: 100vh !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: clamp(18px, 2.4vw, 38px) !important;
  overflow: hidden;
  place-items: center;
  background: #050606 !important;
}

.gg610-scene {
  position: absolute;
  inset: -2%;
  z-index: -5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 1s ease, filter 1.4s ease, transform 6s ease;
}

.gg610-scene--temple {
  background-image: url("../images/gg610-temple-interior.png");
  filter: saturate(.76) contrast(1.05) brightness(.58);
  opacity: 1;
}

.gg610-scene--entrance {
  background-image: url("../images/gg610-entrance-desktop.png");
  background-position: center center;
  filter: saturate(.75) contrast(1.05) brightness(.62);
  opacity: 0;
}

.gg610-gateway.is-at-door .gg610-scene--temple { opacity: 0; transform: scale(1.08); }
.gg610-gateway.is-at-door .gg610-scene--entrance { opacity: 1; }
.gg610-gateway.is-door-opening .gg610-scene--entrance { filter: saturate(.82) contrast(1.05) brightness(.72); transform: scale(1.055); }

.gg610-scene-vignette {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, transparent 12%, rgba(0,0,0,.12) 52%, rgba(0,0,0,.72) 112%),
    linear-gradient(180deg, rgba(0,0,0,.4), transparent 28%, rgba(0,0,0,.42));
  transition: background .8s ease;
}

.gg610-gateway.is-at-door .gg610-scene-vignette {
  background:
    linear-gradient(90deg, rgba(1,3,4,.58) 0%, rgba(1,3,4,.28) 43%, transparent 66%),
    linear-gradient(180deg, rgba(0,0,0,.24), transparent 45%, rgba(0,0,0,.5));
}

.gg610-gateway .gg610-temple-columns { display: none !important; }
.gg610-gateway .gg610-temple-glow { z-index: -2; opacity: .45; }

.gg610-intro-panel {
  width: min(760px, calc(100vw - 36px)) !important;
  max-width: 760px !important;
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: clamp(30px, 4.8vw, 58px) !important;
  border: 1px solid rgba(208,174,121,.36) !important;
  border-radius: 3px !important;
  background:
    radial-gradient(circle at 50% 0, rgba(208,174,121,.09), transparent 30%),
    linear-gradient(145deg, rgba(8,10,10,.86), rgba(5,7,7,.72)) !important;
  box-shadow: 0 38px 120px rgba(0,0,0,.64), inset 0 0 90px rgba(208,174,121,.025) !important;
  text-align: center !important;
  backdrop-filter: blur(14px);
}

.gg610-intro-logo {
  width: clamp(105px, 10vw, 145px) !important;
  max-height: 145px;
  object-fit: contain;
  filter: drop-shadow(0 13px 25px rgba(0,0,0,.62)) brightness(1.08);
}

.gg610-intro-panel h1 {
  margin: 3px 0 0 !important;
  font-size: clamp(2.35rem, 5.2vw, 4.65rem) !important;
  font-weight: 400 !important;
  line-height: 1.02;
  text-wrap: balance;
}

.gg610-intro-panel .gg610-motto { margin: 22px 0 0; }
.gg610-intro-panel .gg610-lead { margin-top: 17px; color: #c9c2b7; }
.gg610-intro-panel .gg610-threshold-text { margin-top: 9px; color: #e0d8ca; }
.gg610-intro-panel .gg610-approach-button { margin-top: 23px; border-radius: 999px; padding: 15px 28px; }

.gg610-login-stage {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1480px, 100%) !important;
  height: 100% !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.gg610-login-identity {
  width: min(600px, 43vw);
  margin: 0;
  border: 1px solid rgba(208,174,121,.25) !important;
  border-radius: 3px;
  padding: 16px 19px !important;
  gap: 15px !important;
  background: linear-gradient(145deg, rgba(8,10,10,.9), rgba(5,7,7,.72));
  box-shadow: 0 22px 64px rgba(0,0,0,.42);
  backdrop-filter: blur(13px);
}

.gg610-login-identity img { width: 66px !important; height: 66px !important; }
.gg610-login-identity .gg610-kicker { margin: 0 0 4px; font-size: .62rem; }
.gg610-login-identity h1 { font-size: clamp(1.55rem, 2.6vw, 2.5rem) !important; line-height: 1.05; }
.gg610-login-identity p:last-child { margin-top: 6px; font-size: .8rem; line-height: 1.45; }

.gg610-login-layout {
  display: grid !important;
  grid-template-columns: minmax(340px, 43%) minmax(0, 57%) !important;
  gap: clamp(24px, 3vw, 50px) !important;
  min-height: 0;
  padding: clamp(16px, 2vh, 24px) 0 0 !important;
  align-items: center !important;
}

.gg610-login-card {
  width: min(455px, 100%);
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid rgba(208,174,121,.3);
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(8,10,10,.93), rgba(5,7,7,.8));
  box-shadow: 0 32px 100px rgba(0,0,0,.58);
  backdrop-filter: blur(16px);
}

.gg610-login-form input {
  border-color: rgba(242,236,221,.22) !important;
  border-radius: 999px !important;
  padding: 14px 18px !important;
  background: rgba(255,255,255,.045) !important;
}

.gg610-login-form input:focus { border-color: var(--gg610-bronze-light) !important; box-shadow: 0 0 0 3px rgba(208,174,121,.11); }
.gg610-knock-button,
.gg610-request-button { border-radius: 999px !important; min-height: 49px; }

.gg610-ceremonial-door {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: min(64svh, 630px) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gg610-guard,
.gg610-door-pediment,
.gg610-door-frame { display: none !important; }

.gg610-ceremonial-door::before {
  position: absolute;
  top: 12%;
  bottom: 16%;
  left: 50%;
  width: 2px;
  opacity: 0;
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #fff5cf, rgba(229,184,99,.82) 50%, transparent);
  filter: blur(3px);
  box-shadow: 0 0 38px 15px rgba(232,190,94,.42);
  content: "";
  transform: translateX(-50%);
  transition: width 1.1s ease, opacity .35s ease;
}

.gg610-ceremonial-door.is-opening::before { width: min(42%, 360px); opacity: .84; }

.gg610-door-side-info {
  position: absolute !important;
  top: auto !important;
  right: 7% !important;
  bottom: 25% !important;
  left: auto !important;
  z-index: 8;
  width: min(210px, 34%);
  max-width: none !important;
  margin: 0 !important;
}

.gg610-info-button {
  width: 100% !important;
  border: 1px solid rgba(225,197,137,.72) !important;
  border-radius: 999px !important;
  padding: 13px 19px !important;
  background: rgba(5,8,8,.82) !important;
  color: #f2eadc !important;
  box-shadow: 0 16px 45px rgba(0,0,0,.48) !important;
  font: 700 .72rem/1.2 Arial, sans-serif !important;
  letter-spacing: .15em;
  text-align: center !important;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gg610-ask-menu {
  display: grid;
  gap: 7px;
  margin-top: 9px;
  padding: 9px;
  border: 1px solid rgba(208,174,121,.32);
  border-radius: 12px;
  background: rgba(5,8,8,.9);
  box-shadow: 0 18px 48px rgba(0,0,0,.52);
  backdrop-filter: blur(14px);
}

.gg610-ask-menu[hidden] { display: none !important; }
.gg610-ask-menu button {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  padding: 10px 12px;
  background: rgba(255,255,255,.035);
  color: #ded6c8;
  cursor: pointer;
  font: .76rem/1.25 Arial, sans-serif;
}
.gg610-ask-menu button:hover { border-color: rgba(208,174,121,.62); color: white; }

.gg610-knock-sequence {
  position: absolute !important;
  right: 6% !important;
  bottom: 12px !important;
  left: 6% !important;
  z-index: 5;
  margin: 0 !important;
  padding: 10px 14px;
  border: 1px solid rgba(208,174,121,.16);
  border-radius: 14px;
  background: rgba(5,8,8,.64);
  backdrop-filter: blur(10px);
}

.gg610-knock-sequence b { width: 38px !important; height: 38px !important; margin-bottom: 5px !important; }
.gg610-knock-status { position: absolute; right: 10%; bottom: 88px; left: 10%; margin: 0 !important; text-align: center; text-shadow: 0 2px 12px #000; }
.gg610-back-button { margin: 8px 0 0 !important; justify-self: start; padding: 5px 8px; }

.gg610-info-dialog,
.gg610-application-dialog {
  border-color: rgba(208,174,121,.38) !important;
  border-radius: 4px !important;
  background: linear-gradient(145deg, rgba(16,17,16,.98), rgba(7,9,9,.99)) !important;
  box-shadow: 0 38px 120px rgba(0,0,0,.7) !important;
}

/* Interior privado */
.gg610-app { isolation: isolate; position: relative; background: #080a0a !important; }
.gg610-app::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(3,5,5,.88), rgba(3,5,5,.92)),
    url("../images/gg610-temple-interior.png") center/cover no-repeat;
  content: "";
}

.gg610-sidebar { background: linear-gradient(180deg, rgba(15,16,15,.94), rgba(6,8,8,.96)) !important; backdrop-filter: blur(16px); }
.gg610-content { position: relative; }
.gg610-hero--temple {
  min-height: min(68svh, 660px) !important;
  border-color: rgba(208,174,121,.3) !important;
  border-radius: 4px !important;
  background:
    linear-gradient(90deg, rgba(3,5,5,.92), rgba(3,5,5,.58) 56%, rgba(3,5,5,.3)),
    linear-gradient(180deg, transparent 50%, rgba(3,5,5,.72)),
    url("../images/gg610-temple-interior.png") center/cover no-repeat !important;
  box-shadow: 0 35px 100px rgba(0,0,0,.52) !important;
}

.gg610-hero--temple .gg610-hero-temple-scene,
.gg610-hero--temple .gg610-hero-floor,
.gg610-hero--temple .gg610-hero-column,
.gg610-hero--temple .gg610-hero-altar { display: none !important; }

.gg610-info-card,
.gg610-symbol-card,
.gg610-note-card,
.gg610-empty,
.gg610-book-card,
.gg610-submission-form,
.gg610-history-mark {
  border-color: rgba(208,174,121,.16) !important;
  background: linear-gradient(145deg, rgba(20,20,18,.88), rgba(8,10,10,.9)) !important;
  box-shadow: 0 20px 55px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
}

@media (max-width: 1050px) {
  .gg610-login-identity { width: min(610px, 62vw); }
  .gg610-login-layout { grid-template-columns: minmax(320px, 48%) minmax(0, 52%) !important; }
  .gg610-ceremonial-door { min-height: min(62svh, 570px) !important; }
}

@media (max-width: 760px) {
  .gg610-gateway[data-gg610-view="login"] { padding: 12px !important; }
  .gg610-scene { inset: -1%; }
  .gg610-scene--temple { background-position: 50% center; filter: saturate(.72) contrast(1.04) brightness(.48); }
  .gg610-scene--entrance {
    background-image: url("../images/gg610-entrance-mobile.png");
    background-position: center top;
    filter: saturate(.76) contrast(1.04) brightness(.58);
  }
  .gg610-gateway.is-at-door .gg610-scene-vignette {
    background: linear-gradient(180deg, rgba(1,3,4,.18), transparent 42%, rgba(1,3,4,.78) 78%, rgba(1,3,4,.94));
  }
  .gg610-intro-panel {
    width: 100% !important;
    max-height: calc(100svh - 24px);
    padding: 27px 18px !important;
  }
  .gg610-intro-logo { width: 104px !important; }
  .gg610-intro-panel h1 { font-size: clamp(2.15rem, 12vw, 3.3rem) !important; }
  .gg610-intro-panel .gg610-kicker { font-size: .58rem; }
  .gg610-intro-panel .gg610-motto { font-size: .66rem; letter-spacing: .13em; }
  .gg610-intro-panel .gg610-lead,
  .gg610-intro-panel .gg610-threshold-text { font-size: .88rem; line-height: 1.55; }

  .gg610-login-stage { display: block !important; height: 100% !important; padding: 0 2px 20px !important; }
  .gg610-login-identity {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 12px 14px !important;
  }
  .gg610-login-identity img { width: 52px !important; height: 52px !important; }
  .gg610-login-identity h1 { font-size: 1.42rem !important; }
  .gg610-login-identity p:last-child { display: none; }
  .gg610-login-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(55svh, 570px) auto !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .gg610-ceremonial-door { grid-row: 1; min-height: 55svh !important; }
  .gg610-login-card { grid-row: 2; width: 100%; padding: 24px 18px !important; background: rgba(5,8,8,.94); }
  .gg610-door-side-info { right: 4% !important; bottom: 27% !important; width: 45%; }
  .gg610-info-button { padding: 11px 14px !important; font-size: .67rem !important; }
  .gg610-knock-sequence { right: 2% !important; bottom: 4px !important; left: 2% !important; padding: 8px 7px; }
  .gg610-knock-sequence small { font-size: .54rem !important; }
  .gg610-knock-status { bottom: 71px; font-size: .82rem; }
  .gg610-back-button { margin: 13px auto 0 !important; }
  .gg610-hero--temple { min-height: 560px !important; background-position: 54% center !important; }
}

@media (prefers-reduced-motion: reduce) {
  .gg610-scene,
  .gg610-ceremonial-door::before { transition-duration: .01ms !important; }
}

/* --- Ajuste de identidad visual v0.4.1 --- */
.gg610-intro-logo {
  display: block;
  width: clamp(112px, 9vw, 138px) !important;
  height: auto !important;
  margin: 0 auto 18px !important;
}

.gg610-login-identity {
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center !important;
}

.gg610-login-identity img {
  display: block;
  width: 72px !important;
  height: 72px !important;
  margin: 0 !important;
  object-fit: contain;
}

.gg610-sidebar > .gg610-brand {
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 8px 4px 24px;
  text-align: center;
}

.gg610-sidebar > .gg610-brand .gg610-brand-logo {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.48));
}

.gg610-sidebar > .gg610-brand strong { font-size: 1.13rem; }
.gg610-sidebar > .gg610-brand small { line-height: 1.4; }

@media (max-width: 760px) {
  .gg610-intro-logo { width: 98px !important; margin-bottom: 12px !important; }
  .gg610-login-identity {
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 12px !important;
  }
  .gg610-login-identity img { width: 54px !important; height: 54px !important; }
  .gg610-mobile-header .gg610-brand-logo { width: 42px; height: 42px; }
}

/* --- Interacción y composición v0.4.2 --- */
body.gg610-dashboard-active {
  background:
    linear-gradient(rgba(3,5,5,.86), rgba(3,5,5,.91)),
    url("../images/gg610-temple-interior.png") center center / cover fixed no-repeat !important;
}

.gg610-app {
  background: transparent !important;
}

.gg610-app::before {
  position: fixed !important;
  inset: 0 !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  transform: translateZ(0);
  will-change: transform;
}

.gg610-home-button {
  margin-top: 12px;
  border-color: rgba(208,174,121,.34) !important;
  color: var(--gg610-bronze-light) !important;
  text-align: center !important;
}

.gg610-home-button:hover,
.gg610-home-button.is-active {
  border-color: rgba(208,174,121,.68) !important;
  background: rgba(167,123,69,.14) !important;
}

.gg610-knock-sequence { display: none !important; }

.gg610-ceremonial-door::after {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 7;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(231,195,122,.82);
  border-radius: 50%;
  pointer-events: none;
  content: "";
  opacity: 0;
  transform: translate(-50%,-50%) scale(.18);
  box-shadow: 0 0 20px rgba(227,179,86,.62), inset 0 0 18px rgba(227,179,86,.26);
}

.gg610-ceremonial-door.is-struck::after {
  animation: gg610-knock-on-door .52s ease-out both;
}

@keyframes gg610-knock-on-door {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.18); }
  24% { opacity: 1; transform: translate(-50%,-50%) scale(.55); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.65); }
}

.gg610-knock-status {
  right: 24% !important;
  bottom: 18% !important;
  left: 24% !important;
  min-height: 24px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(3,5,5,.58);
  color: #eadcbe !important;
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.gg610-knock-status:empty { display: none; }

.gg610-back-button {
  min-height: 43px;
  margin: 8px 0 0 clamp(26px, 3vw, 48px) !important;
  padding: 10px 19px !important;
  border: 1px solid rgba(208,174,121,.52) !important;
  border-radius: 999px !important;
  background: rgba(5,8,8,.76) !important;
  color: #efe7d9 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 35px rgba(0,0,0,.3);
  backdrop-filter: blur(9px);
}

.gg610-back-button:hover {
  border-color: var(--gg610-bronze-light) !important;
  background: rgba(167,123,69,.16) !important;
}

@media (min-width: 1061px) {
  .gg610-login-stage {
    width: min(1380px, calc(100% - 56px)) !important;
    margin: 0 auto !important;
  }

  .gg610-login-identity {
    width: min(590px, 45vw);
    margin-left: clamp(22px, 2.5vw, 44px);
  }

  .gg610-login-layout {
    grid-template-columns: minmax(390px, 46%) minmax(0, 54%) !important;
    gap: clamp(20px, 2.4vw, 38px) !important;
  }

  .gg610-login-card {
    justify-self: center;
    transform: translateX(clamp(14px, 1.8vw, 30px));
  }
}

/* Controles móviles v0.6.7: simétricos, aislados y fuera del formulario. */
@media (max-width: 760px) {
  .gg610-back-button,
  .gg610-door-side-info {
    position: fixed !important;
    top: max(14px, env(safe-area-inset-top)) !important;
    bottom: auto !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }
  .gg610-back-button {
    right: auto !important;
    left: max(14px, env(safe-area-inset-left)) !important;
    z-index: 50;
  }
  .gg610-door-side-info {
    right: max(14px, env(safe-area-inset-right)) !important;
    left: auto !important;
    z-index: 51;
    pointer-events: auto;
  }
  .gg610-info-button {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }
  .gg610-back-button,
  .gg610-info-button {
    border: 1px solid rgba(225,197,137,.72) !important;
    background: rgba(5,8,8,.88) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.46) !important;
    backdrop-filter: blur(10px);
  }
  .gg610-door-side-info .gg610-ask-menu {
    position: absolute;
    top: 52px;
    right: 0;
    bottom: auto;
    width: min(210px, calc(100vw - 28px));
    margin: 0;
  }
}

@media (max-width: 760px) {
  .gg610-knock-status {
    right: 18% !important;
    bottom: 12% !important;
    left: 18% !important;
    font-size: .66rem;
  }

  .gg610-ceremonial-door::after { top: 47%; left: 50%; }
  .gg610-back-button { margin: 14px auto 4px !important; }
}

/* --- Portal editorial y navegación superior v0.5.0 --- */
.gg610-news-rail {
  position: absolute;
  right: clamp(14px, 2vw, 34px);
  bottom: clamp(12px, 2vh, 24px);
  left: clamp(14px, 2vw, 34px);
  z-index: 10;
  overflow: hidden;
  border: 1px solid rgba(208,174,121,.28);
  border-radius: 4px;
  background: rgba(5,8,8,.86);
  box-shadow: 0 22px 70px rgba(0,0,0,.48);
  opacity: 1;
  backdrop-filter: blur(15px);
  transition: opacity .35s ease, transform .5s ease;
}

.gg610-gateway.is-at-door .gg610-news-rail {
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
}

.gg610-news-rail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(208,174,121,.18);
  color: var(--gg610-bronze-light);
  font: 700 .65rem/1.2 Arial,sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gg610-news-rail-heading a { color: #d9d1c4; text-decoration: none; letter-spacing: .04em; }
.gg610-news-viewport { overflow: hidden; }
.gg610-news-track {
  display: flex;
  width: max-content;
  animation: gg610-news-scroll 86s linear infinite;
}
.gg610-news-rail:hover .gg610-news-track,
.gg610-news-rail:focus-within .gg610-news-track { animation-play-state: paused; }

.gg610-news-card {
  width: min(360px, 78vw);
  min-height: 116px;
  padding: 12px 17px 13px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.gg610-news-card time { color: #918a7e; font-size: .66rem; }
.gg610-news-card h2 { margin: 5px 0; color: #f0eadd; font: 1rem/1.22 Georgia,serif; }
.gg610-news-card p { margin: 0; color: #a8a196; font: .72rem/1.4 Arial,sans-serif; }
.gg610-news-card a { display: inline-block; margin-top: 6px; color: var(--gg610-bronze-light); font-size: .7rem; text-decoration: none; }

@keyframes gg610-news-scroll { to { transform: translateX(-50%); } }

.gg610-gateway:not(.is-at-door) .gg610-intro-panel {
  transform: translateY(clamp(-62px, -6vh, -34px));
}

/* El formulario se acerca al centro y desaparece al iniciar la ceremonia. */
@media (min-width: 1061px) {
  .gg610-login-stage { width: min(1220px, calc(100% - 100px)) !important; }
  .gg610-login-identity { width: min(545px, 46vw); margin-left: 30px; }
  .gg610-login-layout { grid-template-columns: minmax(430px, 45%) minmax(0,55%) !important; }
  .gg610-login-card { transform: translateX(48px); }
}

.gg610-login-identity,
.gg610-login-card,
.gg610-back-button,
.gg610-door-side-info {
  transition: opacity .28s ease, transform .38s ease, visibility .28s ease;
}

.gg610-gateway.is-knocking .gg610-login-identity,
.gg610-gateway.is-knocking .gg610-login-card,
.gg610-gateway.is-knocking .gg610-back-button,
.gg610-gateway.is-knocking .gg610-door-side-info {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.gg610-gateway.is-knocking .gg610-login-card { transform: translateX(75px) scale(.96); }
.gg610-gateway.is-knocking .gg610-login-identity { transform: translateY(-18px); }
.gg610-gateway.is-knocking .gg610-ceremonial-door { min-height: min(82svh,760px) !important; }

/* Menú privado fijo en la parte superior. */
.gg610-app { display: block !important; padding-top: 84px; }
.gg610-sidebar {
  position: fixed !important;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 84px !important;
  padding: 10px clamp(18px,2.4vw,38px) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(208,174,121,.22) !important;
  background: rgba(7,9,9,.94) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}

.gg610-sidebar > .gg610-brand {
  flex: 0 0 auto;
  flex-direction: row !important;
  justify-content: flex-start;
  gap: 10px;
  min-width: 205px;
  padding: 0 !important;
  text-align: left;
}
.gg610-sidebar > .gg610-brand .gg610-brand-logo { width: 54px; height: 54px; margin: 0; }
.gg610-sidebar > .gg610-brand strong { font-size: .93rem; }
.gg610-sidebar > .gg610-brand small { font-size: .62rem; }

.gg610-sidebar .gg610-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  margin: 0;
}
.gg610-sidebar .gg610-nav-divider { display: none; }
.gg610-sidebar .gg610-nav button,
.gg610-sidebar .gg610-nav-external {
  width: auto;
  flex: 0 0 auto;
  padding: 8px 9px;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(.64rem,.75vw,.78rem);
}
.gg610-sidebar .gg610-nav-external { gap: 5px; }
.gg610-sidebar .gg610-home-button { margin: 0; }
.gg610-sidebar .gg610-userbox {
  flex: 0 0 auto;
  margin: 0;
  padding: 7px 10px;
  border-color: rgba(208,174,121,.16);
  text-align: right;
}
.gg610-sidebar .gg610-userbox span { font-size: .76rem; }
.gg610-sidebar .gg610-userbox small { display: none; }
.gg610-sidebar .gg610-userbox a { margin-top: 3px; font-size: .68rem; }
.gg610-content { padding-top: clamp(30px,4vw,58px) !important; }

.gg610-menu-toggle { display: inline-flex; align-items: center; gap: 9px; }
.gg610-hamburger { display: grid; gap: 4px; width: 20px; }
.gg610-hamburger i { display: block; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.gg610-menu-toggle[aria-expanded="true"] .gg610-hamburger i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.gg610-menu-toggle[aria-expanded="true"] .gg610-hamburger i:nth-child(2) { opacity: 0; }
.gg610-menu-toggle[aria-expanded="true"] .gg610-hamburger i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Biografía ampliada. */
.gg610-garibaldi-feature {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.45fr);
  gap: clamp(28px,5vw,70px);
  align-items: start;
  margin-top: 34px;
}
.gg610-garibaldi-feature figure { position: sticky; top: 118px; margin: 0; }
.gg610-garibaldi-feature img { display: block; width: 100%; max-height: 680px; border: 1px solid rgba(208,174,121,.28); object-fit: cover; object-position: center top; filter: sepia(.12) contrast(1.06); }
.gg610-garibaldi-feature figcaption { padding: 10px 3px; color: var(--gg610-bronze-light); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.gg610-source-link { display: inline-flex; margin-top: 8px; color: var(--gg610-bronze-light); text-decoration: none; }
.gg610-garibaldi-timeline { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 40px; }
.gg610-garibaldi-timeline article,
.gg610-garibaldi-masonry article,
.gg610-video-feature,
.gg610-external-post { border: 1px solid rgba(208,174,121,.18); background: rgba(9,11,11,.86); box-shadow: 0 18px 50px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.gg610-garibaldi-timeline article { min-height: 190px; padding: 22px; }
.gg610-garibaldi-timeline time { color: var(--gg610-bronze-light); font-weight: 700; letter-spacing: .1em; }
.gg610-garibaldi-timeline h2 { margin: 12px 0 8px; font: 1.35rem/1.2 Georgia,serif; }
.gg610-garibaldi-timeline p { margin: 0; color: var(--gg610-muted); line-height: 1.55; }
.gg610-garibaldi-masonry { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; margin-top: 18px; }
.gg610-garibaldi-masonry article { padding: clamp(24px,4vw,42px); }
.gg610-garibaldi-masonry h2,.gg610-video-feature h2,.gg610-external-blog-heading h2 { margin: 8px 0 15px; font: 2rem/1.12 Georgia,serif; }
.gg610-garibaldi-masonry p,.gg610-reading-list li,.gg610-video-feature p { color: var(--gg610-muted); line-height: 1.68; }
.gg610-reading-list ul { padding-left: 20px; }
.gg610-reading-list li + li { margin-top: 10px; }
.gg610-reading-list button { margin-top: 10px; }
.gg610-video-feature { display: grid; grid-template-columns: .72fr 1.28fr; gap: 25px; align-items: center; margin-top: 18px; padding: clamp(24px,4vw,42px); }
.gg610-video-frame { aspect-ratio: 16/9; overflow: hidden; border: 1px solid rgba(208,174,121,.24); background: #000; }
.gg610-video-frame iframe { width: 100%; height: 100%; border: 0; }

/* Noticias externas dentro del panel. */
.gg610-external-blog-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin: 58px 0 22px; }
.gg610-external-blog-heading a { color: var(--gg610-bronze-light); text-decoration: none; white-space: nowrap; }
.gg610-external-blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; }
.gg610-external-post { display: flex; flex-direction: column; min-height: 260px; padding: 24px; }
.gg610-external-post time { color: var(--gg610-bronze-light); font-size: .72rem; }
.gg610-external-post h2 { margin: 12px 0; font: 1.35rem/1.25 Georgia,serif; }
.gg610-external-post p { color: var(--gg610-muted); line-height: 1.58; }
.gg610-external-post a { margin-top: auto; color: var(--gg610-bronze-light); text-decoration: none; }

@media (max-width: 1320px) {
  .gg610-app { padding-top: 76px; }
  .gg610-sidebar {
    position: fixed !important;
    top: 76px !important;
    right: 0;
    bottom: auto;
    left: 0;
    display: block !important;
    width: auto;
    height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none;
  }
  .gg610-sidebar > .gg610-brand,
  .gg610-sidebar > .gg610-userbox { display: none !important; }
  .gg610-sidebar .gg610-nav {
    position: fixed;
    inset: 76px 12px auto 12px;
    z-index: 1200;
    display: none;
    max-height: calc(100svh - 92px);
    overflow: auto;
    margin: 0;
    padding: 13px;
    border: 1px solid rgba(208,174,121,.3);
    border-radius: 7px;
    background: rgba(8,10,10,.98);
    box-shadow: 0 28px 80px rgba(0,0,0,.62);
    backdrop-filter: blur(18px);
  }
  .gg610-sidebar .gg610-nav.is-open { display: grid; }
  .gg610-sidebar .gg610-nav-divider { display: block; }
  .gg610-sidebar .gg610-nav button,
  .gg610-sidebar .gg610-nav-external { width: 100%; padding: 12px 13px; text-align: left; font-size: .86rem; }
  .gg610-sidebar .gg610-nav-external { display: flex; }
  .gg610-mobile-header {
    position: fixed !important;
    inset: 0 0 auto 0;
    z-index: 1300;
    display: flex !important;
    height: 76px;
    margin: 0 !important;
    padding: 10px 17px !important;
    background: rgba(7,9,9,.96) !important;
  }
  .gg610-content { padding-top: 26px !important; }
}

@media (max-width: 800px) {
  .gg610-garibaldi-feature,
  .gg610-garibaldi-masonry,
  .gg610-video-feature { grid-template-columns: 1fr; }
  .gg610-garibaldi-feature figure { position: static; }
  .gg610-garibaldi-feature img { max-height: 560px; }
  .gg610-garibaldi-timeline,
  .gg610-external-blog-grid { grid-template-columns: 1fr; }
  .gg610-external-blog-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .gg610-news-rail { right: 8px; bottom: 8px; left: 8px; }
  .gg610-news-card { width: 284px; min-height: 110px; padding: 10px 13px; }
  .gg610-news-card p { display: none; }
  .gg610-gateway:not(.is-at-door) .gg610-intro-panel {
    max-height: calc(100svh - 175px);
    transform: translateY(-72px);
  }
  .gg610-gateway.is-knocking .gg610-login-card,
  .gg610-gateway.is-knocking .gg610-login-identity,
  .gg610-gateway.is-knocking .gg610-back-button,
  .gg610-gateway.is-knocking .gg610-door-side-info { display: none !important; }
  .gg610-gateway.is-knocking .gg610-login-layout { display: block !important; }
  .gg610-gateway.is-knocking .gg610-ceremonial-door { min-height: 88svh !important; }
}

/* --- Fondos ceremoniales v0.5.0 --- */
.gg610-scene--temple {
  background-image: url("../images/gg610-rough-stone.jpg") !important;
  background-position: center 42% !important;
  filter: saturate(.68) contrast(1.06) brightness(.46) !important;
}

.gg610-gateway:not(.is-at-door) .gg610-scene-vignette {
  background:
    radial-gradient(circle at 50% 43%, rgba(0,0,0,.02) 10%, rgba(0,0,0,.28) 62%, rgba(0,0,0,.72) 112%),
    linear-gradient(180deg, rgba(0,0,0,.24), transparent 35%, rgba(0,0,0,.45));
}

.gg610-content { padding: 0 !important; }
.gg610-section:not(#gg610-inicio) { width: min(1240px, calc(100% - 48px)); padding-top: clamp(36px,5vw,72px); padding-bottom: 70px; }
.gg610-section#gg610-inicio { width: 100%; max-width: none; margin: 0; }
.gg610-section#gg610-inicio .gg610-hero--temple {
  min-height: calc(100svh - 84px) !important;
  border-width: 0 0 1px !important;
  border-radius: 0 !important;
  background:
    linear-gradient(90deg, rgba(3,5,5,.92), rgba(3,5,5,.55) 55%, rgba(3,5,5,.24)),
    linear-gradient(180deg, transparent 55%, rgba(3,5,5,.72)),
    url("../images/gg610-temple-interior.png") center / cover fixed no-repeat !important;
}
.gg610-section#gg610-inicio > .gg610-card-grid,
.gg610-section#gg610-inicio > .gg610-image-band {
  width: min(1240px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}
.gg610-section#gg610-inicio > .gg610-card-grid { margin-top: 32px; }
.gg610-section#gg610-inicio > .gg610-image-band { margin-bottom: 70px; }

@media (max-width: 1320px) {
  .gg610-section#gg610-inicio .gg610-hero--temple { min-height: calc(100svh - 76px) !important; }
}

@media (max-width: 760px) {
  .gg610-scene--temple { background-position: center top !important; }
  .gg610-section:not(#gg610-inicio),
  .gg610-section#gg610-inicio > .gg610-card-grid,
  .gg610-section#gg610-inicio > .gg610-image-band { width: min(100% - 28px, 1240px); }
}

/* --- Composición centrada, fondo fijo y navegación v0.5.1 --- */
.gg610-intro-panel[hidden],
.gg610-login-stage[hidden] {
  display: none !important;
  visibility: hidden !important;
}

body.gg610-dashboard-active {
  background: #050707 !important;
}

.gg610-app {
  isolation: isolate;
  position: relative;
  min-height: 100svh;
  background: transparent !important;
}

.gg610-app::before {
  position: fixed !important;
  inset: 0 !important;
  z-index: -1 !important;
  width: 100vw;
  height: 100svh;
  background:
    linear-gradient(90deg, rgba(3,5,5,.9), rgba(3,5,5,.62) 52%, rgba(3,5,5,.48)),
    linear-gradient(180deg, rgba(3,5,5,.28), rgba(3,5,5,.8)),
    url("../images/gg610-temple-interior.png") center center / cover no-repeat !important;
  content: "";
  transform: none !important;
  will-change: auto !important;
}

.gg610-content,
.gg610-section,
.gg610-section#gg610-inicio { background: transparent !important; }

.gg610-section#gg610-inicio .gg610-hero--temple {
  min-height: calc(100svh - 100px) !important;
  padding: clamp(48px, 6vw, 104px) clamp(28px, 5vw, 92px) !important;
  background:
    linear-gradient(90deg, rgba(3,5,5,.46), rgba(3,5,5,.08) 55%, rgba(3,5,5,.16)),
    linear-gradient(180deg, rgba(3,5,5,.12), rgba(3,5,5,.52)) !important;
  box-shadow: inset 0 -42px 80px rgba(0,0,0,.28) !important;
}

.gg610-section#gg610-inicio .gg610-hero-layout {
  width: min(1480px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .82fr);
  gap: clamp(54px, 7vw, 120px);
}

.gg610-section#gg610-inicio .gg610-hero-copy { max-width: 780px; }
.gg610-section#gg610-inicio .gg610-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 5.7vw, 6.7rem);
  text-wrap: balance;
}
.gg610-section#gg610-inicio .gg610-hero-copy > p:not(.gg610-kicker) {
  max-width: 720px;
  font-size: clamp(.98rem, 1.12vw, 1.12rem);
  line-height: 1.68;
}
.gg610-section#gg610-inicio .gg610-hero-actions { margin-top: 28px; }
.gg610-section#gg610-inicio .gg610-hero-visual {
  width: 100%;
  max-width: 590px;
  justify-self: end;
  gap: 16px;
}
.gg610-section#gg610-inicio .gg610-visual-card {
  min-height: 132px;
  padding: 22px 24px;
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(17,17,15,.88), rgba(8,9,9,.78));
  backdrop-filter: blur(12px);
}

@media (min-width: 1321px) {
  .gg610-app { padding-top: 100px; }
  .gg610-sidebar {
    height: 100px !important;
    gap: clamp(18px, 2vw, 34px);
    padding: 12px clamp(22px, 2.7vw, 48px) !important;
  }
  .gg610-sidebar > .gg610-brand { min-width: 248px; gap: 13px; }
  .gg610-sidebar > .gg610-brand .gg610-brand-logo { width: 66px; height: 66px; }
  .gg610-sidebar > .gg610-brand strong { font-size: 1.08rem; }
  .gg610-sidebar > .gg610-brand small { font-size: .68rem; }
  .gg610-sidebar .gg610-nav { gap: 5px; }
  .gg610-sidebar .gg610-nav button,
  .gg610-sidebar .gg610-nav-external {
    padding: 11px 12px;
    font-size: clamp(.72rem, .77vw, .88rem);
    font-weight: 600;
  }
  .gg610-sidebar .gg610-userbox { min-width: 130px; padding: 9px 12px; }
  .gg610-sidebar .gg610-userbox span { font-size: .84rem; }
  .gg610-sidebar .gg610-userbox a { font-size: .73rem; }
}

@media (min-width: 1061px) {
  .gg610-login-stage {
    position: relative;
    display: block !important;
    width: min(1540px, 100%) !important;
    height: 100svh !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }
  .gg610-login-identity {
    position: absolute;
    top: clamp(22px, 3vh, 38px);
    left: 61%;
    z-index: 14;
    width: min(620px, calc(100% - 70px));
    margin: 0 !important;
    transform: translateX(-50%);
  }
  .gg610-login-layout {
    display: block !important;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0 !important;
  }
  .gg610-login-card {
    position: absolute;
    top: 56%;
    left: 61%;
    z-index: 13;
    width: min(455px, calc(100% - 70px));
    margin: 0;
    transform: translate(-50%, -50%) !important;
  }
  .gg610-ceremonial-door {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    min-height: 100% !important;
  }
  .gg610-door-side-info {
    right: clamp(28px, 5vw, 78px) !important;
    bottom: clamp(140px, 23vh, 220px) !important;
    width: min(210px, 18vw);
  }
  .gg610-back-button {
    position: absolute;
    bottom: 24px;
    left: 28px;
    z-index: 20;
    margin: 0 !important;
  }
  .gg610-ceremonial-door::after { left: 66%; }
  .gg610-gateway.is-knocking .gg610-login-card {
    transform: translate(-50%, -47%) scale(.96) !important;
  }
  .gg610-gateway.is-knocking .gg610-login-identity {
    transform: translate(-50%, -18px) !important;
  }
}

/* Apertura ceremonial: dos hojas hacia el interior y gesto del guardatemplo. */
.gg610-door-transition {
  position: absolute;
  top: 21.5%;
  left: 54.6%;
  z-index: 7;
  width: 22.2%;
  height: 58.2%;
  overflow: visible;
  border: 1px solid rgba(222,183,111,.34);
  background: #050706;
  box-shadow: 0 0 0 9px rgba(10,8,7,.72), 0 0 70px rgba(224,174,83,.2);
  opacity: 0;
  perspective: 1450px;
  pointer-events: none;
  transform: translateZ(0);
  transition: opacity .18s ease;
}

.gg610-door-depth {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(242,211,151,.22), rgba(3,5,5,.12) 36%, rgba(3,5,5,.52)),
    url("../images/gg610-temple-interior.png") center center / cover no-repeat;
  box-shadow: inset 0 0 60px rgba(0,0,0,.72), inset 0 0 0 1px rgba(240,210,150,.22);
}

.gg610-door-depth::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 38%, rgba(255,226,161,.42), transparent 55%);
  content: "";
  opacity: 0;
  transition: opacity 1.3s ease .55s;
}

.gg610-opening-leaf {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 50.5%;
  border: 1px solid rgba(167,123,69,.54);
  background:
    linear-gradient(90deg, rgba(255,255,255,.055), transparent 13% 87%, rgba(255,255,255,.03)),
    repeating-linear-gradient(0deg, transparent 0 23%, rgba(167,123,69,.16) 23% 24%),
    linear-gradient(135deg, #3a271a, #140d09 52%, #291b13);
  box-shadow: inset 0 0 42px rgba(0,0,0,.76), inset 0 0 0 6px rgba(128,86,49,.13), 0 10px 28px rgba(0,0,0,.46);
  backface-visibility: hidden;
  transition: transform 1.65s cubic-bezier(.2,.72,.14,1), filter 1.25s ease, box-shadow 1.25s ease;
}

.gg610-opening-leaf::before,
.gg610-opening-leaf::after {
  position: absolute;
  right: 12%;
  left: 12%;
  height: 28%;
  border: 1px solid rgba(190,139,76,.35);
  box-shadow: inset 0 0 20px rgba(0,0,0,.7);
  content: "";
}
.gg610-opening-leaf::before { top: 11%; }
.gg610-opening-leaf::after { bottom: 11%; }
.gg610-opening-leaf--left { left: 0; transform-origin: left center; }
.gg610-opening-leaf--right { right: 0; transform-origin: right center; }

.gg610-guard-welcome-cover {
  position: absolute;
  top: 52%;
  right: 3.6%;
  z-index: 8;
  width: clamp(72px, 7.4vw, 122px);
  height: clamp(125px, 18vw, 250px);
  border-radius: 42% 42% 14% 14%;
  background: linear-gradient(100deg, #080a0a, #1a1c1b 46%, #070808);
  box-shadow: inset 10px 0 18px rgba(255,255,255,.025), 0 10px 25px rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease .22s;
}

.gg610-guard-welcome-arm {
  position: absolute;
  top: 52%;
  right: 4.7%;
  z-index: 9;
  width: clamp(120px, 11vw, 190px);
  height: clamp(24px, 2.3vw, 38px);
  border-radius: 50% 8px 8px 50%;
  background: linear-gradient(180deg, #202120, #090b0b 72%);
  box-shadow: 0 10px 20px rgba(0,0,0,.6), inset 0 1px rgba(255,255,255,.07);
  opacity: 0;
  pointer-events: none;
  transform: rotate(24deg) scaleX(.12);
  transform-origin: right center;
}

.gg610-guard-welcome-arm::before {
  position: absolute;
  top: 50%;
  left: -24px;
  width: 31px;
  height: 22px;
  border-radius: 55% 30% 44% 55%;
  background: linear-gradient(180deg, #bd957d, #705344);
  box-shadow: inset 0 -5px 7px rgba(0,0,0,.25), 0 5px 10px rgba(0,0,0,.42);
  content: "";
  transform: translateY(-50%);
}

.gg610-guard-welcome-arm::after {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 14px;
  height: 29px;
  border-radius: 2px;
  background: #ece8df;
  content: "";
  transform: translateY(-50%);
}

.gg610-gateway.is-door-opening .gg610-door-transition { opacity: 1; }
.gg610-gateway.is-door-opening .gg610-guard-welcome-cover { opacity: .96; }
.gg610-gateway.is-door-opening .gg610-door-depth::after { opacity: 1; }
.gg610-gateway.is-door-opening .gg610-opening-leaf--left {
  transform: rotateY(82deg) translateZ(-22px);
  filter: brightness(.72);
  box-shadow: 16px 10px 38px rgba(0,0,0,.62);
}
.gg610-gateway.is-door-opening .gg610-opening-leaf--right {
  transform: rotateY(-82deg) translateZ(-22px);
  filter: brightness(.72);
  box-shadow: -16px 10px 38px rgba(0,0,0,.62);
}
.gg610-gateway.is-door-opening .gg610-guard-welcome-arm {
  animation: gg610-guard-welcome 1.35s cubic-bezier(.18,.74,.18,1) .3s forwards;
}

@keyframes gg610-guard-welcome {
  0% { opacity: 0; transform: rotate(24deg) scaleX(.12); }
  28% { opacity: 1; }
  72%, 100% { opacity: 1; transform: rotate(-13deg) scaleX(1); }
}

@media (max-width: 760px) {
  .gg610-door-transition {
    top: 19.4%;
    left: 31.2%;
    width: 37.8%;
    height: 36.6%;
  }
  .gg610-guard-welcome-arm {
    top: 43%;
    right: 14%;
    width: 116px;
    height: 25px;
  }
  .gg610-guard-welcome-cover {
    top: 40%;
    right: 8.6%;
    width: 96px;
    height: 180px;
  }
  .gg610-gateway.is-knocking .gg610-ceremonial-door::after { left: 50%; }
}

.gg610-scroll-home {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1150;
  display: grid;
  grid-template-columns: 24px 42px;
  grid-template-rows: 42px 16px;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 82px;
  padding: 6px 8px 7px;
  border: 1px solid rgba(216,181,118,.65);
  border-radius: 5px 5px 24px 5px;
  background: linear-gradient(145deg, rgba(18,18,16,.94), rgba(5,7,7,.92));
  color: #eee6d7;
  box-shadow: 0 18px 45px rgba(0,0,0,.48), inset 0 0 24px rgba(208,174,121,.04);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.gg610-scroll-home:hover {
  border-color: #d8b576;
  background: linear-gradient(145deg, rgba(79,45,43,.96), rgba(8,9,8,.95));
  transform: translateY(-4px);
}
.gg610-scroll-home-arrow {
  color: #d8b576;
  font: 700 1.25rem/1 Arial,sans-serif;
}
.gg610-scroll-home img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,.6));
}
.gg610-scroll-home-label {
  grid-column: 1 / -1;
  color: #d8b576;
  font: 700 .57rem/1 Arial,sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 1320px) {
  .gg610-section#gg610-inicio .gg610-hero--temple {
    min-height: calc(100svh - 76px) !important;
  }
  .gg610-section#gg610-inicio .gg610-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
    gap: clamp(30px, 5vw, 70px);
  }
  .gg610-section#gg610-inicio .gg610-hero-copy h1 {
    font-size: clamp(3rem, 6.8vw, 5.5rem);
  }
}

@media (max-width: 860px) {
  .gg610-section#gg610-inicio .gg610-hero--temple {
    min-height: auto !important;
    padding: 62px 22px 54px !important;
  }
  .gg610-section#gg610-inicio .gg610-hero-layout { grid-template-columns: 1fr; }
  .gg610-section#gg610-inicio .gg610-hero-visual {
    max-width: none;
    justify-self: stretch;
  }
  .gg610-scroll-home {
    right: 14px;
    bottom: 14px;
    width: 68px;
    height: 66px;
    grid-template-columns: 17px 32px;
    grid-template-rows: 34px 13px;
  }
  .gg610-scroll-home img { width: 32px; height: 32px; }
  .gg610-scroll-home-label { font-size: .49rem; }
}

/* --- Portada editorial y áreas temáticas v0.6.0 --- */
.gg610-section#gg610-inicio .gg610-hero-layout {
  grid-template-columns: minmax(250px, .7fr) minmax(370px, 1.05fr) minmax(340px, .78fr);
  gap: clamp(28px, 3.4vw, 66px);
  align-items: center;
}

.gg610-rough-stone-feature {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(218,183,120,.52);
  border-radius: 4px;
  background: #e9e2d5;
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.gg610-rough-stone-feature img {
  display: block;
  width: 100%;
  height: clamp(390px, 55vh, 620px);
  object-fit: cover;
  object-position: center 26%;
  filter: brightness(1.08) contrast(1.02) saturate(.92);
}
.gg610-rough-stone-feature figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(4,6,6,.92) 38%);
  color: #f3ecde;
}
.gg610-rough-stone-feature figcaption strong { font: 1.3rem/1.2 Georgia,serif; }
.gg610-rough-stone-feature figcaption span { color: #c5bcae; font-size: .78rem; line-height: 1.45; }

.gg610-section#gg610-inicio .gg610-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3rem, 4.2vw, 5.25rem);
}

.gg610-section#gg610-inicio .gg610-hero-visual { max-width: 480px; }
.gg610-section#gg610-inicio .gg610-visual-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 145px;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid rgba(218,183,120,.42);
  border-radius: 4px;
  background-position: center;
  background-size: cover;
  color: #f4ede0;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.gg610-section#gg610-inicio .gg610-visual-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2,4,4,.08), rgba(2,4,4,.9));
  content: "";
}
.gg610-section#gg610-inicio .gg610-visual-card::after { display: none; }
.gg610-section#gg610-inicio .gg610-visual-card:hover {
  border-color: #d8b576;
  box-shadow: 0 24px 58px rgba(0,0,0,.48);
  transform: translateY(-4px);
}
.gg610-section#gg610-inicio .gg610-visual-card--temple { background-image: url("../images/gg610-feature-temple.png"); }
.gg610-section#gg610-inicio .gg610-visual-card--library { background-image: url("../images/gg610-feature-library.png"); }
.gg610-section#gg610-inicio .gg610-visual-card--fraternity { background-image: url("../images/gg610-feature-fraternity.png"); }
.gg610-section#gg610-inicio .gg610-visual-card span {
  color: #d8b576;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.gg610-section#gg610-inicio .gg610-visual-card strong {
  margin-top: 8px;
  font: 1.12rem/1.2 Georgia,serif;
}
.gg610-section#gg610-inicio .gg610-visual-card small {
  margin-top: 8px;
  color: #d7cdbd;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gg610-home-carousel-section,
.gg610-latest-books {
  width: min(1360px, calc(100% - 48px));
  margin: 58px auto 0;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(208,174,121,.22);
  background: rgba(6,8,8,.84);
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
}
.gg610-latest-books { margin-bottom: 76px; }
.gg610-home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.gg610-home-section-heading h2 {
  margin: 0;
  font: clamp(2rem, 3.2vw, 3.2rem)/1.05 Georgia,serif;
}
.gg610-home-section-heading > button { white-space: nowrap; }
.gg610-carousel-controls { display: flex; gap: 8px; }
.gg610-carousel-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(208,174,121,.52);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  color: #d8b576;
  cursor: pointer;
}
.gg610-content-carousel { overflow: hidden; }
.gg610-content-carousel-track {
  display: grid;
  grid-auto-columns: minmax(300px, 31%);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(208,174,121,.42) transparent;
}
.gg610-home-news-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(208,174,121,.18);
  background: linear-gradient(145deg, rgba(19,18,16,.92), rgba(7,9,9,.96));
  scroll-snap-align: start;
}
.gg610-home-news-card time { color: #9d9588; font-size: .72rem; }
.gg610-home-news-card h3 { margin: 14px 0 10px; font: 1.45rem/1.22 Georgia,serif; }
.gg610-home-news-card p { margin: 0 0 18px; color: #aca599; line-height: 1.55; }
.gg610-home-news-card a { margin-top: auto; color: #d8b576; text-decoration: none; }

.gg610-latest-books-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.gg610-latest-books-grid article {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  gap: 16px;
  min-height: 176px;
  padding: 16px;
  border: 1px solid rgba(208,174,121,.16);
  background: rgba(255,255,255,.025);
}
.gg610-latest-book-cover {
  display: grid;
  place-items: center;
  min-height: 138px;
  overflow: hidden;
  border: 1px solid rgba(208,174,121,.36);
  background: linear-gradient(145deg,#5b3034,#17100e);
  color: #d8b576;
  font: 700 1rem Georgia,serif;
}
.gg610-latest-book-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gg610-latest-books-grid small { color: #d8b576; font-size: .66rem; text-transform: uppercase; }
.gg610-latest-books-grid h3 { margin: 9px 0 15px; font: 1.04rem/1.25 Georgia,serif; }
.gg610-latest-books-grid button { padding: 8px 10px; font-size: .7rem; }

.gg610-section-visual {
  position: relative;
  display: flex;
  align-items: end;
  min-height: clamp(390px, 55vh, 650px);
  margin-bottom: 48px;
  padding: clamp(32px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(208,174,121,.3);
  background-position: center;
  background-size: cover;
  box-shadow: 0 32px 90px rgba(0,0,0,.48);
}
.gg610-section-visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,5,5,.92), rgba(3,5,5,.44) 60%, rgba(3,5,5,.18)), linear-gradient(180deg, transparent, rgba(3,5,5,.78));
  content: "";
}
.gg610-section-visual > div { position: relative; z-index: 1; max-width: 780px; }
.gg610-section-visual h1 { margin: 0; font: clamp(3rem, 6vw, 6rem)/1.02 Georgia,serif; text-wrap: balance; }
.gg610-section-visual p:last-child { max-width: 690px; color: #d2cabc; font-size: 1.02rem; line-height: 1.62; }
.gg610-section-visual--temple { background-image: url("../images/gg610-feature-temple.png"); }
.gg610-section-visual--library { background-image: url("../images/gg610-feature-library.png"); }
.gg610-section-visual--fraternity { background-image: url("../images/gg610-feature-fraternity.png"); }

.gg610-fraternity-intro,
.gg610-philanthropy-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; }
.gg610-fraternity-intro article,
.gg610-philanthropy-grid article,
.gg610-philanthropy-empty {
  border: 1px solid rgba(208,174,121,.18);
  background: rgba(8,10,10,.86);
  box-shadow: 0 20px 56px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.gg610-fraternity-intro article { min-height: 240px; padding: 28px; }
.gg610-fraternity-intro span { color: #d8b576; font-weight: 800; }
.gg610-fraternity-intro h2 { margin: 14px 0 10px; font: 1.55rem/1.2 Georgia,serif; }
.gg610-fraternity-intro p,
.gg610-philanthropy-heading p,
.gg610-philanthropy-grid p,
.gg610-philanthropy-empty p { color: #aaa398; line-height: 1.62; }
.gg610-philanthropy-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 72px 0 24px;
}
.gg610-philanthropy-heading > div { max-width: 820px; }
.gg610-philanthropy-heading h2 { margin: 0; font: clamp(2.3rem, 4vw, 4rem)/1.05 Georgia,serif; }
.gg610-philanthropy-grid article { display: flex; flex-direction: column; min-height: 280px; padding: 25px; }
.gg610-philanthropy-grid time { color: #d8b576; font-size: .72rem; }
.gg610-philanthropy-grid h3 { margin: 13px 0 8px; font: 1.4rem/1.24 Georgia,serif; }
.gg610-philanthropy-grid button { align-self: flex-start; margin-top: auto; }
.gg610-philanthropy-empty { display: flex; align-items: center; gap: 22px; padding: 32px; }
.gg610-philanthropy-empty > span { color: #d8b576; font-size: 2.5rem; }
.gg610-philanthropy-empty h3 { margin: 0; font: 1.55rem Georgia,serif; }
.gg610-text-link { margin-top: 30px; border: 0; background: transparent; color: #d8b576; padding: 0; cursor: pointer; }

.gg610-site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 70px;
  padding: 34px clamp(24px, 4vw, 60px);
  border-top: 1px solid rgba(208,174,121,.25);
  background: rgba(4,6,6,.92);
  color: #d8d0c3;
}
.gg610-site-footer strong,
.gg610-site-footer span { display: block; }
.gg610-site-footer strong { font: 1rem Georgia,serif; }
.gg610-site-footer span { margin-top: 5px; color: #9f988d; font-size: .72rem; }
.gg610-site-footer p { margin: 0; color: #aaa398; font-size: .78rem; text-align: center; }
.gg610-site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 15px; }
.gg610-site-footer a { color: #d8b576; font-size: .75rem; text-decoration: none; }
.gg610-site-footer a:hover { color: #fff; }

.gg610-scroll-home {
  display: grid;
  grid-template: none;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(216,181,118,.7);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(72,54,35,.42), rgba(7,9,9,.94) 64%);
  box-shadow: 0 14px 38px rgba(0,0,0,.5), inset 0 0 18px rgba(216,181,118,.06);
}
.gg610-scroll-home:hover,
.gg610-scroll-home:focus-visible {
  border-color: #e0bd7c;
  background: radial-gradient(circle at 38% 30%, rgba(128,77,67,.62), rgba(8,9,8,.96) 68%);
  box-shadow: 0 18px 44px rgba(0,0,0,.58), 0 0 0 4px rgba(216,181,118,.08);
  transform: translateY(-4px);
}
.gg610-scroll-home-arrow {
  color: #e0bd7c;
  font: 400 1.7rem/1 Georgia,serif;
  transform: translateY(-1px);
}
.gg610-scroll-home img,
.gg610-scroll-home-label { display: none !important; }

@media (max-width: 1480px) {
  .gg610-section#gg610-inicio .gg610-hero-layout {
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  }
  .gg610-section#gg610-inicio .gg610-hero-visual {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3,minmax(0,1fr));
    max-width: none;
  }
}

@media (max-width: 980px) {
  .gg610-section#gg610-inicio .gg610-hero-layout { grid-template-columns: 1fr; }
  .gg610-section#gg610-inicio .gg610-hero-visual { grid-column: auto; }
  .gg610-rough-stone-feature img { height: min(72svh, 620px); }
  .gg610-latest-books-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gg610-content-carousel-track { grid-auto-columns: minmax(290px, 72%); }
  .gg610-fraternity-intro,
  .gg610-philanthropy-grid { grid-template-columns: 1fr; }
  .gg610-site-footer { grid-template-columns: 1fr; text-align: center; }
  .gg610-site-footer nav { justify-content: center; }
}

@media (max-width: 620px) {
  .gg610-section#gg610-inicio .gg610-hero-visual { grid-template-columns: 1fr; }
  .gg610-home-carousel-section,
  .gg610-latest-books { width: min(100% - 28px, 1360px); padding: 20px 16px; }
  .gg610-home-section-heading,
  .gg610-philanthropy-heading { align-items: flex-start; flex-direction: column; }
  .gg610-content-carousel-track { grid-auto-columns: 88%; }
  .gg610-latest-books-grid { grid-template-columns: 1fr; }
  .gg610-section-visual { min-height: 470px; padding: 30px 22px; }
  .gg610-section-visual h1 { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .gg610-scroll-home { width: 48px; height: 48px; }
}

/* --- Eventos, acceso alineado y biblioteca enriquecida v0.6.1 --- */
.gg610-scene--temple {
  background-image: url("../images/gg610-temple-interior.png") !important;
  background-position: center !important;
  filter: saturate(.78) contrast(1.05) brightness(.56) !important;
}
.gg610-gateway:not(.is-at-door) .gg610-scene-vignette {
  background: linear-gradient(90deg, rgba(2,4,4,.6), rgba(2,4,4,.18) 46%, rgba(2,4,4,.48)), linear-gradient(180deg, rgba(0,0,0,.28), transparent 38%, rgba(0,0,0,.52));
}
.gg610-intro-panel {
  display: grid !important;
  grid-template-columns: minmax(330px, .78fr) minmax(480px, 1.22fr);
  width: min(1320px, calc(100vw - 64px)) !important;
  max-width: 1320px !important;
  height: min(760px, calc(100svh - 72px));
  max-height: calc(100svh - 72px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: rgba(6,8,8,.9) !important;
  text-align: left !important;
}
.gg610-intro-stone {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(216,181,118,.42);
  background: #e8e1d5;
}
.gg610-intro-stone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 29%;
  filter: brightness(1.08) contrast(1.02) saturate(.94);
}
.gg610-intro-stone figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 70px 28px 25px;
  background: linear-gradient(180deg, transparent, rgba(4,6,6,.94) 64%);
  color: #f3ecde;
}
.gg610-intro-stone figcaption strong { font: 1.55rem/1.15 Georgia,serif; }
.gg610-intro-stone figcaption span { color: #d1c8ba; font: .78rem/1.45 Arial,sans-serif; }
.gg610-intro-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: clamp(34px, 5vw, 76px);
  text-align: center;
}
.gg610-intro-copy .gg610-intro-logo { width: clamp(88px, 7vw, 122px) !important; }
.gg610-intro-copy h1 { max-width: 680px; }
.gg610-intro-copy .gg610-lead,
.gg610-intro-copy .gg610-threshold-text { max-width: 620px; }

@media (min-width: 1061px) {
  .gg610-login-identity,
  .gg610-login-card {
    left: 60% !important;
    width: min(560px, calc(100% - 70px)) !important;
  }
  .gg610-login-identity { top: clamp(28px, 4vh, 48px) !important; }
  .gg610-login-card { top: 57% !important; }
}

/* Se conserva la apertura de las hojas, sin brazo agregado ni efectos de luz. */
.gg610-guard-welcome-cover,
.gg610-guard-welcome-arm,
.gg610-door-light,
.gg610-door-depth::after,
.gg610-ceremonial-door::before { display: none !important; }
.gg610-door-transition {
  box-shadow: 0 0 0 8px rgba(10,8,7,.82), 0 24px 70px rgba(0,0,0,.56) !important;
}
.gg610-door-depth {
  background: linear-gradient(180deg, rgba(3,5,5,.2), rgba(3,5,5,.62)), url("../images/gg610-temple-interior.png") center / cover no-repeat !important;
  box-shadow: inset 0 0 68px rgba(0,0,0,.78) !important;
}
.gg610-gateway.is-door-opening .gg610-scene--entrance {
  filter: saturate(.76) contrast(1.05) brightness(.62) !important;
}
.gg610-ceremonial-door.is-opening .gg610-door-frame { animation: none !important; }

.gg610-next-event {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
  width: min(1360px, calc(100% - 48px));
  margin: 42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(216,181,118,.34);
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(14,14,12,.96), rgba(5,7,7,.93));
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}
.gg610-next-event-poster { min-width: 0; margin: 0; border-right: 1px solid rgba(216,181,118,.28); background: #21130f; }
.gg610-next-event-poster img { display: block; width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: center; }
.gg610-next-event-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 70px); }
.gg610-next-event-content h2 { max-width: 760px; margin: 7px 0 16px; font: clamp(2.5rem, 4.2vw, 4.9rem)/1.02 Georgia,serif; text-wrap: balance; }
.gg610-next-event-lead { max-width: 720px; margin: 0; color: #c8c0b4; font: 1.02rem/1.65 Arial,sans-serif; }
.gg610-event-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.gg610-event-facts li { padding: 16px; border: 1px solid rgba(216,181,118,.16); background: rgba(255,255,255,.025); }
.gg610-event-facts strong,
.gg610-event-facts span { display: block; }
.gg610-event-facts strong { color: #f0e8da; font: 1rem/1.3 Georgia,serif; }
.gg610-event-facts span { margin-top: 6px; color: #a9a195; font-size: .74rem; line-height: 1.45; }
.gg610-countdown { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; max-width: 650px; }
.gg610-countdown > div { display: grid; place-items: center; min-height: 92px; padding: 12px; border: 1px solid rgba(216,181,118,.36); background: rgba(0,0,0,.28); }
.gg610-countdown strong { color: #e1bd7a; font: clamp(1.8rem, 3vw, 2.7rem)/1 Georgia,serif; }
.gg610-countdown span { margin-top: 7px; color: #a9a195; font-size: .62rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.gg610-event-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.gg610-event-actions > span { color: #aaa296; font-size: .78rem; }
.gg610-event-actions > span strong { color: #d8b576; }
.gg610-event-signup-button,
.gg610-section-link-button {
  min-height: 50px;
  padding: 13px 25px !important;
  border: 1px solid #d8b576 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #9e5860, #704046) !important;
  color: #fff8ea !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.12);
  font: 800 .78rem/1 Arial,sans-serif !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gg610-event-signup-button:hover,
.gg610-section-link-button:hover { border-color: #f0cf8c !important; box-shadow: 0 18px 42px rgba(0,0,0,.42); transform: translateY(-2px); }
.gg610-event-signup-button:disabled { opacity: .55; cursor: default; transform: none; }

.gg610-event-modal[hidden] { display: none !important; }
.gg610-event-modal { position: fixed; inset: 0; z-index: 100000; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.84); opacity: 0; backdrop-filter: blur(10px); transition: opacity .18s ease; }
.gg610-event-modal.is-open { opacity: 1; }
.gg610-event-dialog { width: min(760px,100%); max-height: min(880px,92svh); overflow: auto; border: 1px solid rgba(216,181,118,.42); border-radius: 6px; background: #0a0c0c; box-shadow: 0 35px 110px rgba(0,0,0,.7); }
.gg610-event-dialog > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; border-bottom: 1px solid rgba(216,181,118,.18); }
.gg610-event-dialog h2 { margin: 4px 0 0; font: 2rem/1.1 Georgia,serif; }
.gg610-event-dialog header > button { display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid rgba(216,181,118,.3); border-radius: 50%; background: transparent; color: #fff; font-size: 1.55rem; cursor: pointer; }
.gg610-event-form { padding: 26px; }
.gg610-event-form-intro { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 7px 20px; margin-bottom: 22px; padding: 16px 18px; border-left: 3px solid #d8b576; background: rgba(216,181,118,.06); }
.gg610-event-form-intro strong { color: #efe6d8; }
.gg610-event-form-intro span { color: #aaa296; }
.gg610-event-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px; }
.gg610-event-form label > span { display: block; margin-bottom: 7px; color: #d8d0c4; font-size: .78rem; font-weight: 700; }
.gg610-event-form input,
.gg610-event-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 5px; padding: 13px 14px; background: rgba(255,255,255,.045); color: #fff; }
.gg610-event-form textarea { resize: vertical; }
.gg610-event-payment { display: grid; gap: 5px; margin-top: 20px; padding: 18px; border: 1px solid rgba(216,181,118,.25); background: rgba(107,56,59,.14); }
.gg610-event-payment span { color: #aaa296; font-size: .72rem; text-transform: uppercase; }
.gg610-event-payment strong { color: #e1bd7a; font: 1.4rem Georgia,serif; }
.gg610-event-payment small { color: #c1b8ab; line-height: 1.45; }
.gg610-event-consent { display: flex !important; align-items: center; gap: 9px; margin-top: 18px; }
.gg610-event-consent input { width: auto; }
.gg610-event-consent span { margin: 0 !important; }
.gg610-event-form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.gg610-event-form-actions button { min-height: 45px; padding: 11px 20px; border: 1px solid rgba(216,181,118,.4); border-radius: 999px; background: transparent; color: #efe7da; cursor: pointer; }
.gg610-event-form-actions button[type="submit"] { background: #8d4c53; border-color: #d8b576; }

.gg610-book-facts { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 17px; }
.gg610-book-facts span { padding: 6px 8px; border: 1px solid rgba(216,181,118,.2); border-radius: 999px; color: #bcb3a5; font-size: .66rem; }
.gg610-book-card.is-loading-metadata .gg610-book-cover { box-shadow: 10px 12px 0 rgba(0,0,0,.22), 0 0 0 2px rgba(216,181,118,.12); }
.gg610-book-review-full { max-width: 860px; margin: 0 auto; padding: clamp(28px,5vw,58px); }
.gg610-book-review-summary { color: #e1d9cc; font: 1.08rem/1.76 Georgia,serif; }
.gg610-book-review-full dl { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 28px 0; }
.gg610-book-review-full dl > div { padding: 16px; border: 1px solid rgba(216,181,118,.18); background: rgba(255,255,255,.025); }
.gg610-book-review-full dt { color: #9f978b; font: .68rem Arial,sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.gg610-book-review-full dd { margin: 8px 0 0; color: #e4bb76; font: 1rem Georgia,serif; }
.gg610-book-source { color: #d8b576; text-decoration: none; }

.gg610-site-footer nav { padding-right: 76px; }
.gg610-site-footer nav a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(216,181,118,.35); border-radius: 50%; color: #d8b576; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.gg610-site-footer nav a:hover { border-color: #efcc88; color: #fff; transform: translateY(-2px); }
.gg610-site-footer nav svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.gg610-site-footer nav a:first-child svg { fill: currentColor; stroke: none; }
.gg610-site-footer nav svg .is-filled { fill: currentColor; stroke: none; }

/* WordPress agrega una barra superior; los menús del portal deben comenzar debajo. */
body.admin-bar .gg610-sidebar { top: 32px !important; }
@media (max-width: 1320px) {
  body.admin-bar .gg610-mobile-header { top: 32px !important; }
  body.admin-bar .gg610-sidebar { top: 108px !important; }
  body.admin-bar .gg610-sidebar .gg610-nav { inset: 108px 12px auto 12px !important; }
  .gg610-mobile-header { align-items: center !important; justify-content: space-between !important; }
  .gg610-menu-toggle { align-self: center; min-height: 44px; }
}
@media (max-width: 782px) {
  body.admin-bar .gg610-mobile-header { top: 46px !important; }
  body.admin-bar .gg610-sidebar { top: 122px !important; }
  body.admin-bar .gg610-sidebar .gg610-nav { inset: 122px 12px auto 12px !important; max-height: calc(100svh - 138px); }
}

@media (max-width: 980px) {
  .gg610-intro-panel { grid-template-columns: minmax(250px,.78fr) minmax(0,1.22fr); width: min(100% - 32px, 920px) !important; }
  .gg610-intro-copy { padding: 32px 25px; }
  .gg610-intro-copy h1 { font-size: clamp(2.2rem, 7vw, 3.9rem) !important; }
  .gg610-next-event { grid-template-columns: 1fr; }
  .gg610-next-event-poster { border-right: 0; border-bottom: 1px solid rgba(216,181,118,.28); }
  .gg610-next-event-poster img { min-height: 0; max-height: 720px; object-fit: contain; }
  .gg610-event-facts { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .gg610-gateway:not(.is-at-door) .gg610-intro-panel { max-height: calc(100svh - 28px) !important; transform: none !important; }
  .gg610-intro-panel { grid-template-columns: 1fr; height: auto; overflow: auto !important; }
  .gg610-intro-stone { min-height: 42svh; border-right: 0; border-bottom: 1px solid rgba(216,181,118,.42); }
  .gg610-intro-copy { padding: 26px 20px 34px; }
  .gg610-intro-copy .gg610-intro-logo { width: 72px !important; }
  .gg610-intro-copy .gg610-motto { margin-top: 13px; }
  .gg610-next-event { width: min(100% - 28px,1360px); }
  .gg610-next-event-content { padding: 28px 20px; }
  .gg610-countdown { gap: 5px; }
  .gg610-countdown > div { min-height: 74px; padding: 8px 4px; }
  .gg610-countdown span { font-size: .5rem; letter-spacing: .08em; }
  .gg610-event-form-grid { grid-template-columns: 1fr; }
  .gg610-event-form-grid .gg610-span-2 { grid-column: auto; }
  .gg610-book-review-full dl { grid-template-columns: 1fr; }
  .gg610-site-footer { padding-bottom: 105px; }
  .gg610-site-footer nav { padding-right: 0; }
}

/* Página pública: Masonería en Mar del Plata. */
.gg610-local-page {
  --local-gold: #d8b576;
  --local-ivory: #f4eee4;
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: #070908;
  color: var(--local-ivory);
  font-family: Arial,Helvetica,sans-serif;
}
.gg610-local-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.42) 50%,rgba(0,0,0,.78)), url('../images/gg610-temple-interior.png') center/cover no-repeat;
}
.gg610-local-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 26%,transparent 0 18%,rgba(0,0,0,.55) 78%), linear-gradient(rgba(4,6,5,.12),rgba(4,6,5,.72));
}
.gg610-local-page h1,
.gg610-local-page h2,
.gg610-local-page h3 { color: var(--local-ivory); font-family: Georgia,'Times New Roman',serif; }
.gg610-local-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  padding: 12px clamp(22px,5vw,86px);
  border-bottom: 1px solid rgba(216,181,118,.26);
  background: rgba(5,7,6,.92);
  backdrop-filter: blur(16px);
}
body.admin-bar .gg610-local-header { top: 32px; }
.gg610-local-brand { display: flex; align-items: center; gap: 13px; color: inherit; text-decoration: none; }
.gg610-local-brand img { width: 53px; height: 53px; object-fit: contain; }
.gg610-local-brand span { display: grid; gap: 3px; }
.gg610-local-brand strong { font: 1.06rem Georgia,serif; }
.gg610-local-brand small { color: #aaa194; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.gg610-local-header nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px,2vw,30px); }
.gg610-local-header nav a { color: #d8d0c4; font-size: .78rem; font-weight: 700; text-decoration: none; }
.gg610-local-header nav a:hover { color: var(--local-gold); }
.gg610-local-header nav .gg610-local-access { padding: 12px 18px; border: 1px solid rgba(216,181,118,.62); border-radius: 999px; color: #f8e8c6; }
.gg610-local-hero {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr);
  align-items: end;
  gap: clamp(30px,7vw,110px);
  width: min(1480px,calc(100% - 44px));
  min-height: min(780px,calc(100svh - 84px));
  margin: 0 auto;
  padding: clamp(80px,12vh,150px) 0 clamp(70px,10vh,120px);
}
.gg610-local-hero-copy { max-width: 850px; }
.gg610-local-page .gg610-kicker { color: var(--local-gold); }
.gg610-local-hero h1 { margin: 16px 0 24px; font-size: clamp(4rem,8.4vw,8.8rem); font-weight: 500; line-height: .84; letter-spacing: -.045em; }
.gg610-local-lead { max-width: 780px; margin: 0; color: #ded6c9; font: clamp(1.05rem,1.5vw,1.35rem)/1.7 Georgia,serif; }
.gg610-local-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.gg610-local-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid var(--local-gold);
  border-radius: 999px;
  background: linear-gradient(135deg,#95535a,#6b3c42);
  color: #fff8eb;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.gg610-local-actions a + a { background: rgba(0,0,0,.5); }
.gg610-local-actions a:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(0,0,0,.38); }
.gg610-local-hero aside { padding: clamp(28px,4vw,50px); border: 1px solid rgba(216,181,118,.42); background: rgba(5,7,6,.86); box-shadow: 0 28px 70px rgba(0,0,0,.38); }
.gg610-local-hero aside span { color: var(--local-gold); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gg610-local-hero aside strong { display: block; margin: 13px 0; font: clamp(2.5rem,4vw,4.4rem)/1 Georgia,serif; }
.gg610-local-hero aside p { color: #c9c1b5; line-height: 1.65; }
.gg610-local-hero aside a { color: var(--local-gold); font-weight: 700; text-decoration: none; }
.gg610-local-section,
.gg610-local-meeting { width: min(1420px,calc(100% - 44px)); margin: 0 auto 34px; padding: clamp(54px,7vw,96px); border: 1px solid rgba(216,181,118,.22); background: rgba(6,8,7,.9); box-shadow: 0 35px 90px rgba(0,0,0,.32); }
.gg610-local-heading { display: grid; grid-template-columns: minmax(250px,.7fr) minmax(0,1.3fr); align-items: end; gap: 32px; margin-bottom: 42px; }
.gg610-local-heading p { margin: 0; }
.gg610-local-heading h2 { max-width: 900px; margin: 0; font-size: clamp(2.5rem,5.3vw,5.8rem); font-weight: 500; line-height: .96; }
.gg610-local-prose { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(28px,5vw,76px); }
.gg610-local-prose p { margin: 0; color: #c9c1b5; font: 1.06rem/1.8 Georgia,serif; }
.gg610-local-values { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 50px; }
.gg610-local-values article { min-height: 220px; padding: 28px; border: 1px solid rgba(216,181,118,.24); background: rgba(255,255,255,.025); }
.gg610-local-values span { color: var(--local-gold); font-size: .72rem; font-weight: 800; }
.gg610-local-values h3 { margin: 22px 0 12px; font-size: 1.7rem; }
.gg610-local-values p { color: #aaa195; line-height: 1.65; }
.gg610-local-history { background: linear-gradient(120deg,rgba(7,9,8,.95),rgba(54,31,32,.88)); }
.gg610-local-sources { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.gg610-local-sources a { padding: 10px 14px; border: 1px solid rgba(216,181,118,.22); color: #d8b576; font-size: .75rem; text-decoration: none; }
.gg610-local-meeting { display: grid; grid-template-columns: minmax(0,.9fr) minmax(400px,1.1fr); gap: clamp(28px,6vw,82px); align-items: stretch; }
.gg610-local-meeting-copy { display: flex; flex-direction: column; justify-content: center; }
.gg610-local-meeting h2 { margin: 14px 0 20px; font-size: clamp(2.6rem,4.7vw,5.1rem); font-weight: 500; line-height: .98; }
.gg610-local-meeting-copy > p:not(.gg610-kicker) { color: #c9c1b5; font: 1.04rem/1.78 Georgia,serif; }
.gg610-local-map { min-height: 470px; border: 1px solid rgba(216,181,118,.35); background: #111; }
.gg610-local-map iframe { width: 100%; height: 100%; min-height: 470px; border: 0; filter: grayscale(.45) sepia(.18) brightness(.82); }
.gg610-local-faq { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.gg610-local-faq details { padding: 22px; border: 1px solid rgba(216,181,118,.2); background: rgba(255,255,255,.025); }
.gg610-local-faq summary { color: #eee5d8; font: 1.15rem Georgia,serif; cursor: pointer; }
.gg610-local-faq p { color: #b8afa2; line-height: 1.7; }
.gg610-local-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px clamp(22px,5vw,86px); border-top: 1px solid rgba(216,181,118,.22); background: #050706; color: #9e968a; font-size: .74rem; }
.gg610-local-footer > div { display: flex; align-items: center; gap: 12px; }
.gg610-local-footer img { width: 46px; }
.gg610-local-footer p { line-height: 1.6; }
.gg610-local-footer a { color: var(--local-gold); text-decoration: none; }
.gg610-local-intro-link { display: block; margin-top: 17px; color: #d8b576; font-size: .72rem; font-weight: 700; line-height: 1.45; text-decoration: none; }
.gg610-local-intro-link:hover { color: #f5d694; }

.gg610-philanthropy-grid article.has-thumbnail { padding: 0 0 25px; overflow: hidden; }
.gg610-philanthropy-grid article.has-thumbnail > time,
.gg610-philanthropy-grid article.has-thumbnail > h3,
.gg610-philanthropy-grid article.has-thumbnail > p,
.gg610-philanthropy-grid article.has-thumbnail > button { margin-left: 25px; margin-right: 25px; }
.gg610-philanthropy-grid article.has-thumbnail > time { margin-top: 21px; }
.gg610-philanthropy-thumb { height: 250px; margin: 0; overflow: hidden; border-bottom: 1px solid rgba(216,181,118,.22); }
.gg610-philanthropy-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; transition: transform .5s ease; }
.gg610-philanthropy-grid article:hover .gg610-philanthropy-thumb img { transform: scale(1.035); }
.gg610-note-modal-image { width: min(100%,760px); max-height: 520px; margin: 0 auto 28px; overflow: hidden; border: 1px solid rgba(216,181,118,.28); }
.gg610-note-modal-image img { display: block; width: 100%; max-height: 520px; object-fit: cover; object-position: center 48%; }

@media (max-width: 1100px) {
  .gg610-local-header { align-items: flex-start; flex-direction: column; gap: 10px; padding-block: 12px; }
  .gg610-local-header nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .gg610-local-header nav a { white-space: nowrap; }
  .gg610-local-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 90px; }
  .gg610-local-hero aside { max-width: 620px; }
  .gg610-local-heading { grid-template-columns: 1fr; }
  .gg610-local-meeting { grid-template-columns: 1fr; }
}
@media (max-width: 782px) {
  body.admin-bar .gg610-local-header { top: 46px; }
}
@media (max-width: 700px) {
  .gg610-local-header { position: relative; top: auto !important; min-height: 0; padding: 13px 16px; }
  .gg610-local-brand img { width: 43px; height: 43px; }
  .gg610-local-brand strong { font-size: .9rem; }
  .gg610-local-header nav { gap: 8px; }
  .gg610-local-header nav a { padding: 9px 11px; border: 1px solid rgba(216,181,118,.14); border-radius: 999px; }
  .gg610-local-hero,
  .gg610-local-section,
  .gg610-local-meeting { width: min(100% - 22px,1420px); }
  .gg610-local-hero { padding: 70px 5px; }
  .gg610-local-hero h1 { font-size: clamp(3.5rem,18vw,5.6rem); }
  .gg610-local-section,
  .gg610-local-meeting { padding: 34px 20px; }
  .gg610-local-heading h2 { font-size: clamp(2.5rem,12vw,4rem); }
  .gg610-local-prose,
  .gg610-local-values,
  .gg610-local-faq { grid-template-columns: 1fr; }
  .gg610-local-map,
  .gg610-local-map iframe { min-height: 350px; }
  .gg610-local-footer { align-items: flex-start; flex-direction: column; }
  .gg610-philanthropy-thumb { height: 220px; }
}

/* Ajustes finales de composición: afiche completo, acceso centrado y apertura en perspectiva. */
.gg610-next-event { grid-template-columns: minmax(430px,.9fr) minmax(0,1.25fr); align-items: stretch; }
.gg610-next-event-poster { display: grid; place-items: center; padding: clamp(10px,1.2vw,18px); background: radial-gradient(circle at 50% 44%,#4a2b1e,#160d0a 72%); }
.gg610-next-event-poster img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 720px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1061px) {
  .gg610-login-identity,
  .gg610-login-card { left: 56% !important; }
  .gg610-login-card { top: 56% !important; }
}

.gg610-door-transition,
.gg610-door-depth,
.gg610-opening-leaf { display: none !important; }

@media (max-width: 680px) {
  .gg610-next-event { grid-template-columns: 1fr; }
  .gg610-next-event-poster { padding: 8px; }
  .gg610-next-event-poster img { max-height: none; }
}

/* Acceso v0.6.5: composición centrada y controles móviles corregidos. */
.gg610-back-icon { margin-right: 6px; }

@media (min-width: 1061px) {
  .gg610-login-identity,
  .gg610-login-card {
    left: 64% !important;
    width: min(540px, calc(100% - 70px)) !important;
  }
  .gg610-login-identity { top: clamp(26px, 3.5vh, 44px) !important; }
  .gg610-login-card { top: 56% !important; }
  .gg610-ceremonial-door::after {
    top: 50% !important;
    left: 66.5% !important;
  }
}

@media (max-width: 760px) {
  body.gg610-login-active,
  body.gg610-login-active #page,
  body.gg610-login-active .wp-site-blocks { overflow: hidden !important; }

  .gg610-gateway[data-gg610-view="login"] {
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    padding: 7px !important;
    overflow: hidden !important;
  }

  .gg610-gateway:not(.is-at-door) .gg610-intro-panel,
  .gg610-intro-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(165px, 32dvh) minmax(0, 1fr) !important;
    width: calc(100vw - 14px) !important;
    height: calc(100dvh - 14px) !important;
    max-height: calc(100dvh - 14px) !important;
    padding: 0 !important;
    overflow: hidden !important;
    transform: none !important;
  }
  .gg610-intro-stone {
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    border-right: 0;
    border-bottom: 1px solid rgba(216,181,118,.42);
  }
  .gg610-intro-stone img {
    object-position: center 40%;
    filter: brightness(1.08) contrast(1.02) saturate(.94);
  }
  .gg610-intro-copy {
    justify-content: center !important;
    min-height: 0;
    padding: 12px 18px 16px !important;
    overflow: hidden;
  }
  .gg610-intro-copy .gg610-intro-logo {
    width: 52px !important;
    margin: 0 auto 5px !important;
  }
  .gg610-intro-copy .gg610-kicker {
    margin: 0;
    font-size: .52rem;
    line-height: 1.25;
  }
  .gg610-intro-copy h1 {
    margin: 5px 0 0 !important;
    font-size: clamp(1.85rem, 9vw, 2.65rem) !important;
    line-height: .98;
  }
  .gg610-intro-copy .gg610-motto {
    margin: 9px 0 0 !important;
    font-size: .57rem;
    letter-spacing: .12em;
  }
  .gg610-intro-copy .gg610-lead {
    margin: 8px 0 0;
    font-size: .74rem;
    line-height: 1.35;
  }
  .gg610-intro-copy .gg610-threshold-text,
  .gg610-local-intro-link { display: none !important; }
  .gg610-intro-panel .gg610-approach-button {
    min-width: min(255px, 86vw);
    min-height: 44px;
    margin-top: 12px !important;
    padding: 11px 19px !important;
    font-size: .7rem;
  }

  .gg610-login-stage {
    position: relative !important;
    display: grid !important;
    grid-template: 1fr / 1fr !important;
    place-items: center !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .gg610-login-identity {
    position: relative !important;
    inset: auto !important;
    z-index: 24;
    grid-area: 1 / 1;
    align-self: center;
    width: min(520px, calc(100% - 22px)) !important;
    margin: 0 !important;
    padding: 8px 11px !important;
    grid-template-columns: 39px minmax(0,1fr) !important;
    gap: 9px !important;
    transform: translateY(-188px) !important;
  }
  .gg610-login-identity img {
    width: 39px !important;
    height: 39px !important;
  }
  .gg610-login-identity .gg610-kicker {
    margin: 0 0 2px;
    font-size: .49rem;
  }
  .gg610-login-identity h1 {
    margin: 0 !important;
    font-size: clamp(1rem, 5vw, 1.28rem) !important;
    line-height: 1.02;
  }
  .gg610-login-identity p:last-child { display: none !important; }

  .gg610-login-layout {
    position: absolute !important;
    inset: 0 !important;
    z-index: 8;
    display: grid !important;
    grid-template: 1fr / 1fr !important;
    place-items: center !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
  }
  .gg610-login-card {
    position: relative !important;
    inset: auto !important;
    z-index: 23;
    grid-area: 1 / 1;
    align-self: center;
    width: min(520px, calc(100% - 22px)) !important;
    margin: 0 !important;
    padding: 13px 15px !important;
    transform: translateY(43px) !important;
    background: linear-gradient(145deg, rgba(8,10,10,.94), rgba(5,7,7,.86)) !important;
  }
  .gg610-login-form { gap: 8px !important; }
  .gg610-login-form label > span {
    margin-bottom: 4px;
    font-size: .68rem;
  }
  .gg610-login-form input {
    min-height: 41px;
    padding: 10px 14px !important;
    font-size: .86rem;
  }
  .gg610-remember { min-height: 20px; font-size: .68rem; }
  .gg610-remember input { min-height: 0; }
  .gg610-knock-button,
  .gg610-request-button {
    min-height: 41px !important;
    padding-block: 9px !important;
  }
  .gg610-sound-toggle { min-height: 22px; font-size: .7rem; }
  .gg610-access-note { display: none !important; }

  .gg610-ceremonial-door {
    position: absolute !important;
    inset: 0 !important;
    z-index: 26;
    grid-area: 1 / 1;
    width: 100% !important;
    min-height: 100% !important;
    pointer-events: none;
  }
  .gg610-door-side-info {
    position: absolute !important;
    top: 38dvh !important;
    right: 11px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 30;
    width: 46px !important;
    pointer-events: auto;
    transform: translateY(-50%);
  }
  .gg610-info-button {
    display: grid !important;
    place-items: center;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    letter-spacing: 0;
  }
  .gg610-info-button::before {
    content: "?";
    color: #f4e7cb;
    font: 700 1.35rem/1 Georgia,serif;
  }
  .gg610-ask-menu {
    position: absolute;
    top: 51px;
    right: 0;
    width: 190px;
  }
  .gg610-ceremonial-door::after {
    position: fixed !important;
    top: 46% !important;
    left: 50% !important;
  }
  .gg610-back-button {
    position: absolute !important;
    top: 10px;
    right: auto;
    bottom: auto;
    left: 10px;
    z-index: 35;
    display: grid;
    place-items: center;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    color: #efe7d9 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
  }
  .gg610-back-button .gg610-back-label { display: none !important; }
  .gg610-back-button .gg610-back-icon {
    display: block;
    margin: 0;
    color: #efe7d9 !important;
    font: 700 1.15rem/1 Arial,sans-serif !important;
  }

  .gg610-gateway.is-knocking .gg610-login-identity,
  .gg610-gateway.is-knocking .gg610-login-card { transform: none !important; }
}

@media (max-width: 760px) and (max-height: 700px) {
  .gg610-intro-panel,
  .gg610-gateway:not(.is-at-door) .gg610-intro-panel {
    grid-template-rows: minmax(145px, 29dvh) minmax(0,1fr) !important;
  }
  .gg610-intro-copy .gg610-lead { display: none; }
  .gg610-login-identity { transform: translateY(-168px) !important; }
  .gg610-login-card {
    padding-block: 10px !important;
    transform: translateY(41px) !important;
  }
  .gg610-login-form { gap: 6px !important; }
}

@media (max-width: 760px) and (max-height: 560px) {
  .gg610-login-stage:focus-within .gg610-login-identity,
  .gg610-login-stage:focus-within .gg610-remember,
  .gg610-login-stage:focus-within .gg610-request-button,
  .gg610-login-stage:focus-within .gg610-sound-toggle { display: none !important; }
  .gg610-login-stage:focus-within .gg610-login-card {
    align-self: start;
    margin-top: 8px !important;
    transform: none !important;
  }
}

/* Escritorio v0.6.6: puerta reencuadrada y controles sobre una misma línea. */
@media (min-width: 1061px) {
  .gg610-login-stage {
    height: calc(100dvh - 72px) !important;
  }
  .gg610-gateway.is-at-door .gg610-scene--entrance {
    background-color: #050606;
    background-position: calc(52vw - 121.8dvh) 44% !important;
    background-size: auto 118dvh !important;
    transform: none !important;
  }
  .gg610-login-identity,
  .gg610-login-card {
    left: 52% !important;
    width: min(540px, calc(100% - 70px)) !important;
  }
  .gg610-ceremonial-door::after {
    top: 49% !important;
    left: 52% !important;
  }
  .gg610-back-button,
  .gg610-door-side-info {
    position: absolute !important;
    top: auto !important;
    bottom: 28px !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
  }
  .gg610-back-button {
    right: auto !important;
    left: 52% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .gg610-door-side-info {
    right: auto !important;
    left: 78% !important;
  }
  .gg610-info-button {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 19px !important;
  }
  .gg610-door-side-info .gg610-ask-menu {
    position: absolute;
    right: 0;
    bottom: 53px;
    width: 210px;
    margin: 0;
  }
}
