/* ================================================
   EVANO LOUNGE — Complete Theme
   All styles for evano.html, evano-carta.html,
   evano-reservas.html
================================================ */

/* ── VARIABLES ───────────────────────────── */
:root {
  --el-bg:           #070C15;
  --el-surface:      #0C1626;
  --el-surface-2:    #111F33;
  --el-border:       rgba(63,196,193,0.10);
  --el-border-hard:  #1A2A3F;
  --el-text:         #EDF1F8;
  --el-text-muted:   rgba(237,241,248,0.48);
  --el-accent:       #3FC4C1;     /* Cyan/teal from logo */
  --el-accent-dim:   rgba(63,196,193,0.15);
  --el-accent-glow:  rgba(63,196,193,0.22);
  --el-gold:         #C9A84C;
  --el-gold-dim:     rgba(201,168,76,0.12);
  --el-whatsapp:     #25D366;
  --el-white:        #FFFFFF;

  --font-head-el: 'Cormorant Garamond', Georgia, serif;
  --font-body-el: 'DM Sans', system-ui, sans-serif;

  --nav-h-el:     72px;
  --section-v-el: 96px;
  --radius-el:    3px;
  --ease-el:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE ────────────────────────────────── */
body {
  font-family: var(--font-body-el);
  background: var(--el-bg);
  color: var(--el-text);
}

/* ── TYPOGRAPHY ──────────────────────────── */
.el-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--el-accent);
  display: block;
}

.el-h1 {
  font-family: var(--font-head-el);
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 1.02;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--el-text);
}

.el-h2 {
  font-family: var(--font-head-el);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.015em;
  color: var(--el-text);
}

.el-h3 {
  font-family: var(--font-head-el);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--el-text);
}

.el-body {
  font-size: 1.05rem;
  color: var(--el-text-muted);
  line-height: 1.78;
}

.el-rule {
  width: 44px;
  height: 1px;
  background: var(--el-accent);
  border: none;
  display: block;
  margin: 18px 0 26px;
  opacity: 0.7;
}
.el-rule.center { margin: 18px auto 26px; }

/* ── BUTTONS ─────────────────────────────── */
.el-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-el);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease-el);
  line-height: 1;
  white-space: nowrap;
}
.el-btn:hover { transform: translateY(-1px); }
.el-btn svg { width: 16px; height: 16px; }

.el-btn-primary {
  background: var(--el-accent);
  color: var(--el-bg);
  border-color: var(--el-accent);
  font-weight: 700;
}
.el-btn-primary:hover {
  background: #54d0cd;
  border-color: #54d0cd;
  box-shadow: 0 6px 28px var(--el-accent-glow);
}

.el-btn-outline {
  background: transparent;
  color: var(--el-text);
  border-color: rgba(237,241,248,0.25);
}
.el-btn-outline:hover {
  border-color: var(--el-text);
  background: rgba(237,241,248,0.06);
}

.el-btn-gold {
  background: var(--el-gold);
  color: var(--el-bg);
  border-color: var(--el-gold);
  font-weight: 700;
}
.el-btn-gold:hover {
  background: #dbb94f;
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
}

.el-btn-ghost {
  background: transparent;
  color: var(--el-accent);
  border-color: transparent;
  padding-left: 0;
  font-size: 0.88rem;
}
.el-btn-ghost:hover { gap: 13px; }

.el-btn-wa {
  background: var(--el-whatsapp);
  color: #fff;
  border-color: var(--el-whatsapp);
}
.el-btn-wa:hover {
  background: #1daf55;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

/* ── NAV ─────────────────────────────────── */
.el-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h-el);
  z-index: 900;
  background: rgba(7,12,21,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.el-nav.scrolled {
  border-color: var(--el-border);
  box-shadow: 0 1px 32px rgba(0,0,0,0.4);
}

.el-nav .nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.el-nav .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.el-nav .nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.el-nav .nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
.el-nav .nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-el);
  color: var(--el-text-muted);
  transition: color 0.2s, background 0.2s;
}
.el-nav .nav-links a:hover,
.el-nav .nav-links a.active {
  color: var(--el-accent);
  background: var(--el-accent-dim);
}

.el-nav .nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.el-nav .nav-back {
  font-size: 0.8rem;
  color: var(--el-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid var(--el-border-hard);
  border-radius: var(--radius-el);
  transition: all 0.2s;
  margin-left: 12px;
}
.el-nav .nav-back:hover { color: var(--el-text); border-color: var(--el-accent); }

/* Hamburger */
.el-nav .nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 16px;
}
.el-nav .nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--el-text-muted);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-el), opacity 0.3s;
}
.el-nav .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--el-text); }
.el-nav .nav-toggle.open span:nth-child(2) { opacity: 0; }
.el-nav .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--el-text); }

/* Mobile nav */
.el-nav-mobile {
  position: fixed;
  top: var(--nav-h-el);
  left: 0; right: 0;
  background: var(--el-surface);
  border-bottom: 1px solid var(--el-border);
  padding: 12px 24px 24px;
  transform: translateY(-108%);
  opacity: 0;
  transition: transform 0.35s var(--ease-el), opacity 0.3s var(--ease-el);
  z-index: 899;
}
.el-nav-mobile.open {
  transform: none;
  opacity: 1;
}
.el-nav-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--el-text);
  border-bottom: 1px solid var(--el-border-hard);
}
.el-nav-mobile a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────── */
.el-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.el-hero-bg {
  position: absolute;
  inset: 0;
  /* Sustituir src por imagen real del local (ambiente nocturno) */
  background-image: url('https://images.unsplash.com/photo-1566417713940-fe7c737a9ef2?auto=format&fit=crop&w=1800&q=85');
  background-size: cover;
  background-position: center;
}

.el-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,12,21,0.95) 0%,
    rgba(7,12,21,0.55) 45%,
    rgba(7,12,21,0.25) 100%
  );
}

/* Atmospheric glow */
.el-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(63,196,193,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(201,168,76,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.el-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h-el) + 48px) 0 88px;
}

.el-hero-content .el-eyebrow {
  margin-bottom: 18px;
}

.el-hero-content .el-h1 {
  margin-bottom: 18px;
  max-width: 700px;
  text-shadow: 0 2px 40px rgba(7,12,21,0.6);
}

.el-hero-content .el-body {
  max-width: 520px;
  margin-bottom: 36px;
}

.el-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ── SECTION LAYOUT ──────────────────────── */
.el-section {
  padding: var(--section-v-el) 0;
}

.el-section-head {
  margin-bottom: 52px;
}
.el-section-head.center {
  text-align: center;
}
.el-section-head.center .el-rule { margin: 18px auto 26px; }
.el-section-head.center .el-eyebrow { display: inline-block; }

/* Two-column */
.el-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

/* ── COCKTAIL CARDS ──────────────────────── */
.el-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.el-card {
  border-radius: var(--radius-el);
  overflow: hidden;
  background: var(--el-surface);
  border: 1px solid var(--el-border-hard);
  transition: transform 0.3s var(--ease-el),
              box-shadow 0.3s var(--ease-el),
              border-color 0.3s var(--ease-el);
}
.el-card:hover {
  transform: translateY(-5px);
  border-color: var(--el-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 40px var(--el-accent-glow);
}

.el-card-img-wrap {
  height: 240px;
  overflow: hidden;
}
.el-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-el);
  filter: brightness(0.9);
}
.el-card:hover .el-card-img-wrap img { transform: scale(1.05); filter: brightness(1); }

.el-card-body {
  padding: 22px 24px 26px;
}
.el-card-body .el-h3 { margin-bottom: 8px; }
.el-card-body p {
  font-size: 0.9rem;
  color: var(--el-text-muted);
  line-height: 1.6;
}

/* ── SERVICES GRID ───────────────────────── */
.el-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--el-border-hard);
  border: 1px solid var(--el-border-hard);
  border-radius: var(--radius-el);
  overflow: hidden;
}

.el-service-item {
  background: var(--el-surface);
  padding: 28px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.2s;
}
.el-service-item:hover { background: var(--el-surface-2); }

.el-service-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--el-accent-dim);
  border-radius: 50%;
  color: var(--el-accent);
  border: 1px solid var(--el-border);
}
.el-service-icon svg { width: 20px; height: 20px; }

.el-service-body h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--el-text);
  margin-bottom: 5px;
}
.el-service-body p {
  font-size: 0.87rem;
  color: var(--el-text-muted);
  line-height: 1.6;
}

/* ── ATMOSPHERE GALLERY ──────────────────── */
.el-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.el-gallery-item {
  border-radius: var(--radius-el);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--el-border-hard);
}
.el-gallery-item.tall { height: 420px; grid-row: span 2; }

.el-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.4s, transform 0.4s;
}
.el-gallery-item:hover img { filter: brightness(1) saturate(1.05); transform: scale(1.03); }

/* ── CONTACT ─────────────────────────────── */
.el-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.el-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.el-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.el-contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--el-accent-dim);
  border-radius: 50%;
  color: var(--el-accent);
  border: 1px solid var(--el-border);
}
.el-contact-icon svg { width: 18px; height: 18px; }

.el-contact-item-body dt {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--el-text-muted);
  margin-bottom: 3px;
}
.el-contact-item-body dd {
  font-size: 0.95rem;
  color: var(--el-text);
  line-height: 1.5;
}
.el-contact-item-body a { color: var(--el-text); transition: color 0.2s; }
.el-contact-item-body a:hover { color: var(--el-accent); }

.el-contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.el-map-wrap {
  height: 380px;
  border-radius: var(--radius-el);
  overflow: hidden;
  border: 1px solid var(--el-border-hard);
}
.el-map-wrap iframe { width: 100%; height: 100%; display: block; }

/* ── PAGE HERO (Carta / Reservas) ────────── */
.el-page-hero {
  background: var(--el-surface);
  border-bottom: 1px solid var(--el-border-hard);
  padding: calc(var(--nav-h-el) + 56px) 0 52px;
}

.el-page-hero .el-eyebrow { margin-bottom: 10px; }
.el-page-hero .el-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}
.el-page-hero .el-body { margin-top: 16px; }

/* ── CARTA TABS ──────────────────────────── */
.el-menu-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--el-border-hard);
  border-radius: var(--radius-el);
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  margin-bottom: 48px;
  scrollbar-width: none;
}
.el-menu-tabs::-webkit-scrollbar { display: none; }

.el-menu-tab {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--el-text-muted);
  background: var(--el-surface);
  border-right: 1px solid var(--el-border-hard);
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}
.el-menu-tab:last-child { border-right: none; }
.el-menu-tab:hover { color: var(--el-text); background: var(--el-surface-2); }
.el-menu-tab.active {
  background: var(--el-accent);
  color: var(--el-bg);
  border-color: var(--el-accent);
  font-weight: 700;
}

.el-menu-panel { display: none; }
.el-menu-panel.active { display: block; animation: fadeUp 0.3s ease; }

/* Menu list */
.el-menu-list { display: flex; flex-direction: column; }

.el-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--el-border-hard);
}
.el-menu-item:last-child { border-bottom: none; }

.el-menu-item-info h4 {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--el-text);
  margin-bottom: 3px;
}
.el-menu-item-info p {
  font-size: 0.84rem;
  color: var(--el-text-muted);
}

.el-menu-item-price {
  font-family: var(--font-body-el);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--el-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.el-menu-section { margin-bottom: 56px; }
.el-menu-section:last-child { margin-bottom: 0; }
.el-menu-section-title {
  font-family: var(--font-head-el);
  font-size: 2.8rem;
  font-style: italic;
  font-weight: 700;
  color: var(--el-text);
  letter-spacing: .01em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--el-border-hard);
  margin-bottom: 8px;
}

.el-menu-list-intro {
  padding: 12px 0 10px;
  font-size: .86rem;
  font-style: italic;
  color: var(--el-text-muted);
  line-height: 1.65;
  border-bottom: 1px solid var(--el-border-hard);
}

/* ── RESERVAS FORM ────────────────────────── */
.el-form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.el-form-card {
  background: var(--el-surface);
  border: 1px solid var(--el-border-hard);
  border-radius: var(--radius-el);
  padding: 40px 32px;
}
.el-form-card-title {
  font-family: var(--font-head-el);
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--el-border-hard);
  color: var(--el-text);
}

.el-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.el-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.el-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--el-text-muted);
}

.el-field input,
.el-field select,
.el-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--el-border-hard);
  border-radius: var(--radius-el);
  background: var(--el-bg);
  color: var(--el-text);
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.el-field input:focus,
.el-field select:focus,
.el-field textarea:focus {
  border-color: var(--el-accent);
  box-shadow: 0 0 0 3px var(--el-accent-dim);
}
.el-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.el-field input::placeholder,
.el-field textarea::placeholder { color: var(--el-text-muted); }

.el-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(237,241,248,0.4)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.el-field select option { background: var(--el-surface); }

.el-form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.el-form-note {
  font-size: 0.8rem;
  color: var(--el-text-muted);
}

.el-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.el-info-card {
  background: var(--el-surface);
  border: 1px solid var(--el-border-hard);
  border-radius: var(--radius-el);
  padding: 24px;
}
.el-info-card h3 {
  font-family: var(--font-head-el);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--el-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--el-border-hard);
}
.el-info-card dl { display: flex; flex-direction: column; gap: 14px; }
.el-info-card dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--el-accent);
  margin-bottom: 2px;
}
.el-info-card dd {
  font-size: 0.92rem;
  color: var(--el-text);
}

/* ── FOOTER ───────────────────────────────── */
.el-footer {
  background: #040810;
  border-top: 1px solid var(--el-border-hard);
  color: var(--el-text-muted);
  padding: 64px 0 32px;
}

.el-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--el-border-hard);
  margin-bottom: 28px;
}

.el-footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.el-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.el-footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--el-accent);
  margin-bottom: 16px;
}
.el-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.el-footer-col ul a { font-size: 0.88rem; transition: color 0.2s; }
.el-footer-col ul a:hover { color: var(--el-text); }

.el-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.el-footer-bottom p { font-size: 0.8rem; }
.el-footer-switch {
  font-size: 0.8rem;
  color: var(--el-text-muted);
  border: 1px solid var(--el-border-hard);
  padding: 6px 16px;
  border-radius: var(--radius-el);
  transition: all 0.2s;
}
.el-footer-switch:hover { color: var(--el-accent); border-color: var(--el-accent); }

/* ── BG VARIANTS ─────────────────────────── */
.el-bg-surface  { background: var(--el-surface); }
.el-bg-surface2 { background: var(--el-surface-2); }
.el-bg-dark     { background: var(--el-bg); }

/* ── MOBILE — Global fixes ───────────────── */
@media (max-width: 767px) {
  :root { --section-v-el: 48px; }

  .el-menu-item-price { font-size: 0.82rem; }

  .el-nav .nav-logo img { height: 46px; }

  /* Reduce scroll: hide heavy sections on mobile */
  section:has(.el-services-grid) { display: none; }
  section:has(.el-gallery-grid) { display: none; }

  /* Hide about image on mobile */
  section:has(.el-two-col) .el-two-col > .reveal[data-delay="2"]:has(img) { display: none; }

  /* Mordidas cards: 2 cols on mobile */
  section:has(.el-section-head) [style*="repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }

  .el-hero-content {
    padding-top: calc(var(--nav-h-el) + 40px);
    padding-bottom: 80px;
  }

  .el-hero-content .el-body { margin-bottom: 8px; }

  .el-hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 32px;
  }
  .el-hero-btns .el-btn { width: 100%; justify-content: center; }
}

/* ── MOBILE ACCORDION (carta) ────────────── */
@media (max-width: 767px) {
  .el-menu-tabs { display: none; }

  .el-menu-panel { display: block !important; animation: none !important; }

  .el-menu-section {
    border: 1px solid var(--el-border-hard);
    border-radius: var(--radius-el);
    margin-bottom: 8px;
    overflow: hidden;
  }

  .el-menu-section-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 0;
    border-bottom: none;
    background: var(--el-surface-2);
    user-select: none;
    -webkit-user-select: none;
    font-size: 1.2rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: .01em;
  }
  .el-menu-section-title::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--el-accent);
    border-bottom: 2px solid var(--el-accent);
    transform: rotate(45deg);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-bottom: 2px;
  }
  .el-menu-section-title.acc-open::after { transform: rotate(-45deg); }

  .el-menu-list {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    padding: 0 16px;
  }

  .el-menu-item { padding: 14px 0; font-size: 0.9rem; }

  .el-menu-list-intro { font-size: .82rem; }
}

/* ── RESPONSIVE ───────────────────────────── */
@media (min-width: 640px) {
  .el-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .el-form-row-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .el-nav .nav-links { display: flex; }
  .el-nav .nav-actions { display: flex; }
  .el-nav .nav-toggle { display: none; }

  .el-services-grid { grid-template-columns: repeat(2, 1fr); }
  .el-contact-grid { grid-template-columns: 1fr 1fr; }
  .el-two-col { grid-template-columns: 1fr 1fr; }
  .el-footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .el-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .el-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .el-gallery-item { height: 220px; }
  .el-gallery-item.tall { height: 452px; }
}

@media (min-width: 1024px) {
  :root { --section-v-el: 112px; }
  .el-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .el-services-grid { grid-template-columns: repeat(3, 1fr); }
  .el-form-layout { grid-template-columns: 1.4fr 1fr; }
}

/* ── FLOATING REVIEW BUTTON ─────────────── */
.el-review-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--el-surface-2);
  border: 1px solid var(--el-border-hard);
  border-radius: 100px;
  color: var(--el-text);
  text-decoration: none;
  font-family: var(--font-body-el);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(0,0,0,.45);
  transition: background .2s, border-color .2s, transform .18s;
}
.el-review-btn:hover {
  background: var(--el-surface-hard, #2a2a2a);
  border-color: var(--el-gold);
  transform: translateY(-2px);
}
.el-review-btn svg { color: #F0B429; flex-shrink: 0; }

@media (max-width: 767px) {
  .el-review-btn { padding: 12px; border-radius: 50%; }
  .el-review-btn span { display: none; }
}

