:root {
  --wood: #5e432a;
  --wood-dark: #1f130f;
  --clay: #9a5c34;
  --red: #6c2219;
  --gold: #e8b56c;
  --leaf: #566a3a;
  --grape: #4c2430;
  --cream: #f8ddaa;
  --paper: #fff7ea;
  --ink: #241711;
  --muted: #735f50;
  --line: rgba(94, 67, 42, 0.18);
  --shadow: 0 22px 64px rgba(31, 19, 15, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--wood-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.055;
  background:
    radial-gradient(circle at 20% 10%, rgba(232, 181, 108, 0.22), transparent 25%),
    radial-gradient(circle at 90% 55%, rgba(108, 34, 25, 0.28), transparent 28%),
    linear-gradient(90deg, transparent 0 22px, rgba(232, 181, 108, 0.18) 23px 24px, transparent 25px 54px),
    linear-gradient(var(--wood), var(--wood-dark));
  pointer-events: none;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.9rem);
  line-height: 1;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(180deg, rgba(32, 17, 13, 0.94), rgba(32, 17, 13, 0.42));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(32, 17, 13, 0.97);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.brand,
.nav,
.header-phone,
.button,
.float-whatsapp,
.address-card a {
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand img,
.hero-logo,
.footer img {
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.brand strong,
.brand small,
.header-phone span,
.header-phone strong {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.brand small,
.header-phone span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.nav a:hover {
  color: #fff;
}

.header-phone {
  position: relative;
  display: grid;
  grid-template-columns: 20px auto;
  column-gap: 8px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(232, 181, 108, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(232, 181, 108, 0.18), rgba(22, 143, 75, 0.2));
  animation: phonePulse 2.4s ease-in-out infinite;
  overflow: visible;
}

.header-phone strong {
  color: var(--gold);
}

.header-phone::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.22), transparent 65%);
  transform: translateX(-70%);
  animation: phoneShine 3.6s ease-in-out infinite;
}

.phone-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.header-phone span,
.header-phone strong {
  position: relative;
  z-index: 1;
}

@keyframes phonePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 181, 108, 0.32), 0 0 18px rgba(22, 143, 75, 0.1);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(232, 181, 108, 0), 0 0 26px rgba(22, 143, 75, 0.22);
    transform: translateY(-1px);
  }
}

@keyframes phoneShine {
  0%,
  55% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(70%);
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 132px clamp(20px, 5vw, 76px) 76px;
  overflow: hidden;
  color: #fff;
}

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

.hero-picture {
  display: block;
}

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

.hero-overlay {
  background:
    radial-gradient(circle at 77% 45%, rgba(242, 184, 93, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(32, 17, 13, 0.96) 0%, rgba(74, 38, 24, 0.72) 48%, rgba(32, 17, 13, 0.12) 100%),
    linear-gradient(0deg, rgba(32, 17, 13, 0.78), rgba(32, 17, 13, 0.1));
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.hero-logo {
  width: 148px;
  height: 148px;
  margin-bottom: 22px;
  background: var(--cream);
  border: 3px solid rgba(232, 181, 108, 0.84);
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
}

.button::after,
.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.32), transparent 62%);
  transform: translateX(-80%);
  animation: ctaSweep 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaSweep {
  0%,
  45% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(80%);
  }
}

.button.primary {
  color: var(--wood-dark);
  background: var(--gold);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button.light {
  color: var(--wood-dark);
  background: #fff;
}

.service-card {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: end;
  width: min(100%, 360px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(32, 17, 13, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.service-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
}

.service-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background:
    linear-gradient(180deg, rgba(31, 19, 15, 0.96), rgba(54, 32, 22, 0.98)),
    var(--wood-dark);
  color: #fff;
}

.info-strip a,
.info-strip div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  min-height: 96px;
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.info-strip svg,
.card-icon {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.info-strip svg {
  grid-row: span 2;
  filter: drop-shadow(0 0 12px rgba(232, 181, 108, 0.26));
}

.info-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 800;
}

.info-strip strong {
  color: var(--gold);
  font-size: 1rem;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
  color: #fff;
}

.welcome,
.menu-section,
.local-section,
.address-section,
.faq-section {
  width: min(1120px, calc(100% - 40px));
  border-radius: 8px;
}

.welcome {
  margin-top: 42px;
  padding: 48px;
  border: 1px solid rgba(232, 181, 108, 0.22);
  background:
    linear-gradient(135deg, rgba(31, 19, 15, 0.92), rgba(94, 67, 42, 0.82)),
    var(--wood);
  box-shadow: var(--shadow);
}

.welcome,
.address-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.welcome > p,
.address-section p,
.wood-band p {
  color: rgba(255, 247, 234, 0.74);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.menu-grid,
.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.menu-card,
.local-grid article,
.faq-list details,
.address-card {
  border: 1px solid rgba(232, 181, 108, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.08), rgba(255, 247, 234, 0.035)),
    rgba(31, 19, 15, 0.86);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.menu-card,
.local-grid article,
.address-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.menu-card::before,
.local-grid article::before,
.address-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(232, 181, 108, 0.28);
  background: radial-gradient(circle at 18px 18px, rgba(232, 181, 108, 0.16), transparent 34%);
  pointer-events: none;
}

.menu-card > *,
.local-grid article > *,
.address-card > * {
  position: relative;
  z-index: 1;
}

.menu-card span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--leaf);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(232, 181, 108, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(108, 34, 25, 0.98), rgba(76, 36, 48, 0.96)),
    var(--red);
}

.menu-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.menu-card.featured span {
  color: var(--wood-dark);
  background: var(--gold);
}

.menu-card p,
.local-grid p,
.faq-list p {
  margin: 0;
  color: rgba(255, 247, 234, 0.7);
}

.card-icon {
  display: block;
  margin-bottom: 18px;
}

.wood-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 62px clamp(20px, 5vw, 76px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(32, 17, 13, 0.92), rgba(122, 31, 29, 0.84)),
    repeating-linear-gradient(90deg, #3a2118 0 34px, #4a2618 34px 68px);
}

.wood-band .kicker,
.wood-band p {
  color: rgba(255, 255, 255, 0.78);
}

.address-card {
  display: grid;
  gap: 8px;
  border-top: 5px solid var(--gold);
}

.address-card strong {
  font-size: 1.22rem;
}

.address-card span {
  color: rgba(255, 247, 234, 0.72);
}

.address-card a {
  display: inline-flex;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--wood);
  font-weight: 900;
}

.faq-section {
  padding-top: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  color: #fff;
}

.faq-list p {
  padding: 0 22px 22px;
}

.float-whatsapp {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #18a957, #0c7f42);
  box-shadow: 0 16px 42px rgba(22, 143, 75, 0.34);
  font-weight: 900;
  overflow: hidden;
  animation: floatLift 2.2s ease-in-out infinite;
}

.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(34, 184, 100, 0.36);
  border-radius: 50%;
  animation: whatsappRing 1.8s ease-out infinite;
}

@keyframes floatLift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

.float-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.float-whatsapp svg {
  position: relative;
  z-index: 1;
  width: 35px;
  height: 35px;
  fill: currentColor;
}

@keyframes whatsappRing {
  0% {
    opacity: 0.9;
    transform: scale(0.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 76px);
  color: #fff;
  background: var(--wood-dark);
}

.footer div {
  display: grid;
  gap: 2px;
  margin-right: auto;
}

.footer span {
  color: rgba(255, 255, 255, 0.66);
}

.footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    padding: 9px 12px;
    background: rgba(31, 19, 15, 0.96);
  }

  .nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .header-phone {
    padding: 8px 10px;
  }

  .header-phone strong {
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 106px 16px 32px;
  }

  .hero-logo {
    width: 104px;
    height: 104px;
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.1rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .service-card {
    display: none;
  }

  .info-strip,
  .welcome,
  .address-section,
  .menu-grid,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .info-strip a,
  .info-strip div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 48px 0;
  }

  .welcome,
  .menu-section,
  .local-section,
  .address-section,
  .faq-section {
    width: min(100% - 24px, 1120px);
  }

  .welcome {
    margin-top: 24px;
    padding: 28px 20px;
  }

  .wood-band {
    display: grid;
    padding: 46px 20px;
  }

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

@media (max-width: 540px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    gap: 10px;
    padding: 8px 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.96rem;
    line-height: 1;
  }

  .brand small,
  .header-phone span {
    display: none;
  }

  .header-phone {
    grid-template-columns: 18px auto;
    border-radius: 999px;
    border-color: rgba(232, 181, 108, 0.85);
    background: linear-gradient(135deg, #e8b56c, #f6d48b);
    box-shadow: 0 0 0 3px rgba(232, 181, 108, 0.16), 0 0 24px rgba(232, 181, 108, 0.34);
    animation: mobilePhonePop 1.35s ease-in-out infinite;
  }

  .phone-icon {
    width: 18px;
    height: 18px;
    fill: var(--wood-dark);
  }

  .header-phone strong {
    color: var(--wood-dark);
  }

  .header-phone::before {
    content: "Pedir";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    padding: 2px 7px;
    border-radius: 999px;
    color: #fff;
    background: #168f4b;
    font-size: 0.62rem;
    line-height: 1.2;
    font-weight: 900;
    box-shadow: 0 0 14px rgba(22, 143, 75, 0.44);
    animation: pedirBadge 1.35s ease-in-out infinite;
  }

  @keyframes mobilePhonePop {
    0%,
    100% {
      transform: translateY(0) scale(1);
      box-shadow: 0 0 0 3px rgba(232, 181, 108, 0.16), 0 0 24px rgba(232, 181, 108, 0.34);
    }
    50% {
      transform: translateY(-2px) scale(1.06);
      box-shadow: 0 0 0 7px rgba(232, 181, 108, 0.08), 0 0 34px rgba(232, 181, 108, 0.58);
    }
  }

  @keyframes pedirBadge {
    0%,
    100% {
      opacity: 0.82;
      transform: translateX(-50%) translateY(0);
    }
    50% {
      opacity: 1;
      transform: translateX(-50%) translateY(-2px);
    }
  }

  .button.primary {
    animation: mobileCtaPop 1.7s ease-in-out infinite;
    box-shadow: 0 0 0 4px rgba(232, 181, 108, 0.14), 0 14px 34px rgba(232, 181, 108, 0.22);
  }

  @keyframes mobileCtaPop {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.025);
    }
  }

  .menu-card,
  .local-grid article,
  .address-card,
  .faq-list details {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(232, 181, 108, 0.16);
  }

  .card-icon {
    width: 34px;
    height: 34px;
    padding: 7px;
    border-radius: 10px;
    background: rgba(232, 181, 108, 0.12);
    box-shadow: 0 0 18px rgba(232, 181, 108, 0.18);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .info-strip a,
  .info-strip div {
    min-height: 68px;
    padding: 16px;
  }

  .menu-card,
  .local-grid article,
  .address-card {
    padding: 20px;
  }

  .float-whatsapp {
    left: auto;
    right: 18px;
    bottom: 12px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #168f4b, #22b864);
    box-shadow: 0 0 0 4px rgba(22, 143, 75, 0.16), 0 18px 42px rgba(22, 143, 75, 0.42);
    animation: mobileWhatsappBounce 1.8s ease-in-out infinite;
  }

  @keyframes mobileWhatsappBounce {
    0%,
    100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-6px) scale(1.015);
    }
  }

  .footer {
    padding-bottom: 104px;
  }
}
