/* ============================================================
   Panadería La Esperanza, S.A. — Grupo Manolo
   Diseño: Oficinas CAYRO, S.A.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,800;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ─── Variables ───────────────────────────────────────────── */
:root {
  --gold:        #d8a462;
  --gold-light:  #f0c98a;
  --gold-dark:   #a97a3a;
  --cream:       #fdf6ec;
  --cream-dark:  #f5e8d0;
  --brown-deep:  #1e1007;
  --brown-mid:   #3b2008;
  --brown-warm:  #6b3d1e;
  --text-body:   #2e1a0e;
  --text-muted:  #7a5c40;
  --white:       #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;

  --ease-silk: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-warm: 0 20px 60px rgba(30, 16, 7, 0.18);
}

/* ─── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ─── Loader ──────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--brown-deep);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s var(--ease-silk), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader img { width: 90px; animation: breathe 1.6s ease-in-out infinite; }

@keyframes breathe {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.08); opacity: .7; }
}

/* ─── Cursor personalizado ───────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transition: transform 0.12s var(--ease-silk), background 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.expand { transform: translate(-50%,-50%) scale(4); background: rgba(216,164,98,0.3); }

/* ─── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brown-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── Navbar ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease-silk), padding 0.4s var(--ease-silk), box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(30, 16, 7, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-logo img {
  height: 54px;
  transition: height 0.4s var(--ease-silk);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
#navbar.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-silk);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--brown-deep) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Hero ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--brown-deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(216,164,98,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(107,61,30,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1e1007 0%, #3b2008 50%, #1e1007 100%);
}

/* Grain overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}

/* Decorative arc lines */
.hero-arc {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(216,164,98,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-arc:nth-child(2) { width: 800px; height: 800px; border-color: rgba(216,164,98,0.05); right: -180px; }
.hero-arc:nth-child(3) { width: 1000px; height: 1000px; border-color: rgba(216,164,98,0.03); right: -280px; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 140px 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}

.hero-text { color: var(--cream); }

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.3s var(--ease-silk) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.5s var(--ease-silk) forwards;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.65s var(--ease-silk) forwards;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem; line-height: 1.8; font-weight: 300;
  color: rgba(253,246,236,0.75);
  max-width: 420px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.8s 0.8s var(--ease-silk) forwards;
}

.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 1s var(--ease-silk) forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown-deep);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(216,164,98,0.3);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(216,164,98,0.4);
}

.btn-ghost {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  opacity: 0.8; transition: opacity 0.3s, gap 0.3s;
}
.btn-ghost:hover { opacity: 1; gap: 16px; }
.btn-ghost .arrow { font-size: 1rem; transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeIn 1.2s 0.6s var(--ease-silk) forwards;
}
.hero-logo-wrap {
  position: relative;
  width: 320px; height: 320px;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute; inset: -20px;
  border: 1px solid rgba(216,164,98,0.2);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute; inset: -40px;
  border: 1px dashed rgba(216,164,98,0.1);
  border-radius: 50%;
  animation: rotateSlow 50s linear infinite reverse;
}
.hero-logo-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(216,164,98,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-logo-wrap img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(216,164,98,0.25));
}

/* ─── Stats bar ───────────────────────────────────────────── */
.hero-stats {
  position: relative; z-index: 2;
  background: rgba(59, 32, 8, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(216,164,98,0.15);
}
.hero-stats-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 28px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 12px 20px;
  border-right: 1px solid rgba(216,164,98,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--gold); display: block;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(253,246,236,0.5);
  display: block; margin-top: 6px;
}

/* ─── Section globals ─────────────────────────────────────── */
.section { padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  color: var(--brown-deep); margin-bottom: 20px;
}

.section-title em {
  font-style: italic; font-weight: 400;
  color: var(--gold-dark);
}

/* ─── Nosotros ────────────────────────────────────────────── */
#nosotros { background: var(--cream); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-text p {
  font-family: var(--font-serif);
  font-size: 1.15rem; line-height: 1.9;
  color: var(--text-body); margin-bottom: 20px;
}
.about-text p:first-of-type::first-letter {
  font-size: 3em; font-family: var(--font-display);
  font-weight: 800; color: var(--gold);
  float: left; line-height: 0.75;
  margin: 6px 12px 0 0;
}

.about-visual {
  position: relative;
}
.about-card {
  background: var(--brown-deep);
  border-radius: 4px;
  padding: 50px 40px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.about-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(216,164,98,0.08) 0%, transparent 50%);
}
.about-card-logo {
  display: flex; justify-content: center; margin-bottom: 36px;
}
.about-card-logo img {
  height: 110px; margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(216,164,98,0.2));
}
.about-card-year {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 800;
  color: rgba(216,164,98,0.12);
  line-height: 1;
  position: absolute; bottom: 20px; right: 24px;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  position: relative; z-index: 1;
}
.value-item {
  text-align: center; padding: 20px 14px;
  border: 1px solid rgba(216,164,98,0.2);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.value-item:hover {
  border-color: rgba(216,164,98,0.5);
  background: rgba(216,164,98,0.05);
}
.value-icon { font-size: 1.6rem; margin-bottom: 8px; }
.value-label {
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream);
}

/* ─── Sucursales ──────────────────────────────────────────── */
#sucursales { background: var(--cream-dark); }

.sucursales-header {
  text-align: center; margin-bottom: 60px;
}
.sucursales-header .section-label { justify-content: center; }
.sucursales-header .section-label::before { display: none; }
.sucursales-header .section-label::after {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.branch-card {
  background: var(--white);
  border: 1px solid rgba(216,164,98,0.2);
  border-radius: 4px; padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s var(--ease-silk), box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.branch-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-silk);
}
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30,16,7,0.12);
  border-color: rgba(216,164,98,0.4);
}
.branch-card:hover::before { transform: scaleX(1); }
.branch-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  color: rgba(216,164,98,0.2);
  line-height: 1; margin-bottom: 12px;
}
.branch-icon { font-size: 1.8rem; margin-bottom: 14px; }
.branch-name {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brown-mid);
}

/* ─── Separador ornamental ────────────────────────────────── */
.divider {
  text-align: center; padding: 40px 0;
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 40px 60px;
  gap: 24px;
}
.divider-line { flex: 1; height: 1px; background: rgba(216,164,98,0.3); }
.divider-ornament {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--gold);
  line-height: 1;
}

/* ─── Servicios ───────────────────────────────────────────── */
#servicios { background: var(--brown-deep); overflow: hidden; }

#servicios .section-title { color: var(--cream); }

.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 60px;
}
.services-intro p {
  font-family: var(--font-serif);
  font-size: 1.1rem; line-height: 1.8;
  color: rgba(253,246,236,0.65);
}

.services-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(216,164,98,0.12);
  border-radius: 4px; padding: 36px 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-silk);
  cursor: default;
}
.service-card:hover {
  background: rgba(216,164,98,0.07);
  border-color: rgba(216,164,98,0.35);
  transform: translateY(-4px);
}
.service-icon { font-size: 2rem; margin-bottom: 20px; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--cream); margin-bottom: 12px;
}
.service-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem; line-height: 1.7; font-weight: 300;
  color: rgba(253,246,236,0.55);
}

/* ─── Contacto ────────────────────────────────────────────── */
#contacto { background: var(--cream); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}

.contact-info { padding-top: 10px; }
.contact-info p {
  font-family: var(--font-serif);
  font-size: 1.1rem; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--brown-deep);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-body {}
.contact-item-label {
  font-family: var(--font-sans);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-dark); display: block; margin-bottom: 4px;
}
.contact-item-value {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--text-body);
}
.contact-item-value a:hover { color: var(--gold-dark); }

.contact-hours {
  margin-top: 32px; padding: 24px 28px;
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.contact-hours-title {
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 8px;
}
.contact-hours-time {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--brown-deep);
}

/* Formulario */
.contact-form-wrap {
  background: var(--brown-deep);
  border-radius: 4px; padding: 48px 42px;
  box-shadow: var(--shadow-warm);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--cream); margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(253,246,236,0.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(216,164,98,0.2);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem; font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--brown-deep); }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--brown-deep);
  border: none; cursor: pointer;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(216,164,98,0.25);
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(216,164,98,0.35);
}
.form-submit:active { transform: translateY(0); }

.form-msg {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-align: center;
  display: none;
}
.form-msg.success { color: #7ecba1; display: block; }
.form-msg.error   { color: #e07a7a; display: block; }

/* ─── Mapa ────────────────────────────────────────────────── */
#mapa { background: var(--cream-dark); padding: 0 0 80px; }
.map-header {
  max-width: 1200px; margin: 0 auto; padding: 60px 60px 36px;
  display: flex; align-items: center; justify-content: space-between;
}
.map-container {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
}
.map-frame {
  width: 100%; height: 380px;
  border: 0; border-radius: 4px;
  box-shadow: var(--shadow-warm);
  display: block;
}

/* ─── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--brown-deep);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}
.footer-brand .footer-logo img {
  height: 60px; margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(216,164,98,0.2));
}
.footer-brand p {
  font-family: var(--font-serif);
  font-size: 0.95rem; line-height: 1.7; font-style: italic;
  color: rgba(253,246,236,0.5);
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 300;
  color: rgba(253,246,236,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon { font-size: 0.9rem; color: var(--gold); margin-top: 2px; }
.footer-contact-text {
  font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 300;
  color: rgba(253,246,236,0.5); line-height: 1.5;
}
.footer-contact-text a { color: rgba(253,246,236,0.5); transition: color 0.3s; }
.footer-contact-text a:hover { color: var(--gold-light); }

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(216,164,98,0.12);
  padding: 20px 60px;
  max-width: 1200px; margin: 50px auto 0;
  display: flex; align-items: center; justify-content: space-between;
}

/* NOTE: .footer-bottom needs padding inside the footer context */
#footer .footer-bottom-bar {
  border-top: 1px solid rgba(216,164,98,0.12);
  padding: 20px 60px;
}
#footer .footer-bottom-bar .fbb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 300;
  color: rgba(253,246,236,0.3);
}
.footer-copy a { color: var(--gold-dark); transition: color 0.3s; }
.footer-copy a:hover { color: var(--gold); }

/* ─── Back to top ─────────────────────────────────────────── */
#backTop {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--brown-deep);
  border: none; cursor: pointer;
  border-radius: 2px;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(216,164,98,0.3);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 900;
}
#backTop.visible { opacity: 1; visibility: visible; }
#backTop:hover { transform: translateY(-3px); }

/* ─── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rotateSlow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-silk);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .branches-grid { grid-template-columns: repeat(3, 1fr); }
  .services-scroll { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  #navbar { padding: 16px 24px; }
  #navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(30, 16, 7, 0.98);
    align-items: center; justify-content: center;
    gap: 32px; z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }

  .hero-content { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { width: 200px; height: 200px; }

  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); padding: 20px 24px; }
  .stat-item:nth-child(2) { border-right: none; }

  .section-inner { padding: 0 24px; }
  .about-grid, .contact-layout, .services-intro { grid-template-columns: 1fr; gap: 40px; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .services-scroll { grid-template-columns: 1fr; }

  .map-header { padding: 40px 24px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .map-container { padding: 0 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  #footer .footer-bottom-bar { padding: 16px 24px; }
  #footer .footer-bottom-bar .fbb-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .branches-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
