@font-face {
  font-family: 'Designer';
  src: url('../fonts/Designer.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #090909;
  --bg-soft: #111111;
  --bg-card: #171717;
  --text: #f7f4ef;
  --text-muted: #c9c3bb;
  --text-dark: #232323;
  --line: rgba(255, 255, 255, 0.08);
  --primary: #e3123f;
  --primary-dark: #ba0d32;
  --gold: #c5a46d;
  --soft-section: #f1f1eb;
  --light-section: #faf9f6;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --container: 1240px;
}

/*====== ESTILO BASE ======*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/*====== ESTILO HEADER ======*/
.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.compact-header {
  position: sticky;
} 

.nav-wrapper {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-mark {
  width: 5.30rem;
  height: 5.30rem;
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f0efe9;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

/*====== ESTILO BOTON CONTACT ======*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

/*====== ESTILO HERO ======*/
.hero-section {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at center, rgba(227, 18, 63, 0.08), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 90px 0;
}

.eyebrow,
.script-text {
  font-family: "Great Vibes", cursive;
}

.eyebrow {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 12px;
}

.hero-logo {
  display: block;
  margin: 0 auto 20px;
  width: clamp(400px, 12vw, 150px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
  color: #f1ede8;
}

/*====== CONTACT SIGNALS SECTION ======*/
.section-light,
.recommends-section {
  background: var(--light-section);
  color: var(--text-dark);
}

.section-dark {
  background: #0e0e0e;
}

.section-soft{
  background: var(--soft-section);
  color: var(--text-dark);
}

.awards-strip,
.menu-categories,
.recommends-section,
.chef-section,
.contact-section{
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-kicker,
.light-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-heading h2,
.chef-content h2,
.contact-card h2,
.promo-box h2{
  font-family: 'Designer', serif;
  font-size: clamp(1.02rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-heading h3,
.chef-content h3,
.contact-card h3,
.promo-box h3{
  font-family: 'Designer', serif;
  font-size: clamp(0.9rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-heading p,
.chef-content p,
.contact-card p,
.promo-box p,
.dish-body p{
  color: #66615d;
  font-size: 1.02rem;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.award-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 25px;
  min-width: auto;
  min-height: auto;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-item > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: 0;
}

.award-item img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/*====== CATEGORIES SECTION ======*/
.categories-grid,
.recommend-grid,
.footer-grid{
  display: grid;
  gap: 24px;
}

.categories-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px;
}

  .category-content h3 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
  }

  .category-link {
  display: block;
  text-decoration: none;
  color: inherit;
  }

  .category-link:hover {
    text-decoration: none;
    color: inherit;
  }

  
/*====== MANIFESTO SECTION ======*/
.chef-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chef-photo-wrap img,
.map-card,
.contact-card {
  border-radius: var(--radius);
}

.chef-photo-wrap img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.chef-content p + p {
  margin-top: 14px;
}

.chef-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.chef-features div {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.chef-features strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary);
}

.chef-features span {
  color: #66615d;
}


/*====== CONTACT SECTION ======*/
.contact-section {
  background: var(--light-section);
  color: var(--text-dark);
}

.contact-card {
  background: #fff;
  padding: 36px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list li {
  color: #5c5753;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.map-card {
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}


/*====== MENU SECTION ======*/
.menu-section {
  padding: 0px 0;
  background:
    radial-gradient(circle at top center, rgba(255, 55, 55, 0.08), transparent 26%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: #fff;
}

.menu-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff4b4b;
}

.menu-section h2 {
  font-family: 'Designer', serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 34px;
}

.menu-hero-card {
  width: 100%;
  max-width: 760px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-hero-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.menu-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}


/*====== FOOTER SECTION ======*/
.site-footer {
  position: relative;
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
  overflow: hidden;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  display: block;
  width: auto;
  max-height: 72px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer li,
.site-footer a,
.site-footer p {
  color: #b9afa3;
  text-decoration: none;
  line-height: 1.5;
}

.site-footer a:hover {
  color: #fff;
}

.footer-copy {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #b9afa3;
}

/* imagen decorativa detrás */
.right-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0px;
}

.right-content img {
  display: block;
  width: min(34vw, 420px);
  margin-right: -30px;
  height: auto;
  object-fit: contain;
  opacity: 0.5;
}


/*====== RESPONSIVO PARA TABLET Y MÓVIL ======*/
/*====== 1100px ======*/
@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .categories-grid,
  .recommend-grid,
  .desserts-grid,
  .award-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chef-grid,
  .contact-grid,
  .dessert-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*====== 980px ======*/
@media (max-width: 980px) {
  .menu-hero-card {
    max-width: 680px;
  }
}

/* ====== 820px ======*/
@media (max-width: 820px) {
  .nav-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .main-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .hero-meta,
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .categories-grid,
  .recommend-grid,
  .award-grid,
  .gallery-grid,
  .footer-grid,
  .chef-features {
    grid-template-columns: 1fr;
  }

  .chef-features {
    gap: 16px;
  }

  .category-card,
  .dish-media img,
  .gallery-grid img {
    min-height: auto;
  }
}

/*====== 768px ======*/
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .footer-grid > div {
    width: 100%;
    text-align: left;
  }

  .brand-mark {
    max-height: 60px;
  }

  .site-footer h3 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .site-footer ul {
    gap: 6px;
  }

  .site-footer li,
  .site-footer a,
  .site-footer p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .footer-copy {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 0.94rem;
    text-align: left;
  }

  .right-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
  }

  .right-content img {
    display: block;
    width: clamp(180px, 28vw, 420px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
  }
}

/*====== 640px ======*/
@media (max-width: 640px) {
  .menu-section {
    padding: 80px 0;
  }

  .menu-section h2 {
    margin-bottom: 24px;
  }

  .menu-hero-card {
    padding: 10px;
    border-radius: 20px;
  }

  .menu-hero-image {
    border-radius: 14px;
  }

  .award-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .award-item {
    min-width: auto;
    width: 100%;
    min-height: 180px;
    padding: 16px 14px;
  }
}

/*====== 540px ======*/
@media (max-width: 540px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .awards-strip,
  .menu-categories,
  .recommends-section,
  .chef-section,
  .contact-section {
    padding: 80px 0;
  }

  .hero-content {
    padding: 70px 0 80px;
  }

  .btn {
    width: 100%;
  }

  .award-item,
  .contact-card,
  .promo-box,
  .dish-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .category-card {
    min-height: 360px;
  }
}


