/*!
 * interior.css — estilos para páginas interiores
 * @package nogal-landing-v2
 * @since   1.3.0
 *
 * Scope: /reservas/, /cancelacion/ (enqueued por is_page_template()).
 * Self-contained: incluye variables, typography, nav, btn, footer
 * además de las secciones específicas (hero-short, motor, consulta,
 * por-que, faq, policy, cta-wa).
 *
 * NO tiene el prefijo .home-v2 de landing.css — es el scope propio de
 * estas pages. El enqueue condicional garantiza que no se mezcla con landing.
 */

/* ========================================================================== */
/* BASE — variables + typography + resets                                     */
/* ========================================================================== */

:root {
	--granate: #6E0200;
	--granate-soft: #8a1a18;
	--granate-deep: #4a0100;
	--granate-tint: #f7eceb;
	--ink: #1a1a1a;
	--ink-soft: #4a4a4a;
	--paper: #ffffff;
	--cream: #faf7f2;
	--gold: #c9a35a;
	--line: #e8e2da;
	--serif: 'Cormorant Garamond', 'Times New Roman', serif;
	--sans: 'Figtree', -apple-system, system-ui, sans-serif;
}

html { color-scheme: light; scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.6; font-weight: 300; overflow-x: hidden; }
body * { box-sizing: border-box; }
main.interior-main img { max-width: 100%; display: block; }
main.interior-main a { color: inherit; text-decoration: none; }
main.interior-main button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ========================================================================== */
/* NAV — state scrolled permanente (hay hero-short corto arriba)              */
/* ========================================================================== */

.nav--interior { position: fixed; top: 0; left: 0; right: 0; padding: 1.1rem 2rem; display: flex; align-items: center; justify-content: space-between; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(0,0,0,.06); transition: padding .3s ease; }
.nav--interior .logo { color: var(--ink); line-height: 1; display: block; }
.nav--interior .logo-mark { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; letter-spacing: .18em; display: block; }
.nav--interior .logo-sub { font-size: .6rem; letter-spacing: .35em; text-transform: uppercase; opacity: .8; margin-top: 2px; display: block; }
.nav--interior .nav-links { display: none; gap: 2rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); align-items: center; list-style: none; margin: 0; padding: 0; }
.nav--interior .nav-links a { position: relative; padding: .25rem 0; }
.nav--interior .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--granate); transition: width .3s ease; }
.nav--interior .nav-links a:hover::after { width: 100%; }
.nav--interior .nav-links a.active::after { width: 100%; }
.nav--interior .nav-cta { background: var(--granate) !important; color: var(--paper) !important; padding: .6rem 1.25rem !important; letter-spacing: .1em !important; }
.nav--interior .nav-cta::after { display: none; }
.nav--interior .nav-cta:hover { background: var(--granate-soft) !important; }
.nav--interior .burger { width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 101; }
.nav--interior .burger span { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: all .35s cubic-bezier(.7,0,.3,1); }
.nav--interior .burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--interior .burger.active span:nth-child(2) { opacity: 0; }
.nav--interior .burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MENU OVERLAY mobile */
.menu-overlay { position: fixed; inset: 0; background: var(--paper); z-index: 99; transform: translateY(-100%); transition: transform .6s cubic-bezier(.7,0,.3,1); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; }
.menu-overlay.open { transform: translateY(0); }
.menu-overlay ul { list-style: none; text-align: center; margin: 0; padding: 0; }
.menu-overlay li { opacity: 0; transform: translateY(20px); transition: all .5s ease; }
.menu-overlay.open li { opacity: 1; transform: translateY(0); }
.menu-overlay.open li:nth-child(1) { transition-delay: .15s; }
.menu-overlay.open li:nth-child(2) { transition-delay: .22s; }
.menu-overlay.open li:nth-child(3) { transition-delay: .29s; }
.menu-overlay.open li:nth-child(4) { transition-delay: .36s; }
.menu-overlay.open li:nth-child(5) { transition-delay: .43s; }
.menu-overlay.open li:nth-child(6) { transition-delay: .5s; }
.menu-overlay.open li:nth-child(7) { transition-delay: .57s; }
.menu-overlay.open li:nth-child(8) { transition-delay: .64s; }
.menu-overlay.open li:nth-child(9) { transition-delay: .71s; }
.menu-overlay a { font-family: var(--serif); font-size: clamp(2rem, 7vw, 4rem); font-weight: 400; color: var(--ink); padding: .4rem 0; display: block; transition: color .3s, letter-spacing .3s; }
.menu-overlay a:hover { color: var(--granate); font-style: italic; letter-spacing: .02em; }
.menu-footer { margin-top: 2.5rem; text-align: center; color: var(--ink-soft); font-size: .8rem; }
.menu-footer .line { width: 40px; height: 1px; background: var(--granate); margin: 0 auto 1rem; }

@media (min-width: 860px) { .nav--interior .nav-links { display: flex; } .nav--interior .burger { display: none; } }
@media (max-width: 480px) { .nav--interior { padding: .9rem 1.1rem; } }

/* ========================================================================== */
/* HERO CORTO — 50vh desktop / 40vh mobile                                    */
/* ========================================================================== */

.hero-short { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--paper); padding-top: 4rem; }
.hero-short-bg { position: absolute; inset: 0; z-index: 0; }
.hero-short-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5) saturate(1.05); }
.hero-short-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.75) 100%), radial-gradient(ellipse at 80% 20%, rgba(110,2,0,.25) 0%, transparent 55%); }
.hero-short-inner { position: relative; z-index: 2; padding: 0 2rem; max-width: 900px; text-align: center; }
.hero-short .eyebrow { display: inline-flex; align-items: center; gap: .75rem; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero-short .eyebrow::before, .hero-short .eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-short h1 { font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 300; line-height: 1.02; letter-spacing: -.01em; margin-bottom: 1rem; color: #fff !important; text-shadow: 0 2px 20px rgba(0,0,0,.7) !important; }
.hero-short p.lede { font-size: clamp(.98rem, 1.25vw, 1.1rem); max-width: 680px; margin: 0 auto; color: rgba(255,255,255,.88) !important; font-weight: 300; }
@media (max-width: 480px) { .hero-short { height: 40vh; min-height: 320px; } .hero-short-inner { padding: 0 1.25rem; } }

/* ========================================================================== */
/* SECTIONS base + heads                                                      */
/* ========================================================================== */

section.interior { padding: 5.5rem 2rem; }
.interior-main .wrap { max-width: 1280px; margin: 0 auto; }
.interior-main .section-head { display: grid; gap: 1rem; margin-bottom: 3.5rem; text-align: center; }
.interior-main .section-label { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--granate); font-weight: 500; display: inline-flex; align-items: center; gap: .75rem; justify-content: center; }
.interior-main .section-label::before, .interior-main .section-label::after { content: '—'; color: var(--granate); }
.interior-main .section-title { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400; line-height: 1.05; letter-spacing: -.01em; max-width: 820px; margin: 0 auto; color: var(--ink); }
.interior-main .section-title em { font-style: italic; color: var(--granate); font-weight: 400; }
.interior-main .section-sub { color: var(--ink-soft); max-width: 620px; font-size: 1.02rem; margin: 0 auto; }

@media (min-width: 860px) { section.interior { padding: 7rem 3rem; } }
@media (max-width: 480px) { section.interior { padding: 4rem 1.25rem; } }

/* ========================================================================== */
/* BUTTONS                                                                    */
/* ========================================================================== */

.interior-main .btn { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: 1.1rem 1.85rem; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; border-radius: 2px; transition: all .3s ease; cursor: pointer; }
.interior-main .btn-primary { background: var(--granate); color: var(--paper); border: 1px solid var(--granate); }
.interior-main .btn-primary:hover { background: var(--granate-soft); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(110,2,0,.35); }
.interior-main .btn-outline { background: transparent; color: var(--granate); border: 1px solid var(--granate); }
.interior-main .btn-outline:hover { background: var(--granate); color: var(--paper); }
.interior-main .btn .arrow { display: inline-block; transition: transform .3s ease; }
.interior-main .btn:hover .arrow { transform: translateX(4px); }
.interior-main .btn-wa { background: #25D366; color: #fff; border: 1px solid #25D366; }
.interior-main .btn-wa:hover { background: #1da851; border-color: #1da851; box-shadow: 0 10px 28px rgba(37,211,102,.35); }
.interior-main .btn-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* ========================================================================== */
/* MOTOR / CONSULTA — frames para shortcodes del plugin                       */
/* ========================================================================== */

.motor { background: var(--cream); }
.consulta { background: var(--cream); }
.motor-frame, .consulta-frame { max-width: 900px; margin: 0 auto; background: var(--paper); box-shadow: 0 20px 50px rgba(20,8,6,.08); padding: 2.5rem 2rem; border-top: 3px solid var(--granate); }
.consulta-frame { max-width: 640px; }
@media (min-width: 860px) { .motor-frame, .consulta-frame { padding: 3rem 2.5rem; } }

/* ========================================================================== */
/* PLUGIN SHORTCODE OVERRIDES — adaptar [nogal_reservas] y [nogal_consulta_reserva] */
/* a la paleta granate + tipografías + spacing del sitio.                     */
/* Las clases .nr-* son del plugin (ver templates/shortcode.php y consulta.php).*/
/* ========================================================================== */

/* Frame del plugin dentro de nuestro .motor-frame / .consulta-frame */
.interior-main .nogal-reservas { font-family: var(--sans); }
.interior-main .nogal-reservas__search-form,
.interior-main .nogal-reservas__consulta-form { margin-top: 1rem; }

/* v1.3.1 — ocultar cabecera interna del plugin (logo + título + divider)
 * porque las páginas ya tienen hero custom que cumple esa función.
 * Aplica tanto al wizard completo ([nogal_reservas]) como al consulta ([nogal_consulta_reserva]). */
.page-template-page-reservas .nogal-reservas .nr-brand,
.page-template-page-cancelacion .nogal-reservas .nr-brand {
	display: none !important;
}
/* Padding top al form post-ocultamiento para que respire sin la cabecera */
.page-template-page-reservas .nogal-reservas .nr-step[data-step="search"],
.page-template-page-cancelacion .nogal-reservas .nr-form--consulta {
	padding-top: 1rem;
}

/* Titles del plugin → Cormorant */
.interior-main .nogal-reservas h2,
.interior-main .nogal-reservas h3,
.interior-main .nogal-reservas__title { font-family: var(--serif); font-weight: 400; color: var(--ink); }

/* Inputs del plugin: underline minimal estilo sitio */
.interior-main .nogal-reservas input[type="text"],
.interior-main .nogal-reservas input[type="email"],
.interior-main .nogal-reservas input[type="tel"],
.interior-main .nogal-reservas input[type="date"],
.interior-main .nogal-reservas input[type="number"],
.interior-main .nogal-reservas select,
.interior-main .nr-field input,
.interior-main .nr-field select { border: none !important; border-bottom: 1px solid var(--line) !important; padding: .7rem 0 !important; font-family: var(--sans) !important; font-size: 1rem !important; background: transparent !important; color: var(--ink) !important; border-radius: 0 !important; }
.interior-main .nogal-reservas input:focus,
.interior-main .nogal-reservas select:focus,
.interior-main .nr-field input:focus,
.interior-main .nr-field select:focus { outline: none !important; border-color: var(--granate) !important; box-shadow: none !important; }

/* Labels del plugin */
.interior-main .nogal-reservas label,
.interior-main .nr-field label { font-size: .7rem !important; letter-spacing: .22em !important; text-transform: uppercase !important; color: var(--granate) !important; font-weight: 500 !important; font-family: var(--sans) !important; }

/* Botones del plugin → granate con misma estética que .btn-primary */
.interior-main .nogal-reservas button,
.interior-main .nogal-reservas .nogal-reservas__btn,
.interior-main .nogal-reservas [type="submit"],
.interior-main .nr-btn { background: var(--granate) !important; color: var(--paper) !important; border: 1px solid var(--granate) !important; padding: 1.1rem 1.85rem !important; font-size: .82rem !important; letter-spacing: .14em !important; text-transform: uppercase !important; font-weight: 500 !important; border-radius: 2px !important; transition: all .3s ease !important; font-family: var(--sans) !important; cursor: pointer !important; }
.interior-main .nogal-reservas button:hover,
.interior-main .nogal-reservas [type="submit"]:hover,
.interior-main .nr-btn:hover { background: var(--granate-soft) !important; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(110,2,0,.35); }

/* Room cards del plugin (si aparecen en el wizard) */
.interior-main .nogal-reservas__room,
.interior-main .nr-room-card { border: 1px solid var(--line); border-radius: 0; }
.interior-main .nogal-reservas__room-title,
.interior-main .nr-room-title { font-family: var(--serif); color: var(--ink); }

/* Banners/errores del plugin */
.interior-main .nr-banner { border-radius: 0; }
.interior-main .nr-banner.is-error { background: var(--granate-tint); border-left: 3px solid var(--granate); color: var(--granate-deep); }

/* ========================================================================== */
/* ¿POR QUÉ RESERVAR DIRECTO? (3 cards)                                       */
/* ========================================================================== */

.por-que { background: var(--paper); }
.por-que-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
.por-que-card { padding: 2.5rem 2rem; background: var(--cream); text-align: center; border-top: 3px solid var(--granate); transition: transform .3s ease, box-shadow .3s ease; }
.por-que-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(20,8,6,.08); }
.por-que-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--granate-tint); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; color: var(--granate); }
.por-que-icon svg { width: 28px; height: 28px; }
.por-que-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: .75rem; color: var(--ink); }
.por-que-card p { color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
@media (min-width: 860px) { .por-que-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

/* ========================================================================== */
/* FAQ ACCORDION                                                              */
/* ========================================================================== */

.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--paper); border-left: 2px solid var(--line); transition: border-color .3s; }
.faq-item[open] { border-left-color: var(--granate); }
.faq-item summary { list-style: none; padding: 1.5rem 1.75rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--ink); transition: color .3s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--granate); }
.faq-item[open] summary { color: var(--granate); }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--granate); font-family: var(--sans); font-weight: 300; transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-body { padding: 0 1.75rem 1.5rem; color: var(--ink-soft); font-size: .98rem; line-height: 1.65; max-width: 720px; }
.faq-body a { color: var(--granate); text-decoration: underline; text-decoration-color: rgba(110,2,0,.35); text-underline-offset: 3px; transition: text-decoration-color .3s; }
.faq-body a:hover { text-decoration-color: var(--granate); }

/* ========================================================================== */
/* POLICY BLOCK (/cancelacion/)                                               */
/* ========================================================================== */

.policy { background: var(--paper); }
.policy-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.policy-row { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: center; padding: 1.5rem 1.75rem; background: var(--cream); transition: background .3s; }
.policy-row:hover { background: var(--granate-tint); }
.policy-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--granate); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.policy-icon svg { width: 22px; height: 22px; }
.policy-icon.warn { background: var(--gold); }
.policy-icon.fail { background: var(--granate-deep); }
.policy-text h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; margin-bottom: .25rem; color: var(--ink); }
.policy-text p { color: var(--ink-soft); font-size: .95rem; line-height: 1.4; }
.policy-note { max-width: 820px; margin: 2rem auto 0; padding: 1.25rem 1.5rem; background: var(--granate-tint); border-left: 3px solid var(--granate); font-size: .95rem; color: var(--ink); line-height: 1.55; border-radius: 2px; }

/* ========================================================================== */
/* SERVICIOS — grid 2x2 desktop / stack mobile                                */
/* ========================================================================== */

.servicios-section { background: var(--cream); }
.servicios-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.servicio-card { background: var(--paper); overflow: hidden; box-shadow: 0 10px 30px rgba(20,8,6,.06); transition: transform .4s ease, box-shadow .4s ease; display: flex; flex-direction: column; }
.servicio-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(20,8,6,.12); }
.servicio-img { aspect-ratio: 16/10; overflow: hidden; background: #3a2818; flex-shrink: 0; }
.servicio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.servicio-card:hover .servicio-img img { transform: scale(1.05); }
.servicio-body { padding: 2rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.servicio-eyebrow { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--granate); font-weight: 500; margin-bottom: .75rem; display: block; }
.servicio-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 1.85rem); font-weight: 400; margin-bottom: 1rem; color: var(--ink); line-height: 1.1; }
.servicio-copy { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; margin-bottom: 1.75rem; flex: 1; }
.servicio-card .btn-wa { width: 100%; justify-content: center; }

@media (min-width: 860px) {
	.servicios-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
}

/* ========================================================================== */
/* PROMOCIONES — frame central "Próximamente" + beneficios                    */
/* ========================================================================== */

.promo-coming { background: var(--paper); }
.promo-coming-frame { max-width: 720px; margin: 0 auto; background: var(--cream); padding: 3.5rem 2rem; text-align: center; border-top: 3px solid var(--granate); }
@media (min-width: 640px) { .promo-coming-frame { padding: 4.5rem 3rem; } }
.promo-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--granate-tint); margin: 0 auto 2rem; display: flex; align-items: center; justify-content: center; color: var(--granate); }
.promo-icon svg { width: 38px; height: 38px; }
.promo-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 400; color: var(--ink); margin-bottom: 1.25rem; line-height: 1.1; }
.promo-copy { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.promo-beneficios { text-align: left; padding-top: 2rem; border-top: 1px solid var(--line); margin-bottom: 2.5rem; }
.promo-beneficios-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-bottom: 1.5rem; text-align: center; letter-spacing: 0; }
.promo-beneficios-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.promo-beneficios-list li { display: grid; grid-template-columns: auto 1fr; gap: .95rem; align-items: start; color: var(--ink); font-size: .98rem; line-height: 1.5; }
.promo-beneficios-list .check { width: 24px; height: 24px; border-radius: 50%; background: var(--granate); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.promo-beneficios-list .check svg { width: 12px; height: 12px; }

.promo-coming-frame .btn-wa { margin-top: 1rem; }

/* ========================================================================== */
/* CTA WhatsApp FINAL                                                         */
/* ========================================================================== */

.cta-wa { background: var(--paper); border-top: 1px solid var(--line); }
.interior-main--cancelacion .cta-wa { background: var(--cream); }
.cta-wa-inner { max-width: 720px; margin: 0 auto; text-align: center; padding: 1rem 0; }
.cta-wa h2 { font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 2.4rem); font-weight: 400; margin-bottom: 1rem; color: var(--ink); }
.cta-wa h2 em { color: var(--granate); font-style: italic; }
.cta-wa p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-wa .btn { font-size: .88rem; padding: 1.2rem 2.2rem; }
.cta-wa-phone { display: block; margin-top: 1.5rem; color: var(--ink-soft); font-size: .95rem; }
.cta-wa-phone a { color: var(--granate); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(110,2,0,.35); text-underline-offset: 3px; }

/* ========================================================================== */
/* FOOTER                                                                     */
/* ========================================================================== */

body footer { background: #120605; color: rgba(255,255,255,.7); padding: 4rem 2rem 2rem; }
body footer .foot-grid { max-width: 1280px; margin: 0 auto; display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
body footer .foot-brand h3 { font-family: var(--serif); color: #fff !important; font-size: 1.6rem; font-weight: 500; margin-bottom: .3rem; letter-spacing: .15em; }
body footer .foot-brand .sub { font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
body footer .foot-brand p { font-size: .88rem; max-width: 320px; line-height: 1.6; color: rgba(255,255,255,.7) !important; }
body footer .foot-col h5 { color: #fff !important; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 500; }
body footer .foot-col ul { list-style: none; display: grid; gap: .55rem; font-size: .88rem; margin: 0; padding: 0; }
body footer .foot-col a { color: rgba(255,255,255,.7) !important; }
body footer .foot-col a:hover { color: var(--gold) !important; }
body footer .foot-bottom { max-width: 1280px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,.5); }
@media (min-width: 860px) { body footer .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
