
    :root {
      --teal: #1597a0;
      --teal-dark: #0f6970;
      --teal-deep: #0c5056;

      --red: #e30613;
      --red-dark: #b9040e;

      --green: #25d366;

      --cream: #fff9f4;
      --soft: #f4f4f4;
      --white: #ffffff;

      --black: #121212;
      --text: #353535;
      --muted: #6a6a6a;

      --container: 1240px;

      --radius-lg: 34px;
      --radius-md: 22px;

      --shadow:
        0 20px 55px rgba(0,0,0,.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    /* =========================================================
       HEADER
    ========================================================== */

    .site-header {
      position: relative;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 8px 28px rgba(0,0,0,.08);
    }

    .nav {
      min-height: 100px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;

      gap: 14px;
    }

    .brand-logo {
      width: 112px;
      height: 92px;

      object-fit: contain;

      background: white;

      border-radius: 22px;

      padding: 5px;
    }

    .brand-wordmark {
      font-weight: 900;
      line-height: .86;

      font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    }

    .brand-wordmark span {
      display: block;
    }

    .brand-wordmark .doctor {
      color: var(--teal);
    }

    .brand-wordmark .pincho {
      color: var(--red);
    }

    .nav-links {
      list-style: none;

      display: flex;
      align-items: center;

      gap: clamp(18px, 2.5vw, 38px);

      margin: 0;
      padding: 0;
    }

    .nav-links a {
      color: var(--text);

      text-align: center;

      font-size: clamp(1rem, 1.3vw, 1.25rem);

      font-weight: 900;

      text-shadow: none;
    }

    .nav-links a:hover {
      color: var(--red);
    }

    .nav-cta {
      min-height: 58px;

      padding: 0 26px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 30px;

      background: var(--red);

      color: white !important;

      text-shadow: none !important;
    }

    .menu-toggle {
      display: none;

      width: 60px;
      height: 60px;

      border: 0;

      border-radius: 16px;

      background: var(--red);

      color: white;

      font-size: 1.85rem;

      cursor: pointer;
    }

    .hero-caption {
      position: absolute;
      left: clamp(20px, 6vw, 90px);
      bottom: clamp(26px, 5vw, 62px);
      z-index: 2;
      max-width: min(620px, calc(100% - 40px));
      color: white;
      text-shadow: 0 3px 18px rgba(0,0,0,.9);
      font-size: clamp(1.6rem, 3.2vw, 3.15rem);
      line-height: 1.08;
      font-weight: 900;
    }

    .hero-caption span {
      display: block;
      margin-top: 8px;
    }

    .hero-message {
      position: relative;
      z-index: 4;
      padding: clamp(48px, 6vw, 82px) 0 clamp(58px, 7vw, 96px);
      background: var(--white);
      text-align: center;
    }

    .hero-content {
      max-width: 1020px;
      margin-inline: auto;
    }

    .hero-small {
      display: inline-flex;
      align-items: center;

      gap: 10px;

      margin-bottom: 24px;

      padding: 12px 20px;

      border-radius: 26px;

      background: rgba(255,255,255,.94);

      color: var(--teal-dark);

      font-size: clamp(1.1rem, 1.7vw, 1.35rem);

      font-weight: 900;
    }

    .hero-message h1 {
      margin: 0;

      color: var(--teal-deep);

      font-size: clamp(4rem, 8vw, 7.6rem);

      line-height: .88;

      letter-spacing: -3px;

      font-weight: 900;
    }

    .hero-message h1 .red {
      color: var(--red);
    }

    .hero-tagline {
      margin: 25px 0 0;

      color: var(--black);

      font-size: clamp(1rem, 3vw, 2.6rem);

      line-height: 1.25;

      white-space: nowrap;

      font-weight: 800;

      font-style: italic;
    }
 .hero-tagline2 {
  margin: 0;
  color: #111;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
}
 .hero-tagline3 {
  margin: 0;
  color: #111;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
}

.hero-tagline-container {
  padding: clamp(28px, 5vw, 55px) 20px;
  text-align: center;
}

    .hero-text {
      max-width: 760px;

      margin: 22px auto 0;

      color:black;

      font-size: clamp(1.7rem, 2vw, 1.65rem);

      line-height: 1.55;
    }

    .hero-actions {
      margin-top: 38px;

      display: flex;
      flex-wrap: wrap;
      justify-content: center;

      gap: 16px;
    }

    .button {
      min-height: 72px;

      padding: 14px 30px;

      border: 0;

      border-radius: 40px;

      display: inline-flex;
      align-items: center;
      justify-content: center;

      gap: 13px;

      cursor: pointer;

      font-size: clamp(1.2rem, 2vw, 1.55rem);

      font-weight: 900;

      transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
    }

    .button:hover {
      transform: translateY(-3px);

      box-shadow:
        0 15px 36px rgba(0,0,0,.22);
    }

    .button-red {
      background: var(--red);
      color: white;
    }

    .button-red:hover {
      background: var(--red-dark);
    }

    .button-white {
      background: white;
      color: var(--teal-dark);
    }

    .hero-message .button-white {
      border: 2px solid var(--teal);
    }

    .button-green {
      background: var(--green);
      color: white;
    }

    /* =========================================================
       QUICK ACTIONS
    ========================================================== */

    .quick-section {
      position: relative;

      z-index: 5;

      margin-top: -20px;

      padding-bottom: 60px;
    }

    .quick-grid {
      display: grid;

      grid-template-columns:
        repeat(3, minmax(0, 1fr));

      gap: 20px;
    }

    .quick-card {
      min-height: 160px;

      padding: 24px;

      border-radius: 26px;

      background: white;

      box-shadow: var(--shadow);

      display: flex;
      align-items: center;

      gap: 22px;

      transition: .2s ease;
    }

    .quick-card:hover {
      transform: translateY(-5px);
    }

    .quick-icon {
      width: 88px;
      height: 88px;

      flex-shrink: 0;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 50%;

      background: var(--teal);

      color: white;

      font-size: 2.5rem;
    }

    .quick-card.whatsapp .quick-icon {
      background: var(--green);
    }

    .quick-card h3 {
      margin: 0 0 6px;

      color: var(--black);

      font-size: clamp(1.5rem, 2.4vw, 2rem);

      line-height: 1;
    }

    .quick-card p {
      margin: 0;

      color: var(--muted);

      font-size: clamp(1rem, 1.4vw, 1.18rem);

      line-height: 1.35;
    }

    /* =========================================================
       GENERIC SECTIONS
    ========================================================== */

    .section {
      padding:
        clamp(75px, 9vw, 125px)
        0;
    }

    .section-soft {
      background: var(--cream);
    }

    .section-dark {
      background: #101010;
      color: white;
    }

    .section-heading {
      max-width: 850px;

      margin:
        0
        auto
        clamp(45px, 6vw, 80px);

      text-align: center;
    }

    .eyebrow {
      display: none;

      margin-bottom: 12px;

      color: var(--red);

      font-size: clamp(1.05rem, 1.5vw, 1.3rem);

      letter-spacing: 1.5px;

      text-transform: uppercase;

      font-weight: 900;
    }

    .section-heading h2 {
      margin: 0;

      color: var(--black);

      font-size: clamp(3rem, 6.4vw, 5.3rem);

      line-height: .95;

      font-weight: 900;
    }

    .section-dark .section-heading h2 {
      color: white;
    }

    .section-heading p {
      max-width: 760px;

      margin:
        24px
        auto
        0;

      color: var(--muted);

      font-size: clamp(1.3rem, 2.2vw, 1.75rem);

      line-height: 1.55;
    }

    .section-dark .section-heading p {
      color: #cfcfcf;
    }

    /* =========================================================
       FOOD CARDS
    ========================================================== */

    .food-grid {
      display: grid;

      grid-template-columns:
        repeat(3, minmax(0, 1fr));

      gap: 25px;
    }

    .food-card {
      position: relative;

      min-height: 540px;

      overflow: hidden;

      border-radius: var(--radius-lg);

      box-shadow: var(--shadow);
    }

    .food-card img {
      position: absolute;
      inset: 0;

      width: 100%;
      height: 100%;

      object-fit: cover;

      transition: transform .45s ease;
    }

    .food-card:hover img {
      transform: scale(1.05);
    }

    .food-card::after {
      content: "";

      position: absolute;
      inset: 0;

      background:
        linear-gradient(
          to top,
          rgba(0,0,0,.92),
          rgba(0,0,0,.42) 45%,
          rgba(0,0,0,.02) 75%
        );
    }

    .food-card-content {
      position: absolute;

      z-index: 3;

      left: 0;
      right: 0;
      bottom: 0;

      padding: 32px;
    }

    .food-tag {
      display: inline-flex;

      min-height: 38px;

      padding: 0 16px;

      align-items: center;

      border-radius: 20px;

      background: var(--red);

      color: white;

      font-weight: 900;

      font-size: 1rem;
    }

    .food-card h3 {
      margin: 16px 0 8px;

      color: white;

      font-size: clamp(2.6rem, 4.8vw, 4.2rem);

      line-height: .95;
    }

    .food-card p {
      margin: 0 0 22px;

      color: white;

      font-size: clamp(1.15rem, 1.8vw, 1.45rem);

      line-height: 1.45;
    }

    .menu-category + .menu-category { margin-top: 60px; }

    .menu-category-title {
      margin: 0 0 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--black);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
    }

    .menu-category-title i {
      width: 58px;
      height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--teal);
      color: white;
      font-size: 1.5rem;
    }

    .menu-items {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .menu-items.drinks { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .menu-item {
      min-height: 205px;
      padding: 22px;
      display: grid;
      grid-template-columns: 145px minmax(0, 1fr);
      align-items: center;
      gap: 24px;
      border-radius: var(--radius-md);
      background: white;
      box-shadow: 0 12px 34px rgba(0,0,0,.08);
    }

    .menu-items.drinks .menu-item { grid-template-columns: 105px minmax(0, 1fr); }

    .menu-item-media {
      width: 100%;
      height: 155px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 18px;
      background: #f6fbfb;
    }

    .menu-items.drinks .menu-item-media { height: 208px; }

    .menu-item-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .menu-item-media i { color: var(--teal); font-size: 3.25rem; }

    .menu-item h3 {
      margin: 0 0 8px;
      color: var(--black);
      font-size: clamp(1.25rem, 2vw, 1.65rem);
    }

    .menu-price {
      margin: 0 0 8px;
      color: var(--red);
      font-size: 1.2rem;
      font-weight: 900;
    }

    .menu-description { margin: 0; color: var(--muted); line-height: 1.5; }

    /* =========================================================
       ABOUT
    ========================================================== */

    .about-grid {
      display: grid;

      grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .95fr);

      gap: clamp(40px, 7vw, 90px);

      align-items: center;
    }

    .about-photo {
      position: relative;
    }

    .about-photo img {
      width: 100%;

      min-height: 560px;

      object-fit: cover;

      border-radius: 38px;

      box-shadow: var(--shadow);
    }

    .about-mark {
      position: absolute;

      right: -25px;
      bottom: 35px;

      width: 210px;
      height: 210px;

      padding: 25px;

      border-radius: 50%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      background: var(--teal);

      color: white;

      text-align: center;

      overflow: hidden;

      box-shadow: var(--shadow);
    }

    .about-mark strong {
      display: block;

      font-size: 3rem;

      line-height: .95;
    }

    .about-mark span {
      margin-top: 8px;
      max-width: 128px;
      line-height: 1.15;
      font-size: .95rem;

      font-weight: 900;
    }

    .about-copy h2 {
      margin: 0 0 25px;

      color: var(--teal-dark);

      font-size: clamp(3rem, 6vw, 5rem);

      line-height: .95;
    }

    .about-copy p {
      margin: 0 0 20px;

      font-size: clamp(1.25rem, 2vw, 1.7rem);

      line-height: 1.65;
    }

    .about-list {
      margin-top: 30px;

      display: grid;

      gap: 14px;
    }

    .about-item {
      min-height: 78px;

      padding: 16px 18px;

      display: flex;
      align-items: center;

      gap: 16px;

      border-radius: 18px;

      background: #edf9fa;

      font-size: clamp(1.1rem, 1.7vw, 1.35rem);

      font-weight: 900;
    }

    .about-item i {
      width: 50px;
      height: 50px;

      flex-shrink: 0;

      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: var(--teal);

      color: white;

      font-size: 1.35rem;
    }

    /* =========================================================
       GALLERY
    ========================================================== */

    .gallery-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      background: #111;
      box-shadow: var(--shadow);
    }

   .gallery-track {
  display: flex;
  width: 100%;
  transition: transform .5s ease;
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: clamp(390px, 58vw, 680px);
  margin: 0;
  overflow: hidden;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-control {
      position: absolute;
      top: 50%;
      z-index: 3;
      width: 54px;
      height: 54px;
      border: 0;
      border-radius: 50%;
      display: grid;
      place-items: center;
      transform: translateY(-50%);
      background: rgba(255,255,255,.92);
      color: var(--black);
      font-size: 1.45rem;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(0,0,0,.22);
    }

    .gallery-control.prev { left: 18px; }
    .gallery-control.next { right: 18px; }

    .gallery-dots {
      position: absolute;
      left: 50%;
      bottom: 18px;
      z-index: 3;
      display: flex;
      gap: 9px;
      transform: translateX(-50%);
    }

    .gallery-dot {
      width: 12px;
      height: 12px;
      padding: 0;
      border: 2px solid white;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
    }

    .gallery-dot.active { background: white; }

    /* =========================================================
       LOCATION
    ========================================================== */

    .location-shell {
      overflow: hidden;

      border-radius: 36px;

      display: grid;

      grid-template-columns:
        .8fr
        1.2fr;

      box-shadow: var(--shadow);
    }

    .location-info {
      padding:
        clamp(35px, 5vw, 60px);

      background: var(--teal-deep);

      color: white;
    }

    .location-info i.main {
      font-size: 3.5rem;

      margin-bottom: 30px;
    }

    .location-info h2 {
      margin: 0 0 20px;

      font-size: clamp(3rem, 5.4vw, 4.6rem);

      line-height: .95;
    }

    .location-info address {
      margin: 0 0 32px;

      font-style: normal;

      font-size: clamp(1.35rem, 2.2vw, 1.8rem);

      line-height: 1.55;
    }

    .location-info .phone-line {
      margin-bottom: 30px;

      font-size: clamp(1.25rem, 2vw, 1.6rem);

      font-weight: 800;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      min-height: 560px;

      border: 0;
    }

    /* =========================================================
       APP
    ========================================================== */

    .app-wrap {
      display: grid;

      grid-template-columns:
        1fr
        .75fr;

      gap: 60px;

      align-items: center;
    }

    .app-copy h2 {
      margin: 0;

      color: white;

      font-size: clamp(3.2rem, 6vw, 5.4rem);

      line-height: .95;
    }

    .app-copy p {
      margin: 25px 0;

      color: #dcdcdc;

      font-size: clamp(1.35rem, 2.2vw, 1.8rem);

      line-height: 1.55;
    }

    .app-list {
      margin: 30px 0;

      padding: 0;

      list-style: none;

      display: grid;

      gap: 16px;
    }

    .app-list li {
      display: flex;
      align-items: center;

      gap: 14px;

      font-size: clamp(1.15rem, 1.8vw, 1.45rem);

      font-weight: 800;
    }

    .app-list i {
      color: var(--teal);
    }

    .app-store-links {
      margin-top: 32px;

      display: flex;
      flex-wrap: wrap;
      align-items: center;

      gap: 16px;
    }

    .app-store-link {
      display: inline-flex;

      border-radius: 12px;

      transition:
        transform .2s ease,
        filter .2s ease;
    }

    .app-store-link:hover {
      transform: translateY(-3px);
      filter: brightness(1.08);
    }

    .app-store-link:focus-visible {
      outline: 3px solid var(--teal);
      outline-offset: 5px;
    }

    .app-store-link img {
      width: auto;
      height: 58px;

      object-fit: contain;
    }

    .download-dialog {
      width: min(calc(100% - 32px), 620px);
      padding: 0;
      border: 0;
      border-radius: 28px;
      background: white;
      color: var(--text);
      box-shadow: 0 28px 80px rgba(0,0,0,.35);
    }

    .download-dialog::backdrop { background: rgba(0,0,0,.72); }

    .download-dialog-content {
      position: relative;
      padding: 48px 34px 38px;
      text-align: center;
    }

    .download-dialog-content h2 {
      margin: 0 0 12px;
      color: var(--teal-dark);
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .download-dialog-content p { margin: 0 0 28px; line-height: 1.55; }

    .dialog-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: #eee;
      color: var(--black);
      cursor: pointer;
      font-size: 1.25rem;
    }

    .download-dialog .app-store-links { justify-content: center; }

    .video-dialog {
      width: min(calc(100% - 32px), 1040px);
      max-height: calc(100% - 32px);
      padding: 0;
      border: 0;
      border-radius: 28px;
      background: var(--cream);
      color: var(--text);
      box-shadow: 0 28px 80px rgba(0,0,0,.38);
    }

    .video-dialog::backdrop { background: rgba(0,0,0,.78); }

    .video-dialog-content {
      position: relative;
      padding: 54px 32px 34px;
    }

    .video-dialog-heading {
      max-width: 720px;
      margin: 0 auto 30px;
      text-align: center;
    }

    .video-dialog-heading h2 {
      margin: 0 0 10px;
      color: var(--teal-dark);
      font-size: clamp(2.4rem, 6vw, 4rem);
    }

    .video-dialog-heading p { margin: 0; color: var(--muted); line-height: 1.55; }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .video-card {
      overflow: hidden;
      border-radius: 22px;
      background: white;
      box-shadow: 0 12px 34px rgba(0,0,0,.1);
    }

    .video-card video {
      width: 100%;
      aspect-ratio: 9 / 16;
      max-height: 520px;
      background: #111;
      object-fit: contain;
    }

    .video-card-copy { padding: 18px 20px 22px; }
    .video-card-copy h3 { margin: 0 0 7px; color: var(--black); font-size: 1.4rem; }
    .video-card-copy p { margin: 0 0 14px; color: var(--muted); line-height: 1.5; }
    .video-fallback { color: var(--teal-dark); font-weight: 900; text-decoration: underline; }

    .video-back { margin: 30px auto 0; display: flex; width: fit-content; }

    @media (max-width: 720px) {
      .video-dialog-content { padding: 54px 16px 26px; }
      .video-grid { grid-template-columns: 1fr; }
      .video-card video { max-height: 68vh; }
    }

    .accordion-list {
      max-width: 960px;
      margin-inline: auto;
      display: grid;
      gap: 16px;
    }

    .accordion-item {
      overflow: hidden;
      border: 1px solid #e5e5e5;
      border-radius: 18px;
      background: white;
      box-shadow: 0 8px 26px rgba(0,0,0,.06);
    }

    .accordion-item summary {
      position: relative;
      padding: 24px 70px 24px 24px;
      color: var(--black);
      cursor: pointer;
      list-style: none;
      font-size: clamp(1.15rem, 2vw, 1.4rem);
      font-weight: 900;
      line-height: 1.35;
    }

    .accordion-item summary::-webkit-details-marker { display: none; }
    .accordion-item summary::after {
      content: "+";
      position: absolute;
      top: 50%;
      right: 24px;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--teal);
      color: white;
      transform: translateY(-50%);
      font-size: 1.5rem;
    }

    .accordion-item[open] summary::after { content: "−"; }
    .accordion-item[open] summary { color: var(--teal-dark); }

    .accordion-content {
      padding: 0 24px 24px;
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .accordion-content p { margin: 0 0 14px; }
    .accordion-content ul,
    .accordion-content ol { margin: 12px 0; padding-left: 24px; }
    .accordion-content li + li { margin-top: 8px; }

    .privacy-intro {
      max-width: 960px;
      margin: 0 auto 26px;
      padding: 28px;
      border-radius: var(--radius-md);
      background: #edf9fa;
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .privacy-intro a,
    .accordion-content a { color: var(--teal-dark); font-weight: 900; text-decoration: underline; }

    .legal-dialog {
      width: 100%;
      max-width: none;
      height: 100%;
      max-height: none;
      margin: 0;
      padding: 0;
      border: 0;
      background: var(--white);
      color: var(--text);
    }

    .legal-dialog::backdrop { background: rgba(0,0,0,.72); }

    .legal-dialog .section {
      min-height: 100%;
      padding-top: 100px;
    }

    .legal-close {
      position: fixed;
      z-index: 5;
      top: 20px;
      right: 20px;
      width: 52px;
      height: 52px;
      border: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--red);
      color: white;
      box-shadow: 0 10px 30px rgba(0,0,0,.2);
      cursor: pointer;
      font-size: 1.4rem;
    }

    .legal-back {
      margin: 38px auto 0;
      display: flex;
      width: fit-content;
    }

    .phone-frame {
      width: min(100%, 390px);

      margin-inline: auto;

      padding: 14px;

      border-radius: 50px;

      background: #222;

      box-shadow:
        0 35px 80px rgba(0,0,0,.35);
    }

    .phone-frame img {
      width: 100%;

      border-radius: 40px;
    }

    /* =========================================================
       FINAL CTA
    ========================================================== */

    .final-cta {
      padding:
        clamp(75px, 9vw, 115px)
        0;

      background:
        linear-gradient(
          135deg,
          var(--red),
          #ff3c43
        );

      color: white;

      text-align: center;
    }

    .final-cta h2 {
      max-width: 900px;

      margin: 0 auto;

      font-size: clamp(3.3rem, 6.5vw, 5.8rem);

      line-height: .92;
    }

    .final-cta p {
      margin: 25px auto 0;

      font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    }

    .final-cta .hero-actions {
      justify-content: center;
    }

    /* =========================================================
       FOOTER
    ========================================================== */

    footer {
      padding:
        65px
        0
        35px;

      background: #0a0a0a;

      color: white;
    }

    .footer-grid {
      display: grid;

      grid-template-columns:
        1.4fr
        1fr
        1fr;

      gap: 50px;
    }

    .footer-brand {
      font-size: clamp(2rem, 3vw, 2.8rem);

      line-height: .88;

      font-weight: 900;
    }

    .footer-brand .doctor {
      color: var(--teal);
    }

    .footer-brand .pincho {
      color: var(--red);
    }

    footer p,
    footer a {
      color: #cfcfcf;

      font-size: 1.1rem;

      line-height: 1.7;
    }

    footer h3 {
      margin: 0 0 18px;

      font-size: 1.45rem;
    }

    .footer-links {
      display: flex;
      flex-direction: column;

      gap: 8px;
    }

    .footer-socials {
      margin-top: 22px;

      display: flex;

      gap: 12px;
    }

    .footer-socials a {
      width: 54px;
      height: 54px;

      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: #222;

      color: white;

      font-size: 1.45rem;
    }

    .copyright {
      margin-top: 50px;

      padding-top: 28px;

      border-top: 1px solid #303030;

      display: flex;
      justify-content: space-between;

      gap: 20px;

      color: #999;

      font-size: 1rem;
    }

    /* =========================================================
       FLOATING WHATSAPP
    ========================================================== */

    .floating-whatsapp {
      position: fixed;

      z-index: 999;

      right: 22px;
      bottom: 22px;

      width: 76px;
      height: 76px;

      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: var(--green);

      color: white;

      font-size: 2.6rem;

      box-shadow:
        0 14px 38px rgba(0,0,0,.25);
    }

    /* =========================================================
       TABLET
    ========================================================== */

    @media (max-width: 1050px) {

      .nav-links {
        gap: 18px;
      }

      .quick-grid {
        grid-template-columns: 1fr;
      }

      .quick-card {
        min-height: 130px;
      }

      .food-grid {
        grid-template-columns: 1fr 1fr;
      }

      .menu-items.drinks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .food-card:last-child {
        grid-column: 1 / -1;
      }

      .about-grid,
      .location-shell,
      .app-wrap {
        grid-template-columns: 1fr;
      }

      .about-photo {
        max-width: 780px;
        margin-inline: auto;
      }

      .gallery-grid {
        grid-template-columns:
          1fr
          1fr;

        grid-template-rows:
          360px
          280px
          280px;
      }

      .gallery-item:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
      }

      .map iframe {
        min-height: 480px;
      }

      .app-copy {
        text-align: center;
      }

      .app-list {
        max-width: 620px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
      }

      .app-store-links {
        justify-content: center;
      }
    }

    /* =========================================================
       MOBILE NAV
    ========================================================== */

    @media (max-width: 850px) {

      .nav {
        min-height: 88px;
      }

      .brand-logo {
        width: 66px;
        height: 66px;
      }

      .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .nav-links {
        position: fixed;

        top: 88px;
        left: 0;
        right: 0;

        max-height: 0;

        overflow: hidden;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 0 20px;

        background: white;

        transition:
          max-height .3s ease,
          padding .3s ease;

        box-shadow:
          0 20px 40px rgba(0,0,0,.16);
      }

      .nav-links.open {
        max-height: calc(100vh - 88px);
        max-height: calc(100dvh - 88px);

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;

        padding-top: 16px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        min-height: 62px;

        display: flex;
        align-items: center;

        color: var(--text);

        border-bottom: 1px solid #eee;

        text-shadow: none;

        font-size: 1.25rem;
      }

      .nav-cta {
        margin-top: 10px;

        justify-content: center;

        border-bottom: 0 !important;
      }

      .hero-message h1 {
        font-size: clamp(3.6rem, 10vw, 6rem);
      }
    }

    /* =========================================================
       MOBILE
    ========================================================== */

    @media (max-width: 640px) {

      .container {
        width: min(calc(100% - 26px), var(--container));
      }

      .brand-wordmark {
        font-size: 1.35rem;
      }

      .hero {
        min-height: clamp(420px, 58vh, 620px);
        background-position: center 54%;
      }

      .hero-message {
        padding: 42px 0 62px;
      }

      .hero-message h1 {
        font-size: clamp(3.35rem, 14vw, 5rem);

        letter-spacing: -2px;
      }

      .hero-tagline {
        font-size: clamp(.78rem, 4vw, 1.7rem);
      }

      .hero-text {
        font-size: 1.3rem;
      }

      .hero-actions {
        width: 100%;

        flex-direction: column;
      }

      .hero-actions .button {
        width: 100%;

        min-height: 74px;
      }

      .quick-section {
        margin-top: 0;

        padding-top: 18px;
      }

      .quick-card {
        min-height: 120px;

        padding: 18px;
      }

      .quick-icon {
        width: 76px;
        height: 76px;

        font-size: 2.2rem;
      }

      .section {
        padding:
          72px
          0;
      }

      .section-heading h2 {
        font-size: clamp(3.1rem, 13vw, 4.5rem);
      }

      .section-heading p {
        font-size: 1.3rem;
      }

      .food-grid {
        grid-template-columns: 1fr;
      }

      .menu-items,
      .menu-items.drinks {
        grid-template-columns: 1fr;
      }

      .menu-item,
      .menu-items.drinks .menu-item {
        min-height: 0;
        padding: 15px;
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 15px;
      }

      .menu-item-media,
      .menu-items.drinks .menu-item-media {
        height: 160px;
      }

      .food-card,
      .food-card:last-child {
        grid-column: auto;

        min-height: 490px;
      }

      .food-card h3 {
        font-size: clamp(3rem, 13vw, 4rem);
      }

      .about-photo img {
        min-height: 390px;
      }

      .about-mark {
        width: 140px;
        height: 140px;

        padding: 12px;

        right: 14px;
        bottom: 14px;
      }

      .about-mark strong {
        font-size: 2.3rem;
      }

      .about-mark span {
        width: 100%;
        max-width: none;
        margin-top: 5px;
        color: white;
        font-size: .68rem;
        line-height: 1.12;
        letter-spacing: -.15px;
        white-space: normal;
      }

      .about-copy h2 {
        font-size: clamp(3rem, 13vw, 4.4rem);
      }

      .about-copy p {
        font-size: 1.3rem;
      }

      .gallery-grid {
        grid-template-columns: 1fr;

        grid-template-rows: none;
      }

      .gallery-item,
      .gallery-item:first-child {
        grid-column: auto;
        grid-row: auto;

        min-height: 320px;
      }

      .location-info h2 {
        font-size: clamp(3rem, 13vw, 4.3rem);
      }

      .location-info address {
        font-size: 1.4rem;
      }

      .map iframe {
        min-height: 420px;
      }

      .app-copy h2 {
        font-size: clamp(3.1rem, 13vw, 4.5rem);
      }

      .app-copy p {
        font-size: 1.35rem;
      }

      .app-store-links {
        flex-direction: column;
      }

      .app-store-link img {
        height: 56px;
      }

      .phone-frame {
        width: min(84%, 350px);
      }

      .final-cta h2 {
        font-size: clamp(3.2rem, 13vw, 4.5rem);
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        flex-direction: column;

        text-align: center;
      }

      .floating-whatsapp {
        width: 68px;
        height: 68px;

        right: 16px;
        bottom: 16px;

        font-size: 2.25rem;
      }
    }

    @media (max-width: 380px) {

      .brand-logo {
        width: 58px;
        height: 58px;
      }

      .brand-wordmark {
        font-size: 1.2rem;
      }

      .hero-message h1 {
        font-size: 3.7rem;
      }

      .hero-tagline {
        font-size: clamp(.78rem, 4vw, 1.7rem);
      }

      .button {
        min-height: 70px;

        font-size: 1.2rem;
      }

      .section-heading h2,
      .about-copy h2,
      .location-info h2,
      .app-copy h2 {
        font-size: 2.9rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        transition: none !important;
        animation: none !important;
      }
    }

    /* =========================================================
       CONVERSION REFINEMENT
    ========================================================== */

    .hero-actions .button-red {
      min-height: 78px;
      padding-inline: 34px;
      box-shadow: 0 16px 38px rgba(227,6,19,.38);
    }

    .menu-item,
    .menu-items.drinks .menu-item {
      min-height: 0;
      padding: 0 0 0;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      overflow: hidden;
    }

    .menu-item-media,
    .menu-items.drinks .menu-item-media {
      height: 384px;
      border-radius: 0;
      background: #f2f8f8;
    }

    .menu-items.drinks .menu-item-media { height: 304px; }

    .menu-item-media img {
      padding: 12px;
      transition: transform .3s ease;
    }

    .menu-item:hover .menu-item-media img { transform: scale(1.05); }

    .menu-item > div:last-child {
      width: 100%;
      padding: 22px 22px 0;
    }

    .menu-price {
      width: fit-content;
      margin: 0 0 10px;
      padding: 7px 13px;
      border-radius: 18px;
      background: var(--red);
      color: white;
      font-size: 1.18rem;
    }

    .app-availability {
      margin: 14px 0 0 !important;
      color: #bfcaca !important;
      font-size: 1rem !important;
    }

    .mobile-action-bar { display: none; }

    @media (min-width: 851px) {
      .nav-links { gap: clamp(12px, 1.4vw, 24px); }
      .nav-links a { font-size: clamp(.95rem, 1.05vw, 1.12rem); }
      .nav-cta { padding-inline: 20px; }
    }

    @media (max-width: 640px) {
      body { padding-bottom: 74px; }

      .mobile-action-bar {
        position: fixed;
        z-index: 1200;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 70px;
        padding: 8px max(8px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-right));
        display: grid;
        grid-template-columns: 1.35fr 1fr 1fr;
        gap: 7px;
        background: rgba(255,255,255,.97);
        border-top: 1px solid #ddd;
        box-shadow: 0 -8px 25px rgba(0,0,0,.14);
      }

      .mobile-action {
        min-height: 52px;
        padding: 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 13px;
        background: #f1f1f1;
        color: var(--black);
        font-size: .72rem;
        font-weight: 900;
        text-align: center;
      }

      .mobile-action i { font-size: 1.15rem; }
      .mobile-action.primary { background: var(--red); color: white; }
      .mobile-action.whatsapp { background: var(--green); color: white; }
      .floating-whatsapp { display: none; }

      .menu-item-media,
      .menu-items.drinks .menu-item-media { height: 420px; }
    }

    /* Ajustes finales solicitados por Doctor Pincho */
    .quick-section,
    #destacados { display: none; }

    p,
    address,
    .menu-description,
    .copyright,
    footer a { font-weight: 700; }

    @media (max-width: 640px) {
      .mobile-action-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .mobile-action { min-width: 0; }
      .floating-whatsapp {
        display: flex;
        width: 62px;
        height: 62px;
        right: 16px;
        bottom: calc(86px + env(safe-area-inset-bottom));
        font-size: 2.1rem;
      }

      /* El menú debe ocupar toda el área táctil sin botones superpuestos. */
      body.menu-open .mobile-action-bar,
      body.menu-open .floating-whatsapp {
        display: none !important;
      }

      .hero-caption {
        left: 18px;
        right: 18px;
        bottom: 26px;
        max-width: none;
        font-size: clamp(1.35rem, 6.2vw, 2rem);
      }
      .gallery-slide { height: 360px; }
      .gallery-control {
        width: 46px;
        height: 46px;
      }
    }
    /* Ajuste del título y espacio superior de la galería */
#galeria.section {
  padding-top: 30px;
}

#galeria .hero-tagline-container {
  padding: 0 16px 25px;
  margin: 0;
  text-align: center;
}

#galeria .hero-tagline2 {
  margin: 0;
  color: #111;
  white-space: nowrap;
  text-align: center;
font-size: clamp(67px, 55vw, 22px);
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 640px) {
  #galeria.section {
    padding-top: 24px;
  }

  #galeria .hero-tagline-container {
    padding-bottom: 22px;
  }

  #galeria .hero-tagline2 {
    font-size:  clamp(17px, 55vw, 22px);
  }
}