:root {
  --sand: #171412;
  --cream: #211c18;
  --terracotta: #c56a46;
  --terracotta-deep: #a04f31;
  --olive: #65735b;
  --ink: #f4ede5;
  --muted: #c0b1a3;
  --line: rgba(244, 237, 229, 0.1);
  --paper: rgba(31, 26, 22, 0.9);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(197, 106, 70, 0.16), transparent 18%),
    radial-gradient(circle at 85% 8%, rgba(101, 115, 91, 0.14), transparent 18%),
    linear-gradient(180deg, #110f0e 0%, #1a1613 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
}

.site-frame {
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 28px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #241d18;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero,
.manifesto,
.experience-strip,
.gallery-section,
.services-board,
.specialties,
.process-section,
.reservation-section,
.contact-banner {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 28px;
  min-height: 92vh;
  background:
    linear-gradient(110deg, rgba(23, 18, 16, 0.92) 0%, rgba(23, 18, 16, 0.68) 48%, rgba(23, 18, 16, 0.3) 100%),
    url("assets/images/chef-hero.jpeg") center 28%/cover;
  color: #fff9f4;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(184, 93, 61, 0.24);
  filter: blur(10px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand,
h1,
h2,
h3,
.manifesto-quote p,
.specialty-card strong {
  font-family: "Cormorant Garamond", serif;
}

.brand {
  color: inherit;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 249, 244, 0.82);
  text-decoration: none;
}

.nav-links a:focus-visible,
.button:focus-visible,
.contact-link:focus-visible,
.floating-whatsapp:focus-visible,
.gallery-card img:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid #ffd8ba;
  outline-offset: 4px;
}

.nav-links a:hover {
  color: #ffd8ba;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: end;
  min-height: calc(92vh - 56px);
}

.hero-copy {
  max-width: 760px;
  align-self: end;
  padding: 70px 0 12px;
}

.eyebrow,
.section-tag,
.service-index,
.specialty-card span,
.reservation-box span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1 {
  margin: 16px 0 18px;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.93;
  font-weight: 600;
  max-width: 10ch;
}

.lead,
.manifesto-text p,
.experience-copy,
.section-note,
.service-row p,
.specialties-copy p,
.timeline-item p,
.reservation-main p,
.contact-copy p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.lead {
  max-width: 560px;
  color: rgba(255, 249, 244, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.contact-link:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--terracotta);
  color: #fff;
}

.button-primary:hover {
  background: var(--terracotta-deep);
}

.button-secondary {
  border: 1px solid rgba(255, 249, 244, 0.24);
  color: #fff9f4;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.13), rgba(255, 249, 244, 0.08));
  border: 1px solid rgba(255, 249, 244, 0.18);
  backdrop-filter: blur(10px);
}

.panel-kicker {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.panel-text {
  margin: 12px 0 0;
  color: rgba(255, 249, 244, 0.84);
  line-height: 1.7;
}

.hero-facts {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.hero-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 249, 244, 0.14);
}

.hero-facts span {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
}

.hero-facts p {
  margin: 4px 0 0;
  color: rgba(255, 249, 244, 0.74);
}

.page-content {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.manifesto,
.experience-strip,
.gallery-section,
.services-board,
.specialties,
.process-section,
.reservation-section,
.contact-banner {
  border-radius: 34px;
  padding: 34px;
  background: var(--paper);
  backdrop-filter: blur(12px);
}

.manifesto-intro {
  max-width: 760px;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.96;
  font-weight: 600;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 340px;
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}

.manifesto-text {
  padding: 28px;
  border-radius: 28px;
  background: #181411;
  border: 1px solid rgba(244, 237, 229, 0.08);
  align-self: start;
}

.manifesto-text p {
  margin-top: 0;
  font-size: 1.08rem;
  line-height: 1.9;
}

.manifesto-text p + p {
  margin-top: 18px;
}

.manifesto-inline-quote {
  margin-top: 26px;
  padding: 30px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, #263024, #44513d);
  color: #fff9f4;
  font-family: "Cormorant Garamond", serif;
  max-width: 760px;
  font-size: clamp(2.35rem, 3.15vw, 3.35rem);
  line-height: 0.98;
}

.manifesto-quote {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: start;
  margin-top: -18px;
}

.portrait-card {
  overflow: hidden;
  border-radius: 28px;
  min-height: 338px;
  border: 1px solid rgba(31, 23, 18, 0.08);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-section {
  background: linear-gradient(135deg, #171311, #221b17);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  min-height: 280px;
  background: #2a211b;
  border: 1px solid rgba(244, 237, 229, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  outline: none;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 576px;
}

.gallery-card-accent {
  background: linear-gradient(160deg, #3a261f, #1f1916);
}

.experience-strip {
  background: linear-gradient(135deg, #201713, #392920);
  color: #fff6f0;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
  margin-top: 22px;
}

.experience-copy {
  color: rgba(255, 246, 240, 0.84);
}

.experience-link {
  color: #f1c394;
  text-decoration: none;
  font-weight: 800;
}

.experience-link:hover {
  color: #ffd9b5;
}

.experience-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.experience-points span {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 249, 244, 0.08);
  border: 1px solid rgba(255, 249, 244, 0.12);
  font-weight: 700;
}

.section-header {
  max-width: 760px;
}

.section-note {
  margin-top: 14px;
  color: var(--muted);
}

.services-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-index {
  color: var(--terracotta);
  padding-top: 10px;
}

h3 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 0.95;
  font-weight: 600;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.specialties {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

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

.specialty-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background: #181411;
  border: 1px solid rgba(244, 237, 229, 0.08);
  min-height: 150px;
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.28), rgba(10, 8, 7, 0.78)),
    var(--specialty-image, linear-gradient(160deg, #241d18, #181411)) var(--specialty-position, center)/cover;
  transform: scale(1);
  transform-origin: center;
  transition: transform 280ms ease;
  z-index: -2;
}

.specialty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
  z-index: -1;
}

.specialty-card strong {
  display: block;
  margin-top: 14px;
  font-size: 2rem;
  line-height: 0.95;
}

.specialty-card-featured {
  color: #fffaf5;
}

.specialty-card-soft {
  color: #fffaf5;
}

.specialty-card:hover,
.specialty-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(244, 237, 229, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.specialty-card:hover::before,
.specialty-card:focus-within::before {
  transform: scale(1.08);
}

.specialty-card-italian {
  --specialty-image: url("fotos/WhatsApp Image 2026-04-29 at 10.53.25 (3).jpeg");
  --specialty-position: center 70%;
}

.specialty-card-pasta {
  --specialty-image: url("fotos/asdasdsadsad.jpeg");
}

.specialty-card-risotto {
  --specialty-image: url("fotos/WhatsApp Image 2026-04-29 at 10.53.27 (4).jpeg");
  --specialty-position: center 72%;
}

.specialty-card-seafood {
  --specialty-image: url("fotos/WhatsApp Image 2026-05-06 at 15.40.45.jpeg");
}

.specialty-card-meat {
  --specialty-image: url("fotos/WhatsApp Image 2026-05-06 at 15.46.24.jpeg");
}

.specialty-card-adapted {
  --specialty-image: url("fotos/WhatsApp Image 2026-04-29 at 10.53.25.jpeg");
}

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

.timeline-item {
  padding: 22px;
  border-radius: 24px;
  background: #181411;
  border: 1px solid rgba(244, 237, 229, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.timeline-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-weight: 800;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.timeline-item p {
  margin: 16px 0 0;
  transition: color 220ms ease;
}

.timeline-item:hover {
  transform: translateY(-6px);
  background: #211a16;
  border-color: rgba(197, 106, 70, 0.34);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.timeline-item:hover p {
  color: #fff7ef;
}

.timeline-item:hover span {
  transform: scale(1.12) rotate(-6deg);
  background: var(--terracotta);
  box-shadow: 0 10px 24px rgba(197, 106, 70, 0.28);
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.reservation-side {
  display: grid;
  gap: 16px;
}

.reservation-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(28, 20, 16, 0.96), rgba(18, 13, 10, 0.98));
  border: 1px solid rgba(255, 226, 201, 0.2);
  color: #fffaf6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.18);
}

.reservation-box span {
  color: #f0c8aa;
}

.reservation-box strong {
  color: #fffdf9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.reservation-box strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #191512, #251d18);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: block;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 237, 229, 0.08);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-link-primary {
  background: var(--terracotta);
  color: #fff;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-icon-whatsapp {
  color: #25d366;
}

.social-icon-instagram {
  color: #f6d365;
}

.social-icon-email {
  color: #ea4335;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 8, 7, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero-layout,
  .manifesto-grid,
  .experience-layout,
  .specialties,
  .gallery-grid,
  .reservation-section,
  .contact-banner {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-frame {
    width: min(100% - 16px, 1220px);
    margin: 8px auto 20px;
  }

  .hero,
  .manifesto,
  .experience-strip,
  .gallery-section,
  .services-board,
  .specialties,
  .process-section,
  .reservation-section,
  .contact-banner {
    border-radius: 24px;
    padding: 22px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 20px;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  .experience-points,
  .specialties-grid,
  .gallery-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .gallery-card-large {
    min-height: 320px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
