/* ============================================================
   Betanzos Construcciones y Obras - Main Stylesheet
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --gold: #C9A227;
  --gold-dark: #8B6914;
  --gold-light: #E8C84A;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --cream: #F8F6F0;
  --cream-dark: #EDE9DF;
  --gray-light: #F5F5F5;
  --gray: #888888;
  --gray-dark: #444444;
  --text: #2C2C2C;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 105px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--gray-dark);
  line-height: 1.8;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.bg-cream { background-color: var(--cream); }
.bg-black { background-color: var(--black); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;        /* ocupa todo el ancho */
  padding: 0 48px;        /* margen lateral fijo, no centrado */
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 95px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.7));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 18px rgba(201,162,39,0.9));
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(201,162,39,0.5);
}

.logo-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

/* HEADER — icono + texto en el menú */
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto; /* empuja el nav a la derecha */
}
.header-icon {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.6));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.header-brand:hover .header-icon {
  filter: drop-shadow(0 0 16px rgba(201,162,39,1));
  transform: scale(1.05);
}
.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.header-brand-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Tablet (768px – 1024px) */
@media (max-width: 1024px) {
  .header .container { padding: 0 32px; }
  .header-icon { height: 58px; }
  .header-brand { gap: 11px; }
  .header-brand-name { font-size: 1.1rem; }
  .header-brand-tagline { font-size: 0.58rem; letter-spacing: 2px; }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .header .container { padding: 0 20px; }
  .header-icon { height: 46px; }
  .header-brand { gap: 9px; }
  .header-brand-name { font-size: 0.95rem; letter-spacing: 1.5px; }
  .header-brand-tagline { font-size: 0.52rem; letter-spacing: 1.5px; }
}

/* Móvil pequeño (max 480px) */
@media (max-width: 480px) {
  .header .container { padding: 0 14px; }
  .header-icon { height: 38px; }
  .header-brand { gap: 8px; }
  .header-brand-name { font-size: 0.85rem; letter-spacing: 1px; }
  .header-brand-tagline { display: none; }
}

/* HERO LOGO — protagonista junto al título */
.hero-title-block {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 28px;
}
.hero-logo {
  width: 210px;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(201,162,39,0.85));
  animation: heroPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes heroPulse {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(201,162,39,0.85)); }
  50%       { filter: drop-shadow(0 0 40px rgba(201,162,39,1)); }
}

/* Separador visual (mantenido por si acaso) */
.logo-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.5), transparent);
  margin: 0 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;   /* siempre pegado a la derecha */
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 24px);
}

.nav-link.admin-link {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  font-size: 0.82rem;
}

.nav-link.admin-link:hover {
  background: rgba(201, 162, 39, 0.2);
}

.nav-link.admin-link::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background-color: var(--black);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,26,26,0.75), rgba(26,26,26,0.85)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(201,162,39,0.08) 59px,
      rgba(201,162,39,0.08) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(201,162,39,0.08) 59px,
      rgba(201,162,39,0.08) 60px
    );
  background-size: 100% 100%, 60px 60px, 60px 60px;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139,105,20,0.08) 0%, transparent 60%);
}

/* Hero layout: 3 columnas proporcionales */
.hero-layout {
  display: grid;
  grid-template-columns: 30% 45% 15%;
  column-gap: 0;
  align-items: center;
  width: 100%;
  padding: 0 40px 0 20px;
  position: relative;
  z-index: 2;
}

/* Columna logo — izquierda con espacio */
.hero-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}
.hero-logo {
  width: 340px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 22px rgba(201,162,39,0.85));
  animation: heroPulse 3s ease-in-out infinite;
}

/* Columna texto — centro real de la página */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* Columna stats — derecha */
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h1 span {
  color: var(--gold);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 100%;
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  width: 140px;
}

.hero-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-badge .label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.08));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--gold);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-card:hover .service-link {
  gap: 10px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-main .placeholder-pattern {
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(201,162,39,0.08) 0px,
      rgba(201,162,39,0.08) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(201,162,39,0.08) 0px,
      rgba(201,162,39,0.08) 1px,
      transparent 1px,
      transparent 20px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--gold);
}

.about-image-main .placeholder-pattern i {
  font-size: 4rem;
  opacity: 0.4;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .txt {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature .icon {
  width: 36px;
  height: 36px;
  background: rgba(201,162,39,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature .icon i {
  font-size: 0.9rem;
  color: var(--gold);
}

.about-feature .text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 2px;
}

.about-feature .text span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 99px,
    rgba(201,162,39,0.04) 99px,
    rgba(201,162,39,0.04) 100px
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(201,162,39,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.portfolio-preview {
  background: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img,
.portfolio-item .portfolio-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
}

.portfolio-item:hover img,
.portfolio-item:hover .portfolio-placeholder {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content h4 {
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-overlay-content span {
  font-size: 0.8rem;
  color: var(--gold-light);
}

.portfolio-cta {
  text-align: center;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,162,39,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.why-item h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.why-item p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.why-image {
  background: linear-gradient(135deg, var(--black), #2a2a2a);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 24px;
}

.why-testimonial .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.why-testimonial p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 12px;
}

.why-testimonial .author {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111111;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-hero {
  background: var(--black);
  padding: 120px 0 60px;
  text-align: center;
}

.gallery-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.gallery-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.gallery-filters {
  background: var(--cream);
  padding: 28px 0;
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  border-bottom: 1px solid var(--cream-dark);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  color: var(--gray-dark);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.gallery-section {
  padding: 60px 0;
  min-height: 400px;
}

.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-info h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.gallery-item-info span {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.gallery-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(201,162,39,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.gallery-item:hover .play-icon {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
}

.gallery-empty i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10010;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10005;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* lightbox-caption replaced by .lightbox-info panel */

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--black);
  padding: 120px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--gold);
  font-size: 1rem;
}

.contact-info-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.contact-info-text span,
.contact-info-text a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.contact-info-text a:hover {
  color: var(--gold);
}

.schedule-block {
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}

.schedule-block h4 {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

.form-control.error {
  border-color: #e74c3c;
}

.form-control.success {
  border-color: #2ecc71;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 5px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--cream-dark);
  border-radius: 4px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.83rem;
  color: var(--gray-dark);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--gold);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  color: #27ae60;
}

.form-message.error {
  display: block;
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.3);
  color: #c0392b;
}

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-login {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  background: #1e1e1e;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.login-card .logo {
  justify-content: center;
  margin-bottom: 8px;
}

.login-card .logo-text {
  align-items: center;
}

.login-card h2 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
  margin-top: 20px;
}

.login-card > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.login-form .form-group {
  text-align: left;
}

.login-form .form-group label {
  color: rgba(255,255,255,0.75);
}

.login-form .form-control {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}

.login-form .form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.login-form .form-control::placeholder {
  color: rgba(255,255,255,0.25);
}

.login-error {
  background: rgba(231,76,60,0.15);
  border: 1px solid rgba(231,76,60,0.3);
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: none;
}

.admin-dashboard {
  display: none;
  min-height: 100vh;
  background: #f0ede8;
}

.admin-dashboard.active {
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-topbar .logo-name {
  font-size: 1rem;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-user {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.admin-user span {
  color: var(--gold);
  font-weight: 600;
}

.admin-logout {
  padding: 8px 16px;
  background: rgba(231,76,60,0.15);
  border: 1px solid rgba(231,76,60,0.3);
  color: #e74c3c;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.admin-logout:hover {
  background: rgba(231,76,60,0.25);
}

.admin-main {
  flex: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
}

.admin-sidebar {
  background: var(--white);
  border-right: 1px solid var(--cream-dark);
  padding: 28px;
  overflow-y: auto;
  max-height: calc(100vh - 64px);
  position: sticky;
  top: 64px;
}

.admin-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--black);
}

.upload-zone {
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 20px;
  background: var(--cream);
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}

.upload-zone i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.upload-zone p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.upload-zone small {
  font-size: 0.75rem;
  color: var(--gray);
  opacity: 0.7;
}

.upload-zone input[type="file"] {
  display: none;
}

.upload-preview {
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  display: none;
}

.upload-preview img,
.upload-preview video {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.upload-preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(231,76,60,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.admin-sidebar .form-group label {
  color: var(--black);
  font-size: 0.82rem;
}

.admin-sidebar .form-control {
  font-size: 0.88rem;
  padding: 10px 14px;
}

.btn-upload {
  width: 100%;
  padding: 13px;
  font-size: 0.9rem;
}

.upload-progress {
  display: none;
  margin-top: 12px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 6px;
  text-align: center;
}

.admin-content {
  padding: 28px;
  overflow-y: auto;
  max-height: calc(100vh - 64px);
}

.admin-content h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.admin-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--cream-dark);
}

.admin-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.admin-stat .lbl {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
}

.media-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.media-filter-btn {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--white);
  color: var(--gray-dark);
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.media-filter-btn.active,
.media-filter-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.media-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}

.media-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.media-card-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.media-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card-thumb .video-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.media-card-info {
  padding: 10px 12px;
}

.media-card-info .name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.media-card-info .cat {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.media-card-actions {
  display: flex;
  gap: 6px;
}

.media-delete-btn {
  flex: 1;
  padding: 5px;
  background: rgba(231,76,60,0.1);
  color: #e74c3c;
  border: 1px solid rgba(231,76,60,0.2);
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
}

.media-delete-btn:hover {
  background: rgba(231,76,60,0.2);
}

.no-media {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.no-media i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--black);
  padding: 120px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.legal-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.legal-content {
  padding: 60px 0;
}

.legal-content .container {
  max-width: 860px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-dark);
}

.legal-section h3 {
  font-size: 1rem;
  color: var(--black);
  margin: 20px 0 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-section ul li {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-section table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.legal-section table th {
  background: var(--cream-dark);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--black);
  border: 1px solid #ddd;
}

.legal-section table td {
  padding: 10px 14px;
  border: 1px solid #eee;
  color: var(--gray-dark);
  vertical-align: top;
}

.legal-section table tr:nth-child(even) td {
  background: var(--gray-light);
}

.legal-highlight {
  background: rgba(201,162,39,0.08);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 16px;
}

.legal-highlight p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 26, 26, 0.98);
  border-top: 1px solid rgba(201,162,39,0.3);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
}

.cookie-btn-essential {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn-essential:hover {
  background: rgba(255,255,255,0.14);
}

.cookie-btn-config {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}

.cookie-btn-config:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.cookie-modal-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-content h3 {
  margin-bottom: 8px;
}

.cookie-modal-content > p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.cookie-toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.cookie-toggle-item:last-of-type {
  border-bottom: none;
}

.cookie-toggle-info h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cookie-toggle-info p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: all var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: all var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.cookie-modal-actions .btn {
  flex: 1;
  justify-content: center;
}

/* ============================================================
   PAGE HERO (shared)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg, transparent, transparent 59px,
      rgba(201,162,39,0.05) 59px, rgba(201,162,39,0.05) 60px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 59px,
      rgba(201,162,39,0.05) 59px, rgba(201,162,39,0.05) 60px
    );
  background-size: 60px 60px;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.breadcrumb a {
  color: var(--gold);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb i {
  font-size: 0.65rem;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.mobile-menu-overlay.active {
  display: block;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(26,26,26,0.99);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  z-index: 999;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile .nav-link {
  padding: 12px 16px;
  font-size: 1rem;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-height: 88px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Tablet: 2 columnas — logo+texto | stats debajo */
  .hero-layout {
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto;
    padding: 0 32px;
    gap: 28px;
  }
  .hero-badges {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  .hero-badge { width: 130px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201,162,39,0.15);
  }

  .stat-item:last-child,
  .stat-item:nth-child(even) {
    border-right: none;
  }

  .admin-main {
    grid-template-columns: 300px 1fr;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 60px 0;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Móvil: 1 columna, logo encima del texto */
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
    text-align: center;
  }
  .hero-logo-col { justify-content: center; }
  .hero-logo { width: 160px; }
  .hero-label { margin: 0 auto 16px; }
  .hero-description { margin: 0 auto 28px; }
  .hero-cta { justify-content: center; }
  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-badge { width: 110px; padding: 14px 10px; }
  .hero-badge .number { font-size: 1.5rem; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 2;
  }

  .admin-main {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .admin-content {
    max-height: none;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .cookie-banner-inner {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .login-card {
    padding: 32px 24px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-badge {
    right: 0;
    bottom: -16px;
  }
}

/* ============================================================
   ADMIN — PREVIEW MÚLTIPLE
   ============================================================ */
.preview-count {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.preview-item {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preview-item img,
.preview-item video {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}
.preview-name {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 6px;
  text-align: center;
  word-break: break-all;
  line-height: 1.3;
}
.preview-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(201,162,39,0.85);
  color: #000;
  font-size: 0.6rem;
  padding: 2px 5px;
  border-radius: 4px;
}
.preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(220,53,69,0.85);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-remove:hover { background: #dc3545; }

/* ============================================================
   ADMIN — MEDIA CARD mejorada
   ============================================================ */
.media-card-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-card-cat {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 4px;
}
.media-card-cat i { margin-right: 4px; }
.media-card-desc {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 4px 0 6px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.media-card-date {
  font-size: 0.7rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.media-card-date i { margin-right: 4px; }
.media-card-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.btn-edit,
.btn-delete {
  flex: 1;
  padding: 6px 8px;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn-edit {
  background: rgba(201,162,39,0.15);
  color: var(--gold-dark);
  border: 1px solid rgba(201,162,39,0.3);
}
.btn-edit:hover { background: rgba(201,162,39,0.3); }
.btn-delete {
  background: rgba(220,53,69,0.1);
  color: #c0392b;
  border: 1px solid rgba(220,53,69,0.25);
}
.btn-delete:hover { background: rgba(220,53,69,0.2); }

/* ============================================================
   ADMIN — MODAL EDICIÓN
   ============================================================ */
.edit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.edit-modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.edit-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--cream-dark);
}
.edit-modal-header h3 {
  font-size: 1.1rem;
  margin: 0;
}
.edit-modal-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--gray);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.edit-modal-close:hover { background: var(--cream-dark); }
.edit-modal-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.edit-modal-footer {
  display: flex;
  gap: 10px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--cream-dark);
  justify-content: flex-end;
}

/* ============================================================
   GALLERY — PROJECT CARD COUNT BADGE
   ============================================================ */
.project-count-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(26,26,26,0.82);
  color: #C9A227;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
  font-family: 'Poppins', sans-serif;
  pointer-events: none;
}

/* ============================================================
   LIGHTBOX — INFO PANEL (left zone, vertically centered)
   ============================================================ */
.lightbox-info {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  /* Ocupa toda la zona oscura izquierda */
  width: calc(50% - 270px);
  min-width: 280px;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 60px;
  pointer-events: none;
}
.lightbox-info-left {
  display: flex;
  flex-direction: column;
  max-width: 360px;
}
.li-category {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #C9A227;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.li-category::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #C9A227;
  flex-shrink: 0;
}
.li-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  margin: 0 0 18px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.li-divider {
  width: 40px;
  height: 1.5px;
  background: rgba(201,162,39,0.5);
  margin-bottom: 18px;
}
.li-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  line-height: 1.8;
}
.lightbox-info-right { display: none; }

/* Counter — bottom right, minimal */
.li-counter {
  position: fixed;
  bottom: 32px;
  right: 52px;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.12em;
  z-index: 10003;
  pointer-events: none;
}

/* Responsive: stack to bottom on narrow screens */
@media (max-width: 860px) {
  .lightbox-info {
    left: 0; right: 0; top: auto; bottom: 0;
    width: auto; min-width: 0;
    padding: 80px 24px 72px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    justify-content: flex-end;
  }
  .li-title { font-size: 1.4rem; }
  .li-desc  { font-size: 0.82rem; }
  .li-counter { bottom: 20px; right: 24px; }
}

/* ============================================================
   ADMIN — PREVIEW COVER STAR BUTTON
   ============================================================ */
.preview-cover-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin: 4px 0 8px;
  text-align: center;
}
.preview-item.is-cover {
  outline: 2px solid #C9A227;
  outline-offset: 1px;
}
.preview-star {
  position: absolute;
  bottom: 22px;
  left: 3px;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.4);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.preview-star.active {
  background: rgba(201,162,39,0.9);
  color: #000;
}
.preview-star:hover { background: rgba(201,162,39,0.7); color: #000; }

/* ============================================================
   ADMIN — PROJECT CARD STRIP
   ============================================================ */
.project-card .media-card-thumb {
  position: relative;
}
.project-strip {
  display: flex;
  gap: 4px;
  padding: 6px 10px;
  background: var(--cream);
  overflow-x: auto;
  scrollbar-width: thin;
}
.strip-thumb {
  position: relative;
  flex: 0 0 48px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: default;
}
.strip-thumb.is-cover {
  border-color: #C9A227;
}
.strip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strip-cover-star {
  position: absolute;
  bottom: 1px;
  right: 1px;
  font-size: 0.5rem;
  color: #C9A227;
  background: rgba(0,0,0,0.7);
  border-radius: 3px;
  padding: 1px 2px;
}

/* ============================================================
   ADMIN — PROJECT MODAL FILES GRID
   ============================================================ */
.proj-files-section,
.proj-add-section {
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 14px;
  background: var(--cream);
}
.proj-files-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.proj-files-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.proj-file-tile {
  position: relative;
  width: 90px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--cream-dark);
  background: #eee;
}
.proj-file-tile img,
.proj-file-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pft-type {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.6rem;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 2px 5px;
  border-radius: 4px;
}
.pft-cover-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.6rem;
  color: #000;
  background: rgba(201,162,39,0.9);
  padding: 2px 5px;
  text-align: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.pft-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.2s;
}
.proj-file-tile:hover .pft-actions { opacity: 1; }
.pft-btn {
  border: none;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  font-size: 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pft-set-cover {
  background: rgba(201,162,39,0.9);
  color: #000;
}
.pft-set-cover:hover { background: #C9A227; }
.pft-del {
  background: rgba(220,53,69,0.85);
  color: #fff;
}
.pft-del:hover { background: #dc3545; }

/* ============================================================
   INDEX — PORTFOLIO DINÁMICO
   ============================================================ */
.portfolio-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.06);
}
.port-count-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(26,26,26,0.75);
  color: #C9A227;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(4px);
}
.port-cat {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #C9A227;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
}
/* Always show overlay slightly on portfolio items with real images */
.portfolio-item .portfolio-overlay {
  opacity: 0;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* ============================================================
   ADMIN — PREVIEW MUTE BUTTON (videos)
   ============================================================ */
.preview-mute {
  position: absolute;
  bottom: 22px;
  right: 24px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.6);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.58rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.preview-mute.active {
  background: rgba(220,53,69,0.85);
  color: #fff;
}
.preview-mute:hover { background: rgba(220,53,69,0.7); color: #fff; }

/* Project modal — mute badge on video tile */
.pft-mute-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.6rem;
  color: #fff;
  background: rgba(220,53,69,0.85);
  padding: 2px 5px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.pft-toggle-mute {
  background: rgba(60,60,60,0.85);
  color: rgba(255,255,255,0.7);
}
.pft-toggle-mute.is-muted {
  background: rgba(220,53,69,0.85);
  color: #fff;
}
.pft-toggle-mute:hover { background: rgba(220,53,69,0.7); color: #fff; }
