/* ── VARIABLES ── */
:root {
  --coral:   #dd5d3d;
  --gold:    #d7b476;
  --amber:   #dc8c47;
  --teal:    #479588;
  --dark:    #1a1208;
  --cream:   #fdf6ec;
  --text:    #2d1f0e;
  --light:   #f5ede0;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
}
.section-title span { color: var(--coral); }
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--coral); color: var(--coral); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-full { width: 100%; }

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-05 { transition-delay: .05s; }
.delay-1 { transition-delay: .1s; }
.delay-15 { transition-delay: .15s; }
.delay-2 { transition-delay: .2s; }
.delay-25 { transition-delay: .25s; }
.delay-3 { transition-delay: .3s; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(253,246,236,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215,180,118,.25);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.nav-logo img { height: 54px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--coral); }
.lang-toggle {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .4rem 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s;
}
.lang-toggle:hover { background: var(--coral); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: .3s;
}

#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--cream) 55%, #f0e2c8 100%);
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(220,140,71,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-text .eyebrow {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1rem;
}
.hero-text .eyebrow::before {
  content: '';
  display: block; width: 32px; height: 2px;
  background: var(--amber);
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1.4rem;
}
.hero-text h1 span { color: var(--coral); }
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a3d22;
  max-width: 480px;
  margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-visual .hero-img-wrap {
  width: 420px; height: 420px;
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  overflow: hidden;
  border: 6px solid var(--gold);
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: 20px; right: -10px;
  background: var(--teal);
  color: #fff;
  border-radius: 16px;
  padding: .9rem 1.4rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(71,149,136,.35);
}
.hero-badge strong { display: block; font-size: 1.6rem; font-family: var(--font-display); }
.hero-badge span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

.deco-dot { position: absolute; border-radius: 50%; background: var(--coral); opacity: .15; }
.deco-dot.d1 { width: 80px; height: 80px; top: -20px; left: 20px; }
.deco-dot.d2 { width: 40px; height: 40px; bottom: 60px; left: -10px; background: var(--teal); }

.stats-strip {
  background: var(--dark);
  padding: 2.4rem 5%;
  display: flex; justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1; max-width: 220px;
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
}
.stat-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
}

#nosotros {
  padding: 110px 5%;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main,
.about-img-secondary { overflow: hidden; }
.about-img-main img,
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-main {
  width: 100%; height: 440px;
  border-radius: 24px;
  border: 4px solid var(--gold);
}
.about-img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 16px;
  border: 4px solid var(--coral);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.about-text { padding-bottom: 30px; }
.about-text .section-label { display: block; margin-bottom: .8rem; }
.about-text .section-title { margin-bottom: 1.4rem; }
.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5a3d22;
  margin-bottom: 1.2rem;
}
.about-pills {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 1.6rem; margin-bottom: 2rem;
}
.pill {
  background: var(--light);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: .4rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}

#servicios {
  padding: 100px 5%;
  background: var(--dark);
}
.servicios-header {
  text-align: center;
  max-width: 600px; margin: 0 auto 4rem;
}
.servicios-header .section-label { display: block; margin-bottom: .8rem; }
.servicios-header .section-title { color: #fff; }
.servicios-header .section-title span { color: var(--gold); }
.servicios-header p { color: rgba(255,255,255,.6); margin-top: 1rem; line-height: 1.8; }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px; margin: 0 auto;
}
.servicio-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(215,180,118,.2);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.servicio-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.servicio-img {
  height: 220px;
  background: linear-gradient(135deg, #3a2510, #6b3c1e);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .8rem; text-align: center;
  position: relative; overflow: hidden;
}
.servicio-img.teal-bg { background: linear-gradient(135deg, #1d4d46, #3d7a6e); }
.servicio-img.amber-bg { background: linear-gradient(135deg, #5c3510, #a06228); }
.servicio-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.servicio-img .card-icon {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.servicio-body { padding: 1.8rem; }
.servicio-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: .7rem;
}
.servicio-body p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.75; }
.servicio-tag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag-coral { background: rgba(221,93,61,.2); color: var(--coral); }
.tag-teal  { background: rgba(71,149,136,.2); color: #5fcfbf; }
.tag-amber { background: rgba(220,140,71,.2); color: var(--amber); }

#menu {
  padding: 110px 5%;
  max-width: 1200px; margin: 0 auto;
}
.menu-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.menu-header .section-label { display: block; margin-bottom: .8rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.menu-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  background: #fff;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.13);
}
.menu-card.featured { grid-row: span 2; }
.menu-img {
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.menu-img.h-200 { height: 200px; }
.menu-img.h-300 { height: 300px; }
.menu-img.h-full { height: 100%; min-height: 350px; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-img-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(0,0,0,.45);
  color: #fff; font-size: .7rem;
  padding: .25rem .6rem; border-radius: 6px;
}
.menu-body { padding: 1.3rem 1.5rem; }
.menu-body .region {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--amber);
}
.menu-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: .3rem 0 .5rem;
  color: var(--dark);
}
.menu-body p { font-size: .85rem; color: #7a5a3a; line-height: 1.65; }

#galeria {
  padding: 100px 5%;
  background: var(--light);
}
.galeria-header { text-align: center; margin-bottom: 3.5rem; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  max-width: 1200px; margin: 0 auto;
}
.gal-item {
  border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform .3s;
}
.gal-item:hover { transform: scale(1.02); }
.gal-item.span2 { grid-column: span 2; }
.gal-item.row2  { grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(26,18,8,.4);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.g1 { background: linear-gradient(135deg, #c4956a, #8b5e3c); }
.g2 { background: linear-gradient(135deg, #479588, #2d6b60); }
.g3 { background: linear-gradient(135deg, #dc8c47, #a06228); }
.g4 { background: linear-gradient(135deg, #dd5d3d, #a03820); }
.g5 { background: linear-gradient(135deg, #d7b476, #a08040); }
.g6 { background: linear-gradient(135deg, #3c6b60, #1d4038); }

#contacto {
  padding: 110px 5%;
  background: var(--dark);
  position: relative; overflow: hidden;
}
#contacto::before {
  content: '';
  position: absolute; top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,140,71,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.contacto-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.contacto-text .section-label { display: block; margin-bottom: .8rem; }
.contacto-text .section-title { color: #fff; margin-bottom: 1.2rem; }
.contacto-text .section-title span { color: var(--gold); }
.contacto-text > p { color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 2.4rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item p { font-size: .88rem; color: rgba(255,255,255,.55); }
.contact-item strong { color: #fff; font-size: .95rem; }
.form-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(215,180,118,.15);
  border-radius: 24px;
  padding: 2.5rem;
}
.form-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.8rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .78rem; font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .8rem 1.1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #2d1f0e; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

footer {
  background: #0f0a04;
  padding: 3rem 5%;
  display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo img { height: 44px; width: auto; }
footer p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card.featured { grid-row: auto; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    align-items: center; justify-content: center;
    gap: 2.5rem; z-index: 99;
  }
  .nav-links a { font-size: 1.4rem; }
  .hamburger { display: flex; z-index: 200; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  #nosotros { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-secondary { display: none; }
  .servicios-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.span2 { grid-column: auto; }
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-strip { flex-direction: column; align-items: center; gap: 2rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1.5rem; }
  .stat-item:last-child { border-bottom: none; }
}

.deco-sep {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: .5;
}
