/* ============================================
   SERANI SPECIALTY COFFEE - Global Styles
   Luxury Black + Gold theme
   ============================================ */

:root {
  --gold: #d4af37;
  --gold-light: #e9c659;
  --gold-dark: #a8862a;
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --cream: #f5f1e8;
  --text-muted: #b8b0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* GLOBAL FONT WEIGHT OVERRIDE - everything bold */
body, body *, span, a, li, label, input, textarea, select, button, small, em, div {
  font-weight: 800 !important;
}
p, .hero-tagline, .footer-brand-tagline, .section-subtitle, .page-header p, .luxury-card p, .cta-banner p, .blog-card-content p {
  font-weight: 800 !important;
}
h1, h2, h3, h4, h5, h6, .section-title, .split-content h2, .cta-banner h2, .page-header h1, .nav-logo-text {
  font-weight: 900 !important;
}
strong, b {
  font-weight: 900 !important;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 { line-height: 1.25; }

main { flex: 1; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-feature-settings: 'lnum', 'kern';
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 1000;
  transition: all 0.3s;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.15rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--gold);
}

.nav-logo-mark { width: 36px; height: 44px; }

.nav-logo-text {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

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

.nav-links a {
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
  padding: 0.3rem 0;
}

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

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

.lang-switch {
  display: flex;
  border: 1px solid var(--gold);
  border-radius: 30px;
  overflow: hidden;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.lang-switch button {
  background: transparent;
  color: var(--cream);
  border: none;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.3s;
}

.lang-switch button.active {
  background: var(--gold);
  color: var(--black);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.4rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
  background: transparent;
  line-height: 1;
}

.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

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

.btn svg { width: 18px; height: 18px; }

/* ============ SECTIONS ============ */
section {
  padding: 7rem 2rem;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto 0;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 1.05rem;
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 12rem 2rem 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.page-header .breadcrumb {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.page-header .breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.page-header .breadcrumb a:hover { color: var(--gold); }

.page-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 1.5rem auto 0;
  font-weight: 500;
  font-size: 1.05rem;
}

.page-divider-mark {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem auto;
  position: relative;
}
.page-divider-mark::before, .page-divider-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.page-divider-mark::before { left: -15px; }
.page-divider-mark::after { right: -15px; }

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
}

.luxury-card {
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-soft) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3.25rem 2.25rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.luxury-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.luxury-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.75rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 100%; height: 100%; }

.luxury-card h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.luxury-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  font-weight: 500;
  line-height: 1.75;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.tag.coming-soon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border-color: var(--text-muted);
}

.feature-list {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.feature-list li {
  color: var(--cream);
  font-size: 0.85rem;
  padding: 0.4rem 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.7rem;
}

.card-cta {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: all 0.3s;
}
.card-cta:hover {
  color: var(--gold-light);
  letter-spacing: 0.25em;
}

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 5rem 2rem 2.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.85rem; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-brand-logo {
  width: 50px; height: 60px;
  margin-bottom: 1.25rem;
}

.footer-brand-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
}

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ============ FLOATING WHATSAPP ============ */
.floating-wa {
  position: fixed;
  bottom: 25px; right: 25px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 2.5s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-wa svg { width: 30px; height: 30px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ============ HOME HERO ============ */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
  padding: 10.25rem 2rem 5rem;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease-out;
}

.hero-logo {
  width: 320px;
  height: 320px;
  object-fit: contain;
  margin: 0 auto 2.5rem;
  animation: fadeUp 1.2s ease-out;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.hero-subtitle {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--cream);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ============ ABOUT GRID ============ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.split-image {
  position: relative;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent),
    radial-gradient(circle at center, var(--black-card), var(--black));
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  pointer-events: none;
}

.split-image svg { width: 60%; height: auto; }

.split-content .section-eyebrow {
  margin-bottom: 1.25rem;
}

.split-content h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  font-weight: 500;
  line-height: 1.95;
}

.split-content ul {
  list-style: none;
  margin-top: 2rem;
}

.split-content ul li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
  font-weight: 500;
}

.split-content ul li::before {
  content: '✦';
  color: var(--gold);
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
    var(--black-soft);
  text-align: center;
  padding: 6.5rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 3rem;
  font-weight: 500;
  line-height: 1.8;
}

/* ============ PROCESS STEPS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

.process-step h4 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-decoration: none;
  color: var(--cream);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(5px);
}

.contact-method-icon {
  width: 45px; height: 45px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-method-icon svg { width: 22px; height: 22px; }

.contact-method-text { flex: 1; }
.contact-method-text small {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-method-text strong {
  font-weight: 400;
  font-size: 1rem;
}

/* ============ FORM ============ */
.contact-form {
  background: var(--black-card);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.03);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--black-card), var(--black-soft));
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item .gallery-icon {
  width: 50px; height: 50px;
  color: var(--gold);
  opacity: 0.4;
  transition: all 0.4s;
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: scale(1.2);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.gallery-item-overlay span {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--black-soft), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.blog-card-image svg {
  width: 60px; height: 60px;
  color: var(--gold);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-card-content h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  flex: none;
}

.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-card-cta {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: all 0.3s;
}

.blog-card-cta:hover {
  color: var(--gold-light);
  letter-spacing: 0.25em;
}

/* ============ INFO BOX (course details) ============ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.info-box {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.5rem;
  text-align: center;
}

.info-box-label {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.info-box-value {
  color: var(--cream);
  font-size: 1.2rem;
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 500;
}

/* ============ MAP ============ */
.map-wrapper {
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  aspect-ratio: 16/9;
  filter: grayscale(0.5) brightness(0.85);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg);
}

/* ============ HOURS LIST ============ */
.hours-list {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
}

.hours-list h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hours-list ul { list-style: none; }

.hours-list ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
}

.hours-list ul li:last-child { border-bottom: none; }
.hours-list ul li span:last-child { color: var(--text-muted); }

/* ============ LANGUAGE TOGGLE ============ */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="es"] { display: none; }
body.lang-en [data-lang="en"] { display: inline; }
body.lang-en [data-lang="en"].block { display: block; }
body.lang-en [data-lang="en"].flex { display: flex; }
body.lang-en [data-lang="en"].grid { display: grid; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid { gap: 2rem; }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    width: 280px;
    height: calc(100vh - 70px);
    padding: 3rem 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    align-items: flex-start;
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }
  .menu-toggle { display: flex; }

  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

  section, .page-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  section { padding-top: 5rem; padding-bottom: 5rem; }
  .page-header { padding-top: 9rem; padding-bottom: 5rem; }

  .cta-banner { padding-top: 5rem; padding-bottom: 5rem; }

  .section-header { margin-bottom: 3.5rem; }

  .footer-grid { gap: 2.5rem; margin-bottom: 3rem; }

  .contact-form { padding: 2rem 1.5rem; }

  .hero-logo { width: 270px; height: 270px; }
}

@media (max-width: 500px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; padding: 1rem 1.75rem; }
  .hero-logo { width: 220px; height: 220px; margin-bottom: 2rem; }
  .nav-logo-text { font-size: 1rem; }
  .nav-container { padding: 1rem 1.25rem; }
  .floating-wa { width: 55px; height: 55px; bottom: 20px; right: 20px; }
  section { padding-top: 4rem; padding-bottom: 4rem; }
  .cta-banner { padding-top: 4rem; padding-bottom: 4rem; }
  .luxury-card { padding: 2.5rem 1.75rem; }
  .section-header { margin-bottom: 2.75rem; }
  .hero-tagline { margin-bottom: 2.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2.5rem; }
  .footer-social { gap: 0.85rem; }
}
